ShellWindow: corrected some texts.

Sat, 14 Nov 2020 11:50:43 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 14 Nov 2020 11:50:43 +0100
changeset 7829
5a99dd3ebe5f
parent 7828
4588940a2c19
child 7830
72499e626226

ShellWindow: corrected some texts.

eric6/QScintilla/ShellWindow.py file | annotate | diff | comparison | revisions
eric6/i18n/eric6_cs.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_de.qm file | annotate | diff | comparison | revisions
eric6/i18n/eric6_de.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_empty.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_en.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_es.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_fr.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_it.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_pt.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_ru.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_tr.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_zh_CN.ts file | annotate | diff | comparison | revisions
--- a/eric6/QScintilla/ShellWindow.py	Wed Nov 11 17:51:36 2020 +0100
+++ b/eric6/QScintilla/ShellWindow.py	Sat Nov 14 11:50:43 2020 +0100
@@ -241,7 +241,8 @@
             'Restart the shell'))
         self.restartAct.setWhatsThis(self.tr(
             """<b>Restart</b>"""
-            """<p>Restart the shell for the currently selected language.</p>"""
+            """<p>Restart the shell for the currently selected"""
+            """ environment.</p>"""
         ))
         self.restartAct.triggered.connect(self.__shell.doRestart)
         self.fileActions.append(self.restartAct)
@@ -256,7 +257,7 @@
         self.clearRestartAct.setWhatsThis(self.tr(
             """<b>Restart and Clear</b>"""
             """<p>Clear the shell window and restart the shell for the"""
-            """ currently selected language.</p>"""
+            """ currently selected environment.</p>"""
         ))
         self.clearRestartAct.triggered.connect(self.__shell.doClearRestart)
         self.fileActions.append(self.clearRestartAct)
@@ -280,11 +281,9 @@
             self.copyActGrp, 'vm_edit_cut')
         self.cutAct.setStatusTip(QCoreApplication.translate(
             'ViewManager', 'Cut the selection'))
-        self.cutAct.setWhatsThis(QCoreApplication.translate(
-            'ViewManager',
+        self.cutAct.setWhatsThis(self.tr(
             """<b>Cut</b>"""
-            """<p>Cut the selected text of the current editor to the"""
-            """ clipboard.</p>"""
+            """<p>Cut the selected text to the clipboard.</p>"""
         ))
         self.cutAct.triggered.connect(self.__shell.cut)
         self.editActions.append(self.cutAct)
@@ -300,11 +299,9 @@
             self.copyActGrp, 'vm_edit_copy')
         self.copyAct.setStatusTip(QCoreApplication.translate(
             'ViewManager', 'Copy the selection'))
-        self.copyAct.setWhatsThis(QCoreApplication.translate(
-            'ViewManager',
+        self.copyAct.setWhatsThis(self.tr(
             """<b>Copy</b>"""
-            """<p>Copy the selected text of the current editor to the"""
-            """ clipboard.</p>"""
+            """<p>Copy the selected text to the clipboard.</p>"""
         ))
         self.copyAct.triggered.connect(self.__shell.copy)
         self.editActions.append(self.copyAct)
@@ -320,11 +317,9 @@
             self.copyActGrp, 'vm_edit_paste')
         self.pasteAct.setStatusTip(QCoreApplication.translate(
             'ViewManager', 'Paste the last cut/copied text'))
-        self.pasteAct.setWhatsThis(QCoreApplication.translate(
-            'ViewManager',
+        self.pasteAct.setWhatsThis(self.tr(
             """<b>Paste</b>"""
-            """<p>Paste the last cut/copied text from the clipboard to"""
-            """ the current editor.</p>"""
+            """<p>Paste the last cut/copied text from the clipboard.</p>"""
         ))
         self.pasteAct.triggered.connect(self.__shell.paste)
         self.editActions.append(self.pasteAct)
@@ -339,10 +334,9 @@
             self.copyActGrp, 'vm_edit_clear')
         self.clearAct.setStatusTip(QCoreApplication.translate(
             'ViewManager', 'Clear all text'))
-        self.clearAct.setWhatsThis(QCoreApplication.translate(
-            'ViewManager',
+        self.clearAct.setWhatsThis(self.tr(
             """<b>Clear</b>"""
-            """<p>Delete all text of the current editor.</p>"""
+            """<p>Delete all text.</p>"""
         ))
         self.clearAct.triggered.connect(self.__shell.clear)
         self.editActions.append(self.clearAct)
@@ -750,8 +744,8 @@
         self.searchAct.setWhatsThis(QCoreApplication.translate(
             'ViewManager',
             """<b>Search</b>"""
-            """<p>Search for some text in the current editor. A"""
-            """ dialog is shown to enter the searchtext and options"""
+            """<p>Search for some text in the shell window. A"""
+            """ dialog is shown to enter the search text and options"""
             """ for the search.</p>"""
         ))
         self.searchAct.triggered.connect(self.__showFind)
@@ -771,8 +765,8 @@
         self.searchNextAct.setWhatsThis(QCoreApplication.translate(
             'ViewManager',
             """<b>Search next</b>"""
-            """<p>Search the next occurrence of some text in the current"""
-            """ editor. The previously entered searchtext and options are"""
+            """<p>Search the next occurrence of some text in the shell"""
+            """ window. The previously entered search text and options are"""
             """ reused.</p>"""
         ))
         self.searchNextAct.triggered.connect(
@@ -792,8 +786,8 @@
         self.searchPrevAct.setWhatsThis(QCoreApplication.translate(
             'ViewManager',
             """<b>Search previous</b>"""
-            """<p>Search the previous occurrence of some text in the current"""
-            """ editor. The previously entered searchtext and options are"""
+            """<p>Search the previous occurrence of some text in the shell"""
+            """ window. The previously entered search text and options are"""
             """ reused.</p>"""
         ))
         self.searchPrevAct.triggered.connect(
--- a/eric6/i18n/eric6_cs.ts	Wed Nov 11 17:51:36 2020 +0100
+++ b/eric6/i18n/eric6_cs.ts	Sat Nov 14 11:50:43 2020 +0100
@@ -41185,52 +41185,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="71"/>
+        <location filename="../UI/InstallInfoDialog.py" line="70"/>
         <source>Yes</source>
         <translation type="unfinished">Ano</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="71"/>
+        <location filename="../UI/InstallInfoDialog.py" line="70"/>
         <source>No</source>
         <translation type="unfinished">Ne</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="75"/>
+        <location filename="../UI/InstallInfoDialog.py" line="74"/>
         <source>&apos;eric-ide&apos; was installed from PyPI using the pip command.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="81"/>
+        <location filename="../UI/InstallInfoDialog.py" line="80"/>
         <source>The information shown in this dialog was guessed at the first start of eric.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="99"/>
+        <location filename="../UI/InstallInfoDialog.py" line="98"/>
         <source>Load Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="99"/>
+        <location filename="../UI/InstallInfoDialog.py" line="98"/>
         <source>&lt;p&gt;The file containing the install information could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="151"/>
+        <location filename="../UI/InstallInfoDialog.py" line="150"/>
         <source>Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="151"/>
+        <location filename="../UI/InstallInfoDialog.py" line="150"/>
         <source>The install information was edited. Unsaved changes will be lost. Save first?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="188"/>
+        <location filename="../UI/InstallInfoDialog.py" line="187"/>
         <source>Save Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="188"/>
+        <location filename="../UI/InstallInfoDialog.py" line="187"/>
         <source>&lt;p&gt;The file containing the install information could not be written.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -41240,17 +41240,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="61"/>
+        <location filename="../UI/InstallInfoDialog.py" line="60"/>
         <source>Installed as Administrator:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="63"/>
+        <location filename="../UI/InstallInfoDialog.py" line="62"/>
         <source>Installed with sudo:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="93"/>
+        <location filename="../UI/InstallInfoDialog.py" line="92"/>
         <source>unknown</source>
         <translation type="unfinished">neznámý</translation>
     </message>
@@ -41260,32 +41260,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="87"/>
+        <location filename="../UI/InstallInfoDialog.py" line="86"/>
         <source>The installation information was provided by the user.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="39"/>
+        <location filename="../UI/InstallInfoDialog.py" line="38"/>
         <source>Delete Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="255"/>
+        <location filename="../UI/InstallInfoDialog.py" line="254"/>
         <source>Upgrade Instructions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="201"/>
+        <location filename="../UI/InstallInfoDialog.py" line="200"/>
         <source>Delete Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="201"/>
+        <location filename="../UI/InstallInfoDialog.py" line="200"/>
         <source>Do you really want to delete the installation information? It will be recreated at the next start.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="228"/>
+        <location filename="../UI/InstallInfoDialog.py" line="227"/>
         <source>Perform the following step(s) with Administrator privileges.
 </source>
         <translation type="unfinished"></translation>
@@ -51014,12 +51014,12 @@
         <translation type="unfinished">Chyby</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="143"/>
+        <location filename="../PipInterface/PipDialog.py" line="146"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="143"/>
+        <location filename="../PipInterface/PipDialog.py" line="146"/>
         <source>The process {0} could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51727,7 +51727,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="910"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="911"/>
         <source>Search PyPI</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51747,102 +51747,102 @@
         <translation type="unfinished">Chyby: {0}</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="872"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="873"/>
         <source>Show Package Details</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="872"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="873"/>
         <source>Select the package version:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="910"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="911"/>
         <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="926"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="927"/>
         <source>Install Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="929"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="930"/>
         <source>Install Pip to User-Site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="932"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="933"/>
         <source>Repair Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1046"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1050"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="939"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="940"/>
         <source>Install Local Package</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="943"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
         <source>Install Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="946"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="947"/>
         <source>Uninstall Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="949"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="950"/>
         <source>Generate Requirements...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="967"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="968"/>
         <source>Edit User Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="970"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="971"/>
         <source>Edit Environment Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="975"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="976"/>
         <source>Configure...</source>
         <translation type="unfinished">Konfigurovat...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1158"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1166"/>
         <source>Edit Configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1158"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1166"/>
         <source>No valid configuration path determined. Aborting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="953"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="954"/>
         <source>Show Cache Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="956"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="957"/>
         <source>Show Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="960"/>
         <source>Remove Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="962"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="963"/>
         <source>Purge Cache...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65260,231 +65260,251 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="242"/>
-        <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected language.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="249"/>
+        <location filename="../QScintilla/ShellWindow.py" line="250"/>
         <source>Restart and Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="254"/>
+        <location filename="../QScintilla/ShellWindow.py" line="255"/>
         <source>Clear the window and restart the shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="256"/>
-        <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected language.&lt;/p&gt;</source>
+        <location filename="../QScintilla/ShellWindow.py" line="885"/>
+        <source>Show History</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="885"/>
+        <source>&amp;Show History...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="891"/>
-        <source>Show History</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="891"/>
-        <source>&amp;Show History...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="897"/>
         <source>Show the shell history in a dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="895"/>
+        <source>Clear History</source>
+        <translation type="unfinished">Vyčistit historii</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="895"/>
+        <source>&amp;Clear History...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="901"/>
-        <source>Clear History</source>
-        <translation type="unfinished">Vyčistit historii</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="901"/>
-        <source>&amp;Clear History...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="907"/>
         <source>Clear the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="911"/>
+        <location filename="../QScintilla/ShellWindow.py" line="905"/>
         <source>Select History Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="911"/>
+        <location filename="../QScintilla/ShellWindow.py" line="905"/>
         <source>Select History &amp;Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="916"/>
+        <location filename="../QScintilla/ShellWindow.py" line="910"/>
         <source>Select an entry of the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
+        <source>About</source>
+        <translation type="unfinished">O aplikaci</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
+        <source>&amp;About</source>
+        <translation type="unfinished">O &amp;aplikaci</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="922"/>
+        <source>Display information about this software</source>
+        <translation type="unfinished">Zobrazit informace a tomto software</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="924"/>
-        <source>About</source>
-        <translation type="unfinished">O aplikaci</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="924"/>
-        <source>&amp;About</source>
-        <translation type="unfinished">O &amp;aplikaci</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="928"/>
-        <source>Display information about this software</source>
-        <translation type="unfinished">Zobrazit informace a tomto software</translation>
+        <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
+        <translation type="unfinished">&lt;b&gt;O aplikaci&lt;/b&gt;&lt;p&gt;Zobrazí se informace o tomto software.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="930"/>
+        <source>About Qt</source>
+        <translation type="unfinished">O Qt</translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="930"/>
-        <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
-        <translation type="unfinished">&lt;b&gt;O aplikaci&lt;/b&gt;&lt;p&gt;Zobrazí se informace o tomto software.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="936"/>
-        <source>About Qt</source>
-        <translation type="unfinished">O Qt</translation>
+        <source>About &amp;Qt</source>
+        <translation type="unfinished">O &amp;Qt</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <source>Display information about the Qt toolkit</source>
+        <translation type="unfinished">Zobrazit informace o Qt toolkitu</translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="936"/>
-        <source>About &amp;Qt</source>
-        <translation type="unfinished">O &amp;Qt</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="940"/>
-        <source>Display information about the Qt toolkit</source>
-        <translation type="unfinished">Zobrazit informace o Qt toolkitu</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="942"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
+        <source>What&apos;s This?</source>
+        <translation type="unfinished">Co je to?</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
+        <source>&amp;What&apos;s This?</source>
+        <translation type="unfinished">&amp;Co je to?</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
+        <source>Shift+F1</source>
+        <comment>Help|What&apos;s This?&apos;</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="949"/>
-        <source>What&apos;s This?</source>
-        <translation type="unfinished">Co je to?</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
-        <source>&amp;What&apos;s This?</source>
-        <translation type="unfinished">&amp;Co je to?</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
-        <source>Shift+F1</source>
-        <comment>Help|What&apos;s This?&apos;</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="955"/>
         <source>Context sensitive help</source>
         <translation type="unfinished">Kontextově senzitivní nápověda</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="956"/>
+        <location filename="../QScintilla/ShellWindow.py" line="950"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;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;Zobrazit kontextově senzitivní nápovědu&lt;/b&gt;&lt;p&gt;V režimu &quot;Co je to?&quot; 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="../QScintilla/ShellWindow.py" line="1100"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1094"/>
         <source>About eric6 Shell Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1100"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1094"/>
         <source>The eric6 Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1128"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1122"/>
         <source>&amp;File</source>
         <translation type="unfinished">S&amp;oubor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1137"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1131"/>
         <source>&amp;Edit</source>
         <translation type="unfinished">&amp;Edit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1148"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1142"/>
         <source>&amp;View</source>
         <translation type="unfinished">Poh&amp;led</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1155"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1149"/>
         <source>Histor&amp;y</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1156"/>
+        <source>&amp;Start</source>
+        <translation type="unfinished">&amp;Start</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1162"/>
-        <source>&amp;Start</source>
-        <translation type="unfinished">&amp;Start</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1168"/>
         <source>&amp;Help</source>
         <translation type="unfinished">&amp;Nápověda</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1201"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1195"/>
         <source>File</source>
         <translation type="unfinished">Soubor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1210"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1204"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1211"/>
+        <source>Find</source>
+        <translation type="unfinished">Hledat</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1217"/>
-        <source>Find</source>
-        <translation type="unfinished">Hledat</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1223"/>
         <source>View</source>
         <translation type="unfinished">Pohled</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1224"/>
+        <source>History</source>
+        <translation type="unfinished">Historie</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1230"/>
-        <source>History</source>
-        <translation type="unfinished">Historie</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1236"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1257"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1251"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="585"/>
+        <location filename="../QScintilla/ShellWindow.py" line="579"/>
         <source>Move forward one history entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="595"/>
+        <location filename="../QScintilla/ShellWindow.py" line="589"/>
         <source>Move back one history entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1036"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1030"/>
         <source>eric6 Shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1034"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1028"/>
         <source>eric6 Shell [{0}]</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="242"/>
+        <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected environment.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="257"/>
+        <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected environment.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="284"/>
+        <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text to the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="302"/>
+        <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished">&lt;b&gt;Kopírovat&lt;/b&gt;&lt;p&gt;Kopírovat vybraný text do schránky.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="320"/>
+        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="337"/>
+        <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>Shelve</name>
@@ -77807,568 +77827,568 @@
 <context>
     <name>UserInterface</name>
     <message>
-        <location filename="../UI/UserInterface.py" line="277"/>
+        <location filename="../UI/UserInterface.py" line="278"/>
         <source>Generating Main User Interface...</source>
         <translation>Generování hlavního uživatelského rozhraní...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="327"/>
+        <location filename="../UI/UserInterface.py" line="328"/>
         <source>Setting up connections...</source>
         <translation>Nastavení připojení...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="584"/>
+        <location filename="../UI/UserInterface.py" line="585"/>
         <source>Initializing Tools...</source>
         <translation>Inicializace nástrojů...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="594"/>
+        <location filename="../UI/UserInterface.py" line="595"/>
         <source>Registering Objects...</source>
         <translation>Registrování objektů...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="627"/>
+        <location filename="../UI/UserInterface.py" line="628"/>
         <source>Initializing Actions...</source>
         <translation>Inicializace akcí...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="629"/>
+        <location filename="../UI/UserInterface.py" line="630"/>
         <source>Initializing Menus...</source>
         <translation>Inicializace menu...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="631"/>
+        <location filename="../UI/UserInterface.py" line="632"/>
         <source>Initializing Toolbars...</source>
         <translation>Inicializace nástrojových lišt...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="633"/>
+        <location filename="../UI/UserInterface.py" line="634"/>
         <source>Initializing Statusbar...</source>
         <translation>Inicializace statusbaru...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="660"/>
+        <location filename="../UI/UserInterface.py" line="661"/>
         <source>Initializing Single Application Server...</source>
         <translation>Inicializace jednouživatelského aplikačního serveru...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1715"/>
+        <location filename="../UI/UserInterface.py" line="1749"/>
         <source>Project-Viewer</source>
         <translation>Prohlížeč projektu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1784"/>
         <source>Debug-Viewer</source>
         <translation>Prohlížeč debugeru</translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="1836"/>
+        <source>Log-Viewer</source>
+        <translation>Prohlížeč logu</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1854"/>
+        <source>Task-Viewer</source>
+        <translation>Prohlížeč úloh</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1873"/>
+        <source>Template-Viewer</source>
+        <translation>Prohlížeč šablon</translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="1802"/>
-        <source>Log-Viewer</source>
-        <translation>Prohlížeč logu</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
-        <source>Task-Viewer</source>
-        <translation>Prohlížeč úloh</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
-        <source>Template-Viewer</source>
-        <translation>Prohlížeč šablon</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
         <source>Shell</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
+        <location filename="../UI/UserInterface.py" line="1819"/>
         <source>File-Browser</source>
         <translation>Browser souborů</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1603"/>
+        <location filename="../UI/UserInterface.py" line="1637"/>
         <source>Quit</source>
         <translation>Konec</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1603"/>
+        <location filename="../UI/UserInterface.py" line="1637"/>
         <source>&amp;Quit</source>
         <translation>&amp;Konec</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1603"/>
+        <location filename="../UI/UserInterface.py" line="1637"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1609"/>
+        <location filename="../UI/UserInterface.py" line="1643"/>
         <source>Quit the IDE</source>
         <translation>Ukončit IDE</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1610"/>
+        <location filename="../UI/UserInterface.py" line="1644"/>
         <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="1681"/>
-        <source>Edit Profile</source>
-        <translation>Editační profil</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1687"/>
-        <source>Activate the edit view profile</source>
-        <translation>Aktivovat profil editace</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1689"/>
-        <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Editační profil&lt;/b&gt;&lt;p&gt;Aktivování skupiny &apos;Editační profil&apos;. Okna, která se v tomto profilu zobrazí lze nastavit v dialogu &apos;Konfigurace profilu pohledů&apos;.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1698"/>
-        <source>Debug Profile</source>
-        <translation>Debugovací profil</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1704"/>
-        <source>Activate the debug view profile</source>
-        <translation>Aktivovat debugovací profil</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1706"/>
-        <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Debugovací profil&lt;/b&gt;&lt;p&gt;Aktivování skupiny &apos;Debugovací profil&apos;. Okna, která se v tomto profilu zobrazí lze nastavit v dialogu &apos;Konfigurace profilu pohledů&apos;.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1715"/>
+        <source>Edit Profile</source>
+        <translation>Editační profil</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1721"/>
+        <source>Activate the edit view profile</source>
+        <translation>Aktivovat profil editace</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1723"/>
+        <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Editační profil&lt;/b&gt;&lt;p&gt;Aktivování skupiny &apos;Editační profil&apos;. Okna, která se v tomto profilu zobrazí lze nastavit v dialogu &apos;Konfigurace profilu pohledů&apos;.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1732"/>
+        <source>Debug Profile</source>
+        <translation>Debugovací profil</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1738"/>
+        <source>Activate the debug view profile</source>
+        <translation>Aktivovat debugovací profil</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1740"/>
+        <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Debugovací profil&lt;/b&gt;&lt;p&gt;Aktivování skupiny &apos;Debugovací profil&apos;. Okna, která se v tomto profilu zobrazí lze nastavit v dialogu &apos;Konfigurace profilu pohledů&apos;.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1749"/>
         <source>&amp;Project-Viewer</source>
         <translation>Prohlížeč &amp;projektu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1715"/>
+        <location filename="../UI/UserInterface.py" line="1749"/>
         <source>Alt+Shift+P</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1784"/>
         <source>Alt+Shift+D</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
-        <source>&amp;Shell</source>
-        <translation>&amp;Shell</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
-        <source>Alt+Shift+S</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
-        <source>Alt+Shift+F</source>
-        <translation></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1802"/>
+        <source>&amp;Shell</source>
+        <translation>&amp;Shell</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1802"/>
+        <source>Alt+Shift+S</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1819"/>
+        <source>Alt+Shift+F</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1836"/>
         <source>Alt+Shift+G</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
+        <location filename="../UI/UserInterface.py" line="1854"/>
         <source>Alt+Shift+T</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1732"/>
+        <location filename="../UI/UserInterface.py" line="1766"/>
         <source>Alt+Shift+M</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>What&apos;s This?</source>
         <translation>Co je to?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Co je to?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>Shift+F1</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2093"/>
+        <location filename="../UI/UserInterface.py" line="2127"/>
         <source>Context sensitive help</source>
         <translation>Kontextově senzitivní nápověda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2094"/>
+        <location filename="../UI/UserInterface.py" line="2128"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;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 &quot;Co je to?&quot; 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="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>Helpviewer</source>
         <translation>Prohlížeč nápovědy</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>&amp;Helpviewer...</source>
         <translation>Pro&amp;hlížeč nápovědy...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>F1</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2111"/>
+        <location filename="../UI/UserInterface.py" line="2145"/>
         <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="2131"/>
+        <location filename="../UI/UserInterface.py" line="2165"/>
         <source>Show Versions</source>
         <translation>Zobrazit verze</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2131"/>
+        <location filename="../UI/UserInterface.py" line="2165"/>
         <source>Show &amp;Versions</source>
         <translation>Zobrazit &amp;verze</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2135"/>
+        <location filename="../UI/UserInterface.py" line="2169"/>
         <source>Display version information</source>
         <translation>Zobrazit informace o verzích</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2137"/>
+        <location filename="../UI/UserInterface.py" line="2171"/>
         <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="2147"/>
+        <location filename="../UI/UserInterface.py" line="2181"/>
         <source>Check for Updates</source>
         <translation>Zjistit aktualizace</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2144"/>
+        <location filename="../UI/UserInterface.py" line="2178"/>
         <source>Check for &amp;Updates...</source>
         <translation>Zjistit akt&amp;ualizace...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
+        <location filename="../UI/UserInterface.py" line="3779"/>
         <source>Report Bug</source>
         <translation>Reportovat Bugy</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2196"/>
+        <location filename="../UI/UserInterface.py" line="2230"/>
         <source>Report &amp;Bug...</source>
         <translation>Reportovat &amp;Bugy...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2200"/>
+        <location filename="../UI/UserInterface.py" line="2234"/>
         <source>Report a bug</source>
         <translation>Reportovat bug</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2201"/>
+        <location filename="../UI/UserInterface.py" line="2235"/>
         <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="3279"/>
+        <location filename="../UI/UserInterface.py" line="3313"/>
         <source>Unittest</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2223"/>
+        <location filename="../UI/UserInterface.py" line="2257"/>
         <source>&amp;Unittest...</source>
         <translation>&amp;Unittest...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2228"/>
+        <location filename="../UI/UserInterface.py" line="2262"/>
         <source>Start unittest dialog</source>
         <translation>Otevřít dialog unittestu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2229"/>
+        <location filename="../UI/UserInterface.py" line="2263"/>
         <source>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Perform unit tests. The dialog gives you the ability to select and run a unittest suite.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Provést unittesty. V dialogovém okně se nastaví který test se má provést.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2271"/>
         <source>Unittest Restart</source>
         <translation>Restart unittestu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2271"/>
         <source>&amp;Restart Unittest...</source>
         <translation>&amp;Restart unittestu...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2242"/>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>Restart last unittest</source>
         <translation>Restart posledního unittestu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2243"/>
+        <location filename="../UI/UserInterface.py" line="2277"/>
         <source>&lt;b&gt;Restart Unittest&lt;/b&gt;&lt;p&gt;Restart the unittest performed last.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Restart unittestu&lt;/b&gt;&lt;p&gt;Restartuje se poslední provedený unittest.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2267"/>
+        <location filename="../UI/UserInterface.py" line="2301"/>
         <source>Unittest Script</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2267"/>
+        <location filename="../UI/UserInterface.py" line="2301"/>
         <source>Unittest &amp;Script...</source>
         <translation>Unittest &amp;Script...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2272"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Run unittest with current script</source>
         <translation>Spustit unittest s aktuálním skriptem</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2274"/>
+        <location filename="../UI/UserInterface.py" line="2308"/>
         <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Spustit unittest s aktuálním skriptem.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2282"/>
+        <location filename="../UI/UserInterface.py" line="2316"/>
         <source>Unittest Project</source>
         <translation>Unittest Projekt</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2282"/>
+        <location filename="../UI/UserInterface.py" line="2316"/>
         <source>Unittest &amp;Project...</source>
         <translation>Unittest &amp;Projekt...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2287"/>
+        <location filename="../UI/UserInterface.py" line="2321"/>
         <source>Run unittest with current project</source>
         <translation>Spustit unittest s aktuálním projektem</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2289"/>
+        <location filename="../UI/UserInterface.py" line="2323"/>
         <source>&lt;b&gt;Unittest Project&lt;/b&gt;&lt;p&gt;Run unittest with current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Unittest projekt&lt;/b&gt;&lt;p&gt;Spustit unittest s aktuálním projektem.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2350"/>
+        <location filename="../UI/UserInterface.py" line="2384"/>
         <source>UI Previewer</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2350"/>
+        <location filename="../UI/UserInterface.py" line="2384"/>
         <source>&amp;UI Previewer...</source>
         <translation>&amp;UI Previewer...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2355"/>
+        <location filename="../UI/UserInterface.py" line="2389"/>
         <source>Start the UI Previewer</source>
         <translation>Spustit UI Previewer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2356"/>
-        <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="2363"/>
-        <source>Translations Previewer</source>
-        <translation>Náhled překladů</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2363"/>
-        <source>&amp;Translations Previewer...</source>
-        <translation>Náhled &amp;překladů...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2368"/>
-        <source>Start the Translations Previewer</source>
-        <translation>Spustit Previewer překladů</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2370"/>
-        <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="2377"/>
-        <source>Compare Files</source>
-        <translation>Porovnat soubory</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2377"/>
-        <source>&amp;Compare Files...</source>
-        <translation>&amp;Porovnat soubory...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2395"/>
-        <source>Compare two files</source>
-        <translation>Porovnat dva soubory</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2383"/>
-        <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="2390"/>
+        <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="2397"/>
+        <source>Translations Previewer</source>
+        <translation>Náhled překladů</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2397"/>
+        <source>&amp;Translations Previewer...</source>
+        <translation>Náhled &amp;překladů...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2402"/>
+        <source>Start the Translations Previewer</source>
+        <translation>Spustit Previewer překladů</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2404"/>
+        <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="2411"/>
+        <source>Compare Files</source>
+        <translation>Porovnat soubory</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2411"/>
+        <source>&amp;Compare Files...</source>
+        <translation>&amp;Porovnat soubory...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2429"/>
+        <source>Compare two files</source>
+        <translation>Porovnat dva soubory</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2417"/>
+        <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="2424"/>
         <source>Compare Files side by side</source>
         <translation>Porovnat soubory stranu proti straně</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2396"/>
+        <location filename="../UI/UserInterface.py" line="2430"/>
         <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="2490"/>
+        <location filename="../UI/UserInterface.py" line="2524"/>
         <source>Preferences</source>
         <translation>Nastavení</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2490"/>
+        <location filename="../UI/UserInterface.py" line="2524"/>
         <source>&amp;Preferences...</source>
         <translation>Na&amp;stavení...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2495"/>
+        <location filename="../UI/UserInterface.py" line="2529"/>
         <source>Set the prefered configuration</source>
         <translation>Nastavení konfigurace</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2497"/>
+        <location filename="../UI/UserInterface.py" line="2531"/>
         <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="2534"/>
+        <location filename="../UI/UserInterface.py" line="2568"/>
         <source>Reload APIs</source>
         <translation>Obnovit API</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2534"/>
-        <source>Reload &amp;APIs</source>
-        <translation>Obnovit &amp;API</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2538"/>
-        <source>Reload the API information</source>
-        <translation>Obnovit API nastavení</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2540"/>
-        <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="2563"/>
-        <source>View Profiles</source>
-        <translation>Profily pohledů</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2563"/>
-        <source>&amp;View Profiles...</source>
-        <translation>Profily &amp;pohledů...</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2568"/>
-        <source>Configure view profiles</source>
-        <translation>Konfigurace profilů pohledů</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2570"/>
-        <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="2595"/>
-        <source>Keyboard Shortcuts</source>
-        <translation>Klávesové zkratky</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2595"/>
-        <source>Keyboard &amp;Shortcuts...</source>
-        <translation>Klávesové &amp;zkratky...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2600"/>
-        <source>Set the keyboard shortcuts</source>
-        <translation>Nastavení klávesových zkratek</translation>
+        <source>Reload &amp;APIs</source>
+        <translation>Obnovit &amp;API</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2572"/>
+        <source>Reload the API information</source>
+        <translation>Obnovit API nastavení</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2574"/>
+        <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="2597"/>
+        <source>View Profiles</source>
+        <translation>Profily pohledů</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2597"/>
+        <source>&amp;View Profiles...</source>
+        <translation>Profily &amp;pohledů...</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2602"/>
-        <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="6217"/>
-        <source>Export Keyboard Shortcuts</source>
-        <translation>Exportovat klávesové zkratky</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2610"/>
-        <source>&amp;Export Keyboard Shortcuts...</source>
-        <translation>&amp;Exportovat klávesové zkratky...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2615"/>
-        <source>Export the keyboard shortcuts</source>
-        <translation>Export klávesových zkratek</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2617"/>
-        <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="6241"/>
-        <source>Import Keyboard Shortcuts</source>
-        <translation>Import klávesových zkratek</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2624"/>
-        <source>&amp;Import Keyboard Shortcuts...</source>
-        <translation>&amp;Import klávesových zkratek...</translation>
+        <source>Configure view profiles</source>
+        <translation>Konfigurace profilů pohledů</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2604"/>
+        <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="2629"/>
+        <source>Keyboard Shortcuts</source>
+        <translation>Klávesové zkratky</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2629"/>
+        <source>Keyboard &amp;Shortcuts...</source>
+        <translation>Klávesové &amp;zkratky...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2634"/>
+        <source>Set the keyboard shortcuts</source>
+        <translation>Nastavení klávesových zkratek</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2636"/>
+        <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="6251"/>
+        <source>Export Keyboard Shortcuts</source>
+        <translation>Exportovat klávesové zkratky</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2644"/>
+        <source>&amp;Export Keyboard Shortcuts...</source>
+        <translation>&amp;Exportovat klávesové zkratky...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2649"/>
+        <source>Export the keyboard shortcuts</source>
+        <translation>Export klávesových zkratek</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2651"/>
+        <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="6275"/>
+        <source>Import Keyboard Shortcuts</source>
+        <translation>Import klávesových zkratek</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2658"/>
+        <source>&amp;Import Keyboard Shortcuts...</source>
+        <translation>&amp;Import klávesových zkratek...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2663"/>
         <source>Import the keyboard shortcuts</source>
         <translation>Import klávesových zkratek</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2631"/>
+        <location filename="../UI/UserInterface.py" line="2665"/>
         <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="2689"/>
+        <location filename="../UI/UserInterface.py" line="2723"/>
         <source>Activate current editor</source>
         <translation>Aktivovat aktuální editor</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2689"/>
+        <location filename="../UI/UserInterface.py" line="2723"/>
         <source>Alt+Shift+E</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2699"/>
+        <location filename="../UI/UserInterface.py" line="2733"/>
         <source>Ctrl+Alt+Tab</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2708"/>
+        <location filename="../UI/UserInterface.py" line="2742"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation></translation>
     </message>
@@ -78398,72 +78418,72 @@
         <translation type="obsolete">Otevřít PyQt4 dokumentaci</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2889"/>
+        <location filename="../UI/UserInterface.py" line="2923"/>
         <source>Eric API Documentation</source>
         <translation>Eric API dokumentace</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2889"/>
+        <location filename="../UI/UserInterface.py" line="2923"/>
         <source>&amp;Eric API Documentation</source>
         <translation>&amp;Eric API dokumentace</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2893"/>
+        <location filename="../UI/UserInterface.py" line="2927"/>
         <source>Open Eric API Documentation</source>
         <translation>Otevřít Eric API dokumentaci</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3074"/>
+        <location filename="../UI/UserInterface.py" line="3108"/>
         <source>&amp;Unittest</source>
         <translation>&amp;Unittest</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3018"/>
+        <location filename="../UI/UserInterface.py" line="3052"/>
         <source>E&amp;xtras</source>
         <translation>E&amp;xtra funkce</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3091"/>
+        <location filename="../UI/UserInterface.py" line="3125"/>
         <source>Select Tool Group</source>
         <translation>Vybrat skupinu nástrojů</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3102"/>
+        <location filename="../UI/UserInterface.py" line="3136"/>
         <source>Se&amp;ttings</source>
         <translation>Nas&amp;tavení</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3132"/>
+        <location filename="../UI/UserInterface.py" line="3166"/>
         <source>&amp;Window</source>
         <translation>O&amp;kno</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3193"/>
+        <location filename="../UI/UserInterface.py" line="3227"/>
         <source>&amp;Toolbars</source>
         <translation>&amp;Toolbary</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3207"/>
+        <location filename="../UI/UserInterface.py" line="3241"/>
         <source>&amp;Help</source>
         <translation>&amp;Nápověda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3278"/>
+        <location filename="../UI/UserInterface.py" line="3312"/>
         <source>Tools</source>
         <translation>Nástroje</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3280"/>
+        <location filename="../UI/UserInterface.py" line="3314"/>
         <source>Settings</source>
         <translation>Nastavení</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5147"/>
+        <location filename="../UI/UserInterface.py" line="5181"/>
         <source>Help</source>
         <translation>Nápověda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3282"/>
+        <location filename="../UI/UserInterface.py" line="3316"/>
         <source>Profiles</source>
         <translation>Profily</translation>
     </message>
@@ -78473,27 +78493,27 @@
         <translation type="obsolete">&lt;h3&gt;Čísla verzí&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7214"/>
+        <location filename="../UI/UserInterface.py" line="7248"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
+        <location filename="../UI/UserInterface.py" line="3779"/>
         <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="4146"/>
+        <location filename="../UI/UserInterface.py" line="4180"/>
         <source>Configure Tool Groups ...</source>
         <translation>Konfigurace Skupin nástrojů...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4150"/>
+        <location filename="../UI/UserInterface.py" line="4184"/>
         <source>Configure current Tool Group ...</source>
         <translation>Konfigurace aktuální skupiny nástrojů...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4101"/>
+        <location filename="../UI/UserInterface.py" line="4135"/>
         <source>&amp;Builtin Tools</source>
         <translation>&amp;Vestavěné nástroje</translation>
     </message>
@@ -78503,32 +78523,32 @@
         <translation type="obsolete">V aktuálním projektu není definován hlavní skript. Zrušeno</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5275"/>
+        <location filename="../UI/UserInterface.py" line="5309"/>
         <source>Problem</source>
         <translation>Problém</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5470"/>
+        <location filename="../UI/UserInterface.py" line="5504"/>
         <source>Process Generation Error</source>
         <translation>Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5147"/>
-        <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="5181"/>
+        <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="5215"/>
         <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="5809"/>
+        <location filename="../UI/UserInterface.py" line="5843"/>
         <source>Documentation Missing</source>
         <translation>Dokumentace chybí</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5792"/>
+        <location filename="../UI/UserInterface.py" line="5826"/>
         <source>Documentation</source>
         <translation>Dokumentace</translation>
     </message>
@@ -78538,472 +78558,472 @@
         <translation type="obsolete">&lt;p&gt;Počátek dokumentace PySide nebyl nastaven.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6411"/>
+        <location filename="../UI/UserInterface.py" line="6445"/>
         <source>Save tasks</source>
         <translation>Uložit úlohy</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6440"/>
+        <location filename="../UI/UserInterface.py" line="6474"/>
         <source>Read tasks</source>
         <translation>Načíst úlohy</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6804"/>
+        <location filename="../UI/UserInterface.py" line="6838"/>
         <source>Drop Error</source>
         <translation>Zahodit chybu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7175"/>
+        <location filename="../UI/UserInterface.py" line="7209"/>
         <source>Error during updates check</source>
         <translation>Chyba během zjišťování aktualizací</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7156"/>
+        <location filename="../UI/UserInterface.py" line="7190"/>
         <source>Update available</source>
         <translation>Byla nalezena aktualizace</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2552"/>
-        <source>Show external tools</source>
-        <translation>Zobrazit externí nástroje</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2547"/>
-        <source>Show external &amp;tools</source>
-        <translation>Zobrazit externí nás&amp;troje</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7175"/>
-        <source>Could not perform updates check.</source>
-        <translation>Kontrolu updatů nelze provést.</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6989"/>
-        <source>&amp;Cancel</source>
-        <translation>&amp;Zrušit</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7251"/>
-        <source>First time usage</source>
-        <translation>Spuštěno poprvé</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="270"/>
-        <source>Initializing Plugin Manager...</source>
-        <translation>Inicializace Plugin manažera...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3055"/>
-        <source>P&amp;lugins</source>
-        <translation>P&amp;luginy</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3283"/>
-        <source>Plugins</source>
-        <translation>Pluginy</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2726"/>
-        <source>Plugin Infos</source>
-        <translation>Plugin Infa</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2730"/>
-        <source>Show Plugin Infos</source>
-        <translation>Zobrazit Plugin infa</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2731"/>
-        <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="2726"/>
-        <source>&amp;Plugin Infos...</source>
-        <translation>&amp;Plugin Infa...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4118"/>
-        <source>&amp;Plugin Tools</source>
-        <translation>&amp;Plugin nástroje</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2757"/>
-        <source>Uninstall Plugin</source>
-        <translation>Odinstalovat plugin</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2752"/>
-        <source>&amp;Uninstall Plugin...</source>
-        <translation>&amp;Odinstalovat plugin...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2758"/>
-        <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="4267"/>
-        <source>&amp;Show all</source>
-        <translation>&amp;Zobrazit vše</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4269"/>
-        <source>&amp;Hide all</source>
-        <translation>&amp;Skrýt vše</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="670"/>
-        <source>Activating Plugins...</source>
-        <translation>Aktivace pluginů...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3028"/>
-        <source>Wi&amp;zards</source>
-        <translation>&amp;Průvodci</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2155"/>
-        <source>Show downloadable versions</source>
-        <translation>Zobrazit verze ke stažení</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2155"/>
-        <source>Show &amp;downloadable versions...</source>
-        <translation>Zobrazit verze pro &amp;download...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2159"/>
-        <source>Show the versions available for download</source>
-        <translation>Zobrazit dostupné verze ke stažení</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7199"/>
-        <source>&lt;h3&gt;Available versions&lt;/h3&gt;&lt;table&gt;</source>
-        <translation>&lt;h3&gt;Dostupné verze&lt;/h3&gt;&lt;table&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2765"/>
-        <source>Plugin Repository</source>
-        <translation>Repozitář pluginů</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2765"/>
-        <source>Plugin &amp;Repository...</source>
-        <translation>&amp;Repozitář pluginů...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2770"/>
-        <source>Show Plugins available for download</source>
-        <translation>Zobrazit pluginy dostupné ke stažení</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2772"/>
-        <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="2744"/>
-        <source>Install Plugins</source>
-        <translation>Instalovat pluginy</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2739"/>
-        <source>&amp;Install Plugins...</source>
-        <translation>&amp;Instalovat pluginy...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2745"/>
-        <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="2422"/>
-        <source>Mini Editor</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2417"/>
-        <source>Mini &amp;Editor...</source>
-        <translation>Mini &amp;Editor...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2423"/>
-        <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="2580"/>
-        <source>Toolbars</source>
-        <translation>Lišty nástrojů</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2580"/>
-        <source>Tool&amp;bars...</source>
-        <translation>&amp;Lišty nástrojů...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2585"/>
-        <source>Configure toolbars</source>
-        <translation>Konfigurace lišt nástrojů</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2586"/>
+        <source>Show external tools</source>
+        <translation>Zobrazit externí nástroje</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2581"/>
+        <source>Show external &amp;tools</source>
+        <translation>Zobrazit externí nás&amp;troje</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7209"/>
+        <source>Could not perform updates check.</source>
+        <translation>Kontrolu updatů nelze provést.</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7023"/>
+        <source>&amp;Cancel</source>
+        <translation>&amp;Zrušit</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7285"/>
+        <source>First time usage</source>
+        <translation>Spuštěno poprvé</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="271"/>
+        <source>Initializing Plugin Manager...</source>
+        <translation>Inicializace Plugin manažera...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3089"/>
+        <source>P&amp;lugins</source>
+        <translation>P&amp;luginy</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3317"/>
+        <source>Plugins</source>
+        <translation>Pluginy</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2760"/>
+        <source>Plugin Infos</source>
+        <translation>Plugin Infa</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2764"/>
+        <source>Show Plugin Infos</source>
+        <translation>Zobrazit Plugin infa</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2765"/>
+        <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="2760"/>
+        <source>&amp;Plugin Infos...</source>
+        <translation>&amp;Plugin Infa...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4152"/>
+        <source>&amp;Plugin Tools</source>
+        <translation>&amp;Plugin nástroje</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2791"/>
+        <source>Uninstall Plugin</source>
+        <translation>Odinstalovat plugin</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2786"/>
+        <source>&amp;Uninstall Plugin...</source>
+        <translation>&amp;Odinstalovat plugin...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2792"/>
+        <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="4301"/>
+        <source>&amp;Show all</source>
+        <translation>&amp;Zobrazit vše</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4303"/>
+        <source>&amp;Hide all</source>
+        <translation>&amp;Skrýt vše</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="671"/>
+        <source>Activating Plugins...</source>
+        <translation>Aktivace pluginů...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3062"/>
+        <source>Wi&amp;zards</source>
+        <translation>&amp;Průvodci</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2189"/>
+        <source>Show downloadable versions</source>
+        <translation>Zobrazit verze ke stažení</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2189"/>
+        <source>Show &amp;downloadable versions...</source>
+        <translation>Zobrazit verze pro &amp;download...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2193"/>
+        <source>Show the versions available for download</source>
+        <translation>Zobrazit dostupné verze ke stažení</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7233"/>
+        <source>&lt;h3&gt;Available versions&lt;/h3&gt;&lt;table&gt;</source>
+        <translation>&lt;h3&gt;Dostupné verze&lt;/h3&gt;&lt;table&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2799"/>
+        <source>Plugin Repository</source>
+        <translation>Repozitář pluginů</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2799"/>
+        <source>Plugin &amp;Repository...</source>
+        <translation>&amp;Repozitář pluginů...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2804"/>
+        <source>Show Plugins available for download</source>
+        <translation>Zobrazit pluginy dostupné ke stažení</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2806"/>
+        <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="2778"/>
+        <source>Install Plugins</source>
+        <translation>Instalovat pluginy</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2773"/>
+        <source>&amp;Install Plugins...</source>
+        <translation>&amp;Instalovat pluginy...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2779"/>
+        <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="2456"/>
+        <source>Mini Editor</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2451"/>
+        <source>Mini &amp;Editor...</source>
+        <translation>Mini &amp;Editor...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2457"/>
+        <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="2614"/>
+        <source>Toolbars</source>
+        <translation>Lišty nástrojů</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2614"/>
+        <source>Tool&amp;bars...</source>
+        <translation>&amp;Lišty nástrojů...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2619"/>
+        <source>Configure toolbars</source>
+        <translation>Konfigurace lišt nástrojů</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2620"/>
         <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="686"/>
+        <location filename="../UI/UserInterface.py" line="687"/>
         <source>Restoring Toolbarmanager...</source>
         <translation>Obnovit manažer nástrojových lišt...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5415"/>
+        <location filename="../UI/UserInterface.py" line="5449"/>
         <source>External Tools</source>
         <translation>Externí nástroje</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1732"/>
+        <location filename="../UI/UserInterface.py" line="1766"/>
         <source>Multiproject-Viewer</source>
         <translation>Prohlížeč multiprojektu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1732"/>
+        <location filename="../UI/UserInterface.py" line="1766"/>
         <source>&amp;Multiproject-Viewer</source>
         <translation>Prohlížeč &amp;multiprojektu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6536"/>
+        <location filename="../UI/UserInterface.py" line="6570"/>
         <source>Save session</source>
         <translation>Uložit relaci</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6520"/>
+        <location filename="../UI/UserInterface.py" line="6554"/>
         <source>Read session</source>
         <translation>Načíst relaci</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3459"/>
+        <location filename="../UI/UserInterface.py" line="3493"/>
         <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="3473"/>
+        <location filename="../UI/UserInterface.py" line="3507"/>
         <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="2208"/>
+        <location filename="../UI/UserInterface.py" line="2242"/>
         <source>Request Feature</source>
         <translation>Požadavek na vlastnost</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2208"/>
+        <location filename="../UI/UserInterface.py" line="2242"/>
         <source>Request &amp;Feature...</source>
         <translation>&amp;Požadavek na vlastnost...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2212"/>
+        <location filename="../UI/UserInterface.py" line="2246"/>
         <source>Send a feature request</source>
         <translation>Poslat požadavek na vlastnost</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2214"/>
+        <location filename="../UI/UserInterface.py" line="2248"/>
         <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="3452"/>
+        <location filename="../UI/UserInterface.py" line="3486"/>
         <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="3480"/>
+        <location filename="../UI/UserInterface.py" line="3514"/>
         <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="3487"/>
+        <location filename="../UI/UserInterface.py" line="3521"/>
         <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="1882"/>
+        <location filename="../UI/UserInterface.py" line="1916"/>
         <source>Horizontal Toolbox</source>
         <translation>Vodorovná nástrojová lišta</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1882"/>
+        <location filename="../UI/UserInterface.py" line="1916"/>
         <source>&amp;Horizontal Toolbox</source>
         <translation>&amp;Horizontální lista nástrojů</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1886"/>
+        <location filename="../UI/UserInterface.py" line="1920"/>
         <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="1888"/>
+        <location filename="../UI/UserInterface.py" line="1922"/>
         <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="4065"/>
+        <location filename="../UI/UserInterface.py" line="4099"/>
         <source>Restart application</source>
         <translation>Restartovat aplikaci</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4065"/>
+        <location filename="../UI/UserInterface.py" line="4099"/>
         <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="1839"/>
+        <location filename="../UI/UserInterface.py" line="1873"/>
         <source>Alt+Shift+A</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3064"/>
+        <location filename="../UI/UserInterface.py" line="3098"/>
         <source>Configure...</source>
         <translation>Konfigurovat...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3466"/>
+        <location filename="../UI/UserInterface.py" line="3500"/>
         <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="2717"/>
+        <location filename="../UI/UserInterface.py" line="2751"/>
         <source>Switch between tabs</source>
         <translation>Přepnout mezi taby</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2717"/>
+        <location filename="../UI/UserInterface.py" line="2751"/>
         <source>Ctrl+1</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2506"/>
+        <location filename="../UI/UserInterface.py" line="2540"/>
         <source>Export Preferences</source>
         <translation>Exportovat předvolby</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2506"/>
+        <location filename="../UI/UserInterface.py" line="2540"/>
         <source>E&amp;xport Preferences...</source>
         <translation>E&amp;xportovat předvolby...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2511"/>
+        <location filename="../UI/UserInterface.py" line="2545"/>
         <source>Export the current configuration</source>
         <translation>Export aktuální konfigurace</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2513"/>
+        <location filename="../UI/UserInterface.py" line="2547"/>
         <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="2520"/>
+        <location filename="../UI/UserInterface.py" line="2554"/>
         <source>Import Preferences</source>
         <translation>Import předvoleb</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2520"/>
+        <location filename="../UI/UserInterface.py" line="2554"/>
         <source>I&amp;mport Preferences...</source>
         <translation>I&amp;mport předvoleb...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2525"/>
+        <location filename="../UI/UserInterface.py" line="2559"/>
         <source>Import a previously exported configuration</source>
         <translation>Import dříve exportované konfigurace</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2527"/>
+        <location filename="../UI/UserInterface.py" line="2561"/>
         <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="2699"/>
+        <location filename="../UI/UserInterface.py" line="2733"/>
         <source>Show next</source>
         <translation>Zobrazit další</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2708"/>
+        <location filename="../UI/UserInterface.py" line="2742"/>
         <source>Show previous</source>
         <translation>Zobrazit předchozí</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1896"/>
+        <location filename="../UI/UserInterface.py" line="1930"/>
         <source>Left Sidebar</source>
         <translation>Levé menu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1896"/>
+        <location filename="../UI/UserInterface.py" line="1930"/>
         <source>&amp;Left Sidebar</source>
         <translation>&amp;Levé menu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1900"/>
+        <location filename="../UI/UserInterface.py" line="1934"/>
         <source>Toggle the left sidebar window</source>
         <translation>Přepnout okno levého menu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1901"/>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <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="1923"/>
+        <location filename="../UI/UserInterface.py" line="1957"/>
         <source>Bottom Sidebar</source>
         <translation>Dolní menu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1923"/>
+        <location filename="../UI/UserInterface.py" line="1957"/>
         <source>&amp;Bottom Sidebar</source>
         <translation>&amp;Dolní menu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1927"/>
+        <location filename="../UI/UserInterface.py" line="1961"/>
         <source>Toggle the bottom sidebar window</source>
         <translation>Přepnout okno dolního menu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1929"/>
+        <location filename="../UI/UserInterface.py" line="1963"/>
         <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="1750"/>
+        <location filename="../UI/UserInterface.py" line="1784"/>
         <source>&amp;Debug-Viewer</source>
         <translation>Prohlížeč &amp;debugeru</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2404"/>
+        <location filename="../UI/UserInterface.py" line="2438"/>
         <source>SQL Browser</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2404"/>
+        <location filename="../UI/UserInterface.py" line="2438"/>
         <source>SQL &amp;Browser...</source>
         <translation>SQL &amp;Browser...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2409"/>
+        <location filename="../UI/UserInterface.py" line="2443"/>
         <source>Browse a SQL database</source>
         <translation>Procházet SQL databázi</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2410"/>
+        <location filename="../UI/UserInterface.py" line="2444"/>
         <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="2461"/>
+        <location filename="../UI/UserInterface.py" line="2495"/>
         <source>Icon Editor</source>
         <translation>Editor ikon</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2461"/>
+        <location filename="../UI/UserInterface.py" line="2495"/>
         <source>&amp;Icon Editor...</source>
         <translation>Editor &amp;ikon...</translation>
     </message>
@@ -79028,747 +79048,747 @@
         <translation type="obsolete">Otevřít PySide dokumentaci</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1569"/>
+        <location filename="../UI/UserInterface.py" line="1603"/>
         <source>{0} - Passive Mode</source>
         <translation>{0} - Pasivní mód</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1576"/>
+        <location filename="../UI/UserInterface.py" line="1610"/>
         <source>{0} - {1} - Passive Mode</source>
         <translation>{0} - {1} - pasivní mód</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1580"/>
+        <location filename="../UI/UserInterface.py" line="1614"/>
         <source>{0} - {1} - {2} - Passive Mode</source>
         <translation>{0} - {1} - {2} - pasivní mód</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3563"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>External Tools/{0}</source>
         <translation>Externí nástroje/{0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5275"/>
+        <location filename="../UI/UserInterface.py" line="5309"/>
         <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="5000"/>
+        <location filename="../UI/UserInterface.py" line="5034"/>
         <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="5070"/>
+        <location filename="../UI/UserInterface.py" line="5104"/>
         <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="5114"/>
+        <location filename="../UI/UserInterface.py" line="5148"/>
         <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="5161"/>
+        <location filename="../UI/UserInterface.py" line="5195"/>
         <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="5231"/>
+        <location filename="../UI/UserInterface.py" line="5265"/>
         <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="5288"/>
+        <location filename="../UI/UserInterface.py" line="5322"/>
         <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="5311"/>
+        <location filename="../UI/UserInterface.py" line="5345"/>
         <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="5406"/>
+        <location filename="../UI/UserInterface.py" line="5440"/>
         <source>No tool entry found for external tool &apos;{0}&apos; in tool group &apos;{1}&apos;.</source>
         <translation>V externím nástroji  &apos;{0}&apos; ve skupině &apos;{1}&apos; nebyl záznam nástroje nalezen.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5415"/>
+        <location filename="../UI/UserInterface.py" line="5449"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation>Skupina nástrojů &apos;{0}&apos; nenalezena. </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5454"/>
+        <location filename="../UI/UserInterface.py" line="5488"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation>Spouštím proces &apos;{0} {1}&apos;.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5470"/>
+        <location filename="../UI/UserInterface.py" line="5504"/>
         <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="5548"/>
+        <location filename="../UI/UserInterface.py" line="5582"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation>Proces &apos;{0}&apos; byl ukončen.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5809"/>
+        <location filename="../UI/UserInterface.py" line="5843"/>
         <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Adresář dokumentace &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; nebyl nalezen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6411"/>
+        <location filename="../UI/UserInterface.py" line="6445"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Do souboru s úlohami &lt;b&gt;{0}&lt;/b&gt; nelze zapisovat.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6440"/>
-        <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="6474"/>
+        <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="6508"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Zápis do souboru relace session &lt;b&gt;{0}&lt;/b&gt; se nezdařil.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6520"/>
+        <location filename="../UI/UserInterface.py" line="6554"/>
         <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="6804"/>
+        <location filename="../UI/UserInterface.py" line="6838"/>
         <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="6998"/>
+        <location filename="../UI/UserInterface.py" line="7032"/>
         <source>Trying host {0}</source>
         <translation>Zkouším host {0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1122"/>
+        <location filename="../UI/UserInterface.py" line="1123"/>
         <source>Cooperation</source>
         <translation>Spolupráce</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Alt+Shift+O</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1178"/>
+        <location filename="../UI/UserInterface.py" line="1179"/>
         <source>Symbols</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>Alt+Shift+Y</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1187"/>
+        <location filename="../UI/UserInterface.py" line="1188"/>
         <source>Numbers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Alt+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6241"/>
+        <location filename="../UI/UserInterface.py" line="6275"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2867"/>
+        <location filename="../UI/UserInterface.py" line="2901"/>
         <source>Python 3 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2867"/>
+        <location filename="../UI/UserInterface.py" line="2901"/>
         <source>Python &amp;3 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2871"/>
+        <location filename="../UI/UserInterface.py" line="2905"/>
         <source>Open Python 3 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7064"/>
+        <location filename="../UI/UserInterface.py" line="7098"/>
         <source>Error getting versions information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7057"/>
+        <location filename="../UI/UserInterface.py" line="7091"/>
         <source>The versions information could not be downloaded. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6009"/>
+        <location filename="../UI/UserInterface.py" line="6043"/>
         <source>Open Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6009"/>
+        <location filename="../UI/UserInterface.py" line="6043"/>
         <source>Could not start a web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7064"/>
+        <location filename="../UI/UserInterface.py" line="7098"/>
         <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="695"/>
+        <location filename="../UI/UserInterface.py" line="696"/>
         <source>Setting View Profile...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="708"/>
+        <location filename="../UI/UserInterface.py" line="709"/>
         <source>Reading Tasks...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="713"/>
+        <location filename="../UI/UserInterface.py" line="714"/>
         <source>Reading Templates...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="718"/>
+        <location filename="../UI/UserInterface.py" line="719"/>
         <source>Starting Debugger...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>New Window</source>
         <translation type="unfinished">Nové okno</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>New &amp;Window</source>
         <translation type="unfinished">&amp;Nové okno</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2251"/>
+        <location filename="../UI/UserInterface.py" line="2285"/>
         <source>Unittest Rerun Failed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2251"/>
+        <location filename="../UI/UserInterface.py" line="2285"/>
         <source>Rerun Failed Tests...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2256"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Rerun failed tests of the last run</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2258"/>
+        <location filename="../UI/UserInterface.py" line="2292"/>
         <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last unittest run.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2390"/>
+        <location filename="../UI/UserInterface.py" line="2424"/>
         <source>Compare &amp;Files side by side...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2475"/>
+        <location filename="../UI/UserInterface.py" line="2509"/>
         <source>Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2475"/>
+        <location filename="../UI/UserInterface.py" line="2509"/>
         <source>&amp;Snapshot...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2480"/>
+        <location filename="../UI/UserInterface.py" line="2514"/>
         <source>Take snapshots of a screen region</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2482"/>
+        <location filename="../UI/UserInterface.py" line="2516"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5383"/>
+        <location filename="../UI/UserInterface.py" line="5417"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7270"/>
+        <location filename="../UI/UserInterface.py" line="7304"/>
         <source>Select Workspace Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
+        <location filename="../UI/UserInterface.py" line="1891"/>
         <source>Left Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1869"/>
+        <location filename="../UI/UserInterface.py" line="1903"/>
         <source>Right Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1721"/>
+        <location filename="../UI/UserInterface.py" line="1755"/>
         <source>Switch the input focus to the Project-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1723"/>
+        <location filename="../UI/UserInterface.py" line="1757"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1738"/>
+        <location filename="../UI/UserInterface.py" line="1772"/>
         <source>Switch the input focus to the Multiproject-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1740"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1756"/>
-        <source>Switch the input focus to the Debug-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1758"/>
-        <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"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1774"/>
-        <source>Switch the input focus to the Shell window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1776"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
-        <source>&amp;File-Browser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1791"/>
-        <source>Switch the input focus to the File-Browser window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1793"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1802"/>
-        <source>Lo&amp;g-Viewer</source>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1790"/>
+        <source>Switch the input focus to the Debug-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1792"/>
+        <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"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1808"/>
-        <source>Switch the input focus to the Log-Viewer window.</source>
+        <source>Switch the input focus to the Shell window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1810"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1819"/>
+        <source>&amp;File-Browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1825"/>
+        <source>Switch the input focus to the File-Browser window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1827"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1836"/>
+        <source>Lo&amp;g-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1842"/>
+        <source>Switch the input focus to the Log-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1844"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
+        <location filename="../UI/UserInterface.py" line="1854"/>
         <source>&amp;Task-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1826"/>
-        <source>Switch the input focus to the Task-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
-        <source>Templ&amp;ate-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1845"/>
-        <source>Switch the input focus to the Template-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1847"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
-        <source>&amp;Left Toolbox</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1860"/>
-        <source>Toggle the Left Toolbox window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1861"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1869"/>
-        <source>&amp;Right Toolbox</source>
+        <source>Switch the input focus to the Task-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1873"/>
+        <source>Templ&amp;ate-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1879"/>
+        <source>Switch the input focus to the Template-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1881"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1891"/>
+        <source>&amp;Left Toolbox</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1894"/>
+        <source>Toggle the Left Toolbox window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1895"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1903"/>
+        <source>&amp;Right Toolbox</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1907"/>
         <source>Toggle the Right Toolbox window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1874"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1909"/>
+        <location filename="../UI/UserInterface.py" line="1943"/>
         <source>Right Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1909"/>
+        <location filename="../UI/UserInterface.py" line="1943"/>
         <source>&amp;Right Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1913"/>
+        <location filename="../UI/UserInterface.py" line="1947"/>
         <source>Toggle the right sidebar window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1915"/>
+        <location filename="../UI/UserInterface.py" line="1949"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Cooperation-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Co&amp;operation-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1944"/>
+        <location filename="../UI/UserInterface.py" line="1978"/>
         <source>Switch the input focus to the Cooperation-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1946"/>
+        <location filename="../UI/UserInterface.py" line="1980"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>Symbols-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>S&amp;ymbols-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1981"/>
+        <location filename="../UI/UserInterface.py" line="2015"/>
         <source>Switch the input focus to the Symbols-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1983"/>
+        <location filename="../UI/UserInterface.py" line="2017"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Numbers-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Num&amp;bers-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2000"/>
+        <location filename="../UI/UserInterface.py" line="2034"/>
         <source>Switch the input focus to the Numbers-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2002"/>
+        <location filename="../UI/UserInterface.py" line="2036"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3141"/>
+        <location filename="../UI/UserInterface.py" line="3175"/>
         <source>&amp;Windows</source>
         <translation type="unfinished">&amp;Windows</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1828"/>
+        <location filename="../UI/UserInterface.py" line="1862"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>IRC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>&amp;IRC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1963"/>
+        <location filename="../UI/UserInterface.py" line="1997"/>
         <source>Switch the input focus to the IRC window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1965"/>
+        <location filename="../UI/UserInterface.py" line="1999"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2309"/>
+        <location filename="../UI/UserInterface.py" line="2343"/>
         <source>Qt-Designer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2309"/>
+        <location filename="../UI/UserInterface.py" line="2343"/>
         <source>Qt-&amp;Designer...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2314"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Start Qt-Designer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2315"/>
+        <location filename="../UI/UserInterface.py" line="2349"/>
         <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2335"/>
+        <location filename="../UI/UserInterface.py" line="2369"/>
         <source>Qt-Linguist</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2335"/>
+        <location filename="../UI/UserInterface.py" line="2369"/>
         <source>Qt-&amp;Linguist...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2340"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Start Qt-Linguist</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2341"/>
+        <location filename="../UI/UserInterface.py" line="2375"/>
         <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2831"/>
+        <location filename="../UI/UserInterface.py" line="2865"/>
         <source>Qt5 Documentation</source>
         <translation type="unfinished">Qt4 dokumentace {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2831"/>
+        <location filename="../UI/UserInterface.py" line="2865"/>
         <source>Qt&amp;5 Documentation</source>
         <translation type="unfinished">Qt&amp;4 dokumentace {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2835"/>
+        <location filename="../UI/UserInterface.py" line="2869"/>
         <source>Open Qt5 Documentation</source>
         <translation type="unfinished">Otevřít Qt4 dokumentaci {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2639"/>
+        <location filename="../UI/UserInterface.py" line="2673"/>
         <source>Manage SSL Certificates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2639"/>
+        <location filename="../UI/UserInterface.py" line="2673"/>
         <source>Manage SSL Certificates...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2644"/>
+        <location filename="../UI/UserInterface.py" line="2678"/>
         <source>Manage the saved SSL certificates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2646"/>
+        <location filename="../UI/UserInterface.py" line="2680"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2655"/>
+        <location filename="../UI/UserInterface.py" line="2689"/>
         <source>Edit Message Filters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2655"/>
+        <location filename="../UI/UserInterface.py" line="2689"/>
         <source>Edit Message Filters...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2660"/>
+        <location filename="../UI/UserInterface.py" line="2694"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2662"/>
+        <location filename="../UI/UserInterface.py" line="2696"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2846"/>
+        <location filename="../UI/UserInterface.py" line="2880"/>
         <source>PyQt5 Documentation</source>
         <translation type="unfinished">PyQt4 dokumentace {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2846"/>
+        <location filename="../UI/UserInterface.py" line="2880"/>
         <source>PyQt&amp;5 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2850"/>
+        <location filename="../UI/UserInterface.py" line="2884"/>
         <source>Open PyQt5 Documentation</source>
         <translation type="unfinished">Otevřít PyQt4 dokumentaci {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5687"/>
+        <location filename="../UI/UserInterface.py" line="5721"/>
         <source>&lt;p&gt;The PyQt5 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Adresář PyQt4 dokumentace není nakonfigurován.&lt;/p&gt; {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2873"/>
+        <location filename="../UI/UserInterface.py" line="2907"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6989"/>
+        <location filename="../UI/UserInterface.py" line="7023"/>
         <source>%v/%m</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2174"/>
+        <location filename="../UI/UserInterface.py" line="2208"/>
         <source>Show Error Log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2170"/>
+        <location filename="../UI/UserInterface.py" line="2204"/>
         <source>Show Error &amp;Log...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2175"/>
+        <location filename="../UI/UserInterface.py" line="2209"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6993"/>
+        <location filename="../UI/UserInterface.py" line="7027"/>
         <source>Version Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1668"/>
+        <location filename="../UI/UserInterface.py" line="1702"/>
         <source>Open a new eric6 instance</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1670"/>
+        <location filename="../UI/UserInterface.py" line="1704"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric6 IDE.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2113"/>
+        <location filename="../UI/UserInterface.py" line="2147"/>
         <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric6 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 search in the Qt help collection.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Prohlížeč nápovědy&lt;/b&gt;&lt;p&gt;Otevře se eric5 web prohlížeč. Toto okno zobrazuje HTML soubory s nápovědou z Qt kolekce. Má schopnosti navigovat přes odkazy, nastavovat záložky, tisknout zobrazenou nápovědu a další možnosti. Můžete jej také použít pro procházení internetem&lt;/p&gt;&lt;p&gt;Je-li otevřen s hledaným slovem, je toto slovo hledáno v Qt nápovědách.&lt;/p&gt; {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2148"/>
+        <location filename="../UI/UserInterface.py" line="2182"/>
         <source>&lt;b&gt;Check for Updates...&lt;/b&gt;&lt;p&gt;Checks the internet for updates of eric6.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Zjistit aktualizace&lt;/b&gt;&lt;p&gt;Zkontroluje přes internet jestli existují nějaké aktualizace Eric5.&lt;/p&gt; {6.?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2161"/>
+        <location filename="../UI/UserInterface.py" line="2195"/>
         <source>&lt;b&gt;Show downloadable versions...&lt;/b&gt;&lt;p&gt;Shows the eric6 versions available for download from the internet.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Zobrazit dostupné verze ke stažení&lt;/b&gt;&lt;p&gt;Zobrazit dostupné verze eric5 pro stažení z internetu.&lt;/p&gt; {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2445"/>
+        <location filename="../UI/UserInterface.py" line="2479"/>
         <source>eric6 Web Browser</source>
         <translation type="unfinished">eric5 web prohlížeč {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2445"/>
+        <location filename="../UI/UserInterface.py" line="2479"/>
         <source>eric6 &amp;Web Browser...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2450"/>
+        <location filename="../UI/UserInterface.py" line="2484"/>
         <source>Start the eric6 Web Browser</source>
         <translation type="unfinished">Spustit eric5 web prohlížeč {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2452"/>
+        <location filename="../UI/UserInterface.py" line="2486"/>
         <source>&lt;b&gt;eric6 Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric6 Web Browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2466"/>
+        <location filename="../UI/UserInterface.py" line="2500"/>
         <source>Start the eric6 Icon Editor</source>
         <translation type="unfinished">Spustit eric5 editor ikon {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2468"/>
+        <location filename="../UI/UserInterface.py" line="2502"/>
         <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Icon Editor for editing simple icons.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Editor ikon&lt;/b&gt;&lt;p&gt;Spustí se eric5 editor ikon pro jednoduchou editaci ikon.&lt;/p&gt; {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2554"/>
+        <location filename="../UI/UserInterface.py" line="2588"/>
         <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 eric6.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Zobrazit externí nástroje&lt;/b&gt;&lt;p&gt;Otevře dialog pro zobrazení cesty a verze externích nástrojů používaných Eric5.&lt;/p&gt; {6.?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2895"/>
+        <location filename="../UI/UserInterface.py" line="2929"/>
         <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 eric6 installation directory.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Eric API dokumentace&lt;/b&gt;&lt;p&gt;Zobrazit Eric API dokumentaci. Umístění dokumentace je v podadresáři Documentation/Source v instalačním adresáři eric5.&lt;/p&gt; {6 ?}</translation>
     </message>
@@ -79778,393 +79798,393 @@
         <translation type="obsolete">Qt v.3 není podporováno v eric5. {3 ?} {6.?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7156"/>
+        <location filename="../UI/UserInterface.py" line="7190"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric6 is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation type="unfinished">Aktualizace &lt;b&gt;{0}&lt;/b&gt; eric5 je připravena na &lt;b&gt;{1}&lt;/b&gt;. Chcete ji stáhnout a nainstalovat? {0}?} {6 ?} {1}?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7168"/>
+        <location filename="../UI/UserInterface.py" line="7202"/>
         <source>Eric6 is up to date</source>
         <translation type="unfinished">Eric5 je aktuální {6 ?}</translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="7202"/>
+        <source>You are using the latest version of eric6</source>
+        <translation type="unfinished">Používáte poslední verzi eric6</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7285"/>
+        <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
+        <translation type="unfinished">eric5 nebyl ještě nakonfigurován. Bude spuštěn konfigurační dialog. {6 ?}</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="673"/>
+        <source>Generating Plugins Toolbars...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4155"/>
+        <source>&amp;User Tools</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4227"/>
+        <source>No User Tools Configured</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7043"/>
+        <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2464"/>
+        <source>Hex Editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2464"/>
+        <source>&amp;Hex Editor...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2469"/>
+        <source>Start the eric6 Hex Editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2471"/>
+        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2712"/>
+        <source>Clear private data</source>
+        <translation type="unfinished">Smazat soukromá data</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2714"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1670"/>
+        <source>Save session...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1675"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6592"/>
+        <source>Load session</source>
+        <translation type="unfinished">Načíst relaci</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1683"/>
+        <source>Load session...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1688"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6592"/>
+        <source>eric6 Session Files (*.e5s)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6643"/>
+        <source>Crash Session found!</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6643"/>
+        <source>A session file of a crashed session was found. Shall this session be restored?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="676"/>
+        <source>Cleaning Plugins Download Area...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="668"/>
+        <source>Initializing Plugins...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7178"/>
+        <source>Update Check</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7178"/>
+        <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="7168"/>
-        <source>You are using the latest version of eric6</source>
-        <translation type="unfinished">Používáte poslední verzi eric6</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7251"/>
-        <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
-        <translation type="unfinished">eric5 nebyl ještě nakonfigurován. Bude spuštěn konfigurační dialog. {6 ?}</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="672"/>
-        <source>Generating Plugins Toolbars...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4121"/>
-        <source>&amp;User Tools</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4193"/>
-        <source>No User Tools Configured</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7009"/>
-        <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2430"/>
-        <source>Hex Editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2430"/>
-        <source>&amp;Hex Editor...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2435"/>
-        <source>Start the eric6 Hex Editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2437"/>
-        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2678"/>
-        <source>Clear private data</source>
-        <translation type="unfinished">Smazat soukromá data</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2680"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1636"/>
-        <source>Save session...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1641"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6558"/>
-        <source>Load session</source>
-        <translation type="unfinished">Načíst relaci</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
-        <source>Load session...</source>
+        <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2047"/>
+        <source>Code Documentation Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2870"/>
+        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2886"/>
+        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2944"/>
+        <source>PySide2 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2944"/>
+        <source>PySide&amp;2 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2948"/>
+        <source>Open PySide2 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2950"/>
+        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5826"/>
+        <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2820"/>
+        <source>Virtualenv Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2814"/>
+        <source>&amp;Virtualenv Manager...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2822"/>
+        <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2837"/>
+        <source>Virtualenv Configurator</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2831"/>
+        <source>Virtualenv &amp;Configurator...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2839"/>
+        <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3182"/>
+        <source>Left Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3194"/>
+        <source>Bottom Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3201"/>
+        <source>Right Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3221"/>
+        <source>Plug-ins</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1654"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6558"/>
-        <source>eric6 Session Files (*.e5s)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6609"/>
-        <source>Crash Session found!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6609"/>
-        <source>A session file of a crashed session was found. Shall this session be restored?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="675"/>
-        <source>Cleaning Plugins Download Area...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="667"/>
-        <source>Initializing Plugins...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7144"/>
-        <source>Update Check</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7144"/>
-        <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7134"/>
-        <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2013"/>
-        <source>Code Documentation Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2836"/>
-        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2852"/>
-        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2910"/>
-        <source>PySide2 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2910"/>
-        <source>PySide&amp;2 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2914"/>
-        <source>Open PySide2 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2916"/>
-        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5792"/>
-        <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2786"/>
-        <source>Virtualenv Manager</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2780"/>
-        <source>&amp;Virtualenv Manager...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2788"/>
-        <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2803"/>
-        <source>Virtualenv Configurator</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2797"/>
-        <source>Virtualenv &amp;Configurator...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2805"/>
-        <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3148"/>
-        <source>Left Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3160"/>
-        <source>Bottom Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3167"/>
-        <source>Right Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3187"/>
-        <source>Plug-ins</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1620"/>
         <source>Restart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1620"/>
+        <location filename="../UI/UserInterface.py" line="1654"/>
         <source>Ctrl+Shift+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1626"/>
+        <location filename="../UI/UserInterface.py" line="1660"/>
         <source>Restart the IDE</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1627"/>
+        <location filename="../UI/UserInterface.py" line="1661"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5966"/>
+        <location filename="../UI/UserInterface.py" line="6000"/>
         <source>Start Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5905"/>
+        <location filename="../UI/UserInterface.py" line="5939"/>
         <source>The eric6 web browser could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5966"/>
+        <location filename="../UI/UserInterface.py" line="6000"/>
         <source>&lt;p&gt;The eric6 web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
+        <location filename="../UI/UserInterface.py" line="2085"/>
         <source>Conda</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2033"/>
+        <location filename="../UI/UserInterface.py" line="2067"/>
         <source>PyPI</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3498"/>
+        <location filename="../UI/UserInterface.py" line="3532"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2069"/>
+        <location filename="../UI/UserInterface.py" line="2103"/>
         <source>MicroPython</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>Ctrl+Alt+Shift+I</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2013"/>
+        <location filename="../UI/UserInterface.py" line="2047"/>
         <source>Ctrl+Alt+Shift+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2019"/>
+        <location filename="../UI/UserInterface.py" line="2053"/>
         <source>Switch the input focus to the Code Documentation Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2022"/>
+        <location filename="../UI/UserInterface.py" line="2056"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2033"/>
+        <location filename="../UI/UserInterface.py" line="2067"/>
         <source>Ctrl+Alt+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2039"/>
+        <location filename="../UI/UserInterface.py" line="2073"/>
         <source>Switch the input focus to the PyPI window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2041"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
-        <source>Ctrl+Alt+Shift+C</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2057"/>
-        <source>Switch the input focus to the Conda window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2059"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2069"/>
-        <source>Ctrl+Alt+Shift+M</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2075"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2085"/>
+        <source>Ctrl+Alt+Shift+C</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2091"/>
+        <source>Switch the input focus to the Conda window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2093"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2103"/>
+        <source>Ctrl+Alt+Shift+M</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2109"/>
         <source>Switch the input focus to the MicroPython window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2077"/>
+        <location filename="../UI/UserInterface.py" line="2111"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3145"/>
+        <location filename="../UI/UserInterface.py" line="3179"/>
         <source>Central Park</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3672"/>
+        <location filename="../UI/UserInterface.py" line="3706"/>
         <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="5009"/>
+        <location filename="../UI/UserInterface.py" line="5043"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5079"/>
+        <location filename="../UI/UserInterface.py" line="5113"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5123"/>
+        <location filename="../UI/UserInterface.py" line="5157"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2182"/>
+        <location filename="../UI/UserInterface.py" line="2216"/>
         <source>Show Install Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2182"/>
+        <location filename="../UI/UserInterface.py" line="2216"/>
         <source>Show Install &amp;Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2186"/>
+        <location filename="../UI/UserInterface.py" line="2220"/>
         <source>Show Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2188"/>
+        <location filename="../UI/UserInterface.py" line="2222"/>
         <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"></translation>
     </message>
@@ -84636,6 +84656,21 @@
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="744"/>
+        <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the shell window. A dialog is shown to enter the search text and options for the search.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="765"/>
+        <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="786"/>
+        <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
@@ -85103,32 +85138,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="323"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="333"/>
         <source>&lt;virtualenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="341"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="351"/>
         <source>&lt;No suitable virtualenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="343"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="353"/>
         <source>virtualenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="377"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="387"/>
         <source>&lt;pyvenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="397"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="407"/>
         <source>&lt;No suitable pyvenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="399"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="409"/>
         <source>pyvenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -85263,7 +85298,7 @@
         <translation type="unfinished">Textové soubory (*.txt);;Všechny soubory (*)</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="411"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="421"/>
         <source>conda Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
Binary file eric6/i18n/eric6_de.qm has changed
--- a/eric6/i18n/eric6_de.ts	Wed Nov 11 17:51:36 2020 +0100
+++ b/eric6/i18n/eric6_de.ts	Sat Nov 14 11:50:43 2020 +0100
@@ -38179,52 +38179,52 @@
         <translation>Bemerkungen:</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="71"/>
+        <location filename="../UI/InstallInfoDialog.py" line="70"/>
         <source>Yes</source>
         <translation>Ja</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="71"/>
+        <location filename="../UI/InstallInfoDialog.py" line="70"/>
         <source>No</source>
         <translation>Nein</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="75"/>
+        <location filename="../UI/InstallInfoDialog.py" line="74"/>
         <source>&apos;eric-ide&apos; was installed from PyPI using the pip command.</source>
         <translation>&apos;eric-ide&apos; wurde von PyPI mittel pip Befehl installiert.</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="81"/>
+        <location filename="../UI/InstallInfoDialog.py" line="80"/>
         <source>The information shown in this dialog was guessed at the first start of eric.</source>
         <translation>Die in diesem Dialog angezeigte Information wurde beim ersten Start von eric erraten.</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="99"/>
+        <location filename="../UI/InstallInfoDialog.py" line="98"/>
         <source>Load Install Information</source>
         <translation>Installationsinformation laden</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="99"/>
+        <location filename="../UI/InstallInfoDialog.py" line="98"/>
         <source>&lt;p&gt;The file containing the install information could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei mit den Installationsinformationen konnte nicht geladen werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="151"/>
+        <location filename="../UI/InstallInfoDialog.py" line="150"/>
         <source>Install Information</source>
         <translation>Installationsinformationen</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="151"/>
+        <location filename="../UI/InstallInfoDialog.py" line="150"/>
         <source>The install information was edited. Unsaved changes will be lost. Save first?</source>
         <translation>Die Installationsinformation wurde editiert. Ungesicherte Änderungen gehen verloren. Sichern?</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="188"/>
+        <location filename="../UI/InstallInfoDialog.py" line="187"/>
         <source>Save Install Information</source>
         <translation>Installationsinformation sichern</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="188"/>
+        <location filename="../UI/InstallInfoDialog.py" line="187"/>
         <source>&lt;p&gt;The file containing the install information could not be written.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei mit den Installationsinformationen konnte nicht geschrieben werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
@@ -38234,17 +38234,17 @@
         <translation>Installationszeitpunkt:</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="61"/>
+        <location filename="../UI/InstallInfoDialog.py" line="60"/>
         <source>Installed as Administrator:</source>
         <translation>Als Administrator installiert:</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="63"/>
+        <location filename="../UI/InstallInfoDialog.py" line="62"/>
         <source>Installed with sudo:</source>
         <translation>Mit &apos;sudo&apos; installiert:</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="93"/>
+        <location filename="../UI/InstallInfoDialog.py" line="92"/>
         <source>unknown</source>
         <translation>unbekannt</translation>
     </message>
@@ -38254,32 +38254,32 @@
         <translation>Installiert von:</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="87"/>
+        <location filename="../UI/InstallInfoDialog.py" line="86"/>
         <source>The installation information was provided by the user.</source>
         <translation>Die Installationsinformationen wurden durch den Nutzer eingegeben.</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="39"/>
+        <location filename="../UI/InstallInfoDialog.py" line="38"/>
         <source>Delete Info</source>
         <translation>Info löschen</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="255"/>
+        <location filename="../UI/InstallInfoDialog.py" line="254"/>
         <source>Upgrade Instructions</source>
         <translation>Aktualisierungsanweisungen</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="201"/>
+        <location filename="../UI/InstallInfoDialog.py" line="200"/>
         <source>Delete Installation Information</source>
         <translation>Löscht die Installationsinformationen</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="201"/>
+        <location filename="../UI/InstallInfoDialog.py" line="200"/>
         <source>Do you really want to delete the installation information? It will be recreated at the next start.</source>
         <translation>Sollen die Installationsinformationen wirklich gelöscht werden? Sie werden beim nächsten Start neu erzeugt.</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="228"/>
+        <location filename="../UI/InstallInfoDialog.py" line="227"/>
         <source>Perform the following step(s) with Administrator privileges.
 </source>
         <translation>Führe die folgenden Schritte mit Administratorrechten aus.
@@ -47822,12 +47822,12 @@
         <translation>Fehler</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="143"/>
+        <location filename="../PipInterface/PipDialog.py" line="146"/>
         <source>Process Generation Error</source>
         <translation>Prozessfehler</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="143"/>
+        <location filename="../PipInterface/PipDialog.py" line="146"/>
         <source>The process {0} could not be started.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden.</translation>
     </message>
@@ -48506,7 +48506,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="910"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="911"/>
         <source>Search PyPI</source>
         <translation>PyPI durchsuchen</translation>
     </message>
@@ -48526,102 +48526,102 @@
         <translation>Fehler: {0}</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="872"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="873"/>
         <source>Show Package Details</source>
         <translation>Paketdetails anzeigen</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="872"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="873"/>
         <source>Select the package version:</source>
         <translation>Wähle die Paketversion aus:</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="910"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="911"/>
         <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Keine detaillierten Paketinformationen für &lt;b&gt;{0}&lt;/b&gt; verfügbar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="926"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="927"/>
         <source>Install Pip</source>
         <translation>Pip installieren</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="929"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="930"/>
         <source>Install Pip to User-Site</source>
         <translation>Pip in Nutzerverzeichnis installieren</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="932"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="933"/>
         <source>Repair Pip</source>
         <translation>Pip reparieren</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1046"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1050"/>
         <source>Install Packages</source>
         <translation>Pakete installieren</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="939"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="940"/>
         <source>Install Local Package</source>
         <translation>Lokales Paket installieren</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="943"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
         <source>Install Requirements</source>
         <translation>Paketanforderungen installieren</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="946"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="947"/>
         <source>Uninstall Requirements</source>
         <translation>Paketanforderungen deinstallieren</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="949"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="950"/>
         <source>Generate Requirements...</source>
         <translation>Anforderungen erzeugen...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="967"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="968"/>
         <source>Edit User Configuration...</source>
         <translation>Nutzerkonfiguration bearbeiten...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="970"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="971"/>
         <source>Edit Environment Configuration...</source>
         <translation>Umgebungskonfiguration bearbeiten...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="975"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="976"/>
         <source>Configure...</source>
         <translation>Einstellungen...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1158"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1166"/>
         <source>Edit Configuration</source>
         <translation>Konfiguration bearbeiten</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1158"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1166"/>
         <source>No valid configuration path determined. Aborting</source>
         <translation>Es konnte kein gültiger Konfigurationspfad ermittelt werden. Abbruch</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="953"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="954"/>
         <source>Show Cache Info...</source>
         <translation>Zwischenspeicherinfo...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="956"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="957"/>
         <source>Show Cached Files...</source>
         <translation>Zwischengespeicherte Dateien...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="960"/>
         <source>Remove Cached Files...</source>
         <translation>Zwischengespeicherte Dateien löschen...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="962"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="963"/>
         <source>Purge Cache...</source>
         <translation>Zwischenspeicher leeren...</translation>
     </message>
@@ -61438,231 +61438,251 @@
         <translation>Shell neu starten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="242"/>
-        <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected language.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Neu starten&lt;/b&gt;&lt;p&gt;Dies startet die Shell für die aktuell ausgewählte Sprache neu.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="249"/>
+        <location filename="../QScintilla/ShellWindow.py" line="250"/>
         <source>Restart and Clear</source>
         <translation>Neu starten und löschen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="254"/>
+        <location filename="../QScintilla/ShellWindow.py" line="255"/>
         <source>Clear the window and restart the shell</source>
         <translation>Löscht das Fenster und startet die Shell neu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="256"/>
-        <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected language.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Neu starten und löschen&lt;/b&gt;&lt;p&gt;Löscht das Shell Fenster und startet die Shell für die aktuell ausgewählte Sprache neu.&lt;/p&gt;</translation>
+        <location filename="../QScintilla/ShellWindow.py" line="885"/>
+        <source>Show History</source>
+        <translation>Chronik anzeigen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="885"/>
+        <source>&amp;Show History...</source>
+        <translation>Chronik &amp;anzeigen...</translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="891"/>
-        <source>Show History</source>
-        <translation>Chronik anzeigen</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="891"/>
-        <source>&amp;Show History...</source>
-        <translation>Chronik &amp;anzeigen...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="897"/>
         <source>Show the shell history in a dialog</source>
         <translation>Zeigt die Shell Chronik in einem Dialog an</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="901"/>
+        <location filename="../QScintilla/ShellWindow.py" line="895"/>
         <source>Clear History</source>
         <translation>Chronik löschen</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="895"/>
+        <source>&amp;Clear History...</source>
+        <translation>Chronik &amp;löschen...</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="901"/>
-        <source>&amp;Clear History...</source>
-        <translation>Chronik &amp;löschen...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="907"/>
         <source>Clear the shell history</source>
         <translation>Löscht die Shell Chronik</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="911"/>
+        <location filename="../QScintilla/ShellWindow.py" line="905"/>
         <source>Select History Entry</source>
         <translation>Chronikeintrag auswählen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="911"/>
+        <location filename="../QScintilla/ShellWindow.py" line="905"/>
         <source>Select History &amp;Entry</source>
         <translation>Chronik&amp;eintrag auswählen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="916"/>
+        <location filename="../QScintilla/ShellWindow.py" line="910"/>
         <source>Select an entry of the shell history</source>
         <translation>Wählt einen Eintrag in der Shell Chronik aus</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="924"/>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
         <source>About</source>
         <translation>Über</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
+        <source>&amp;About</source>
+        <translation>Ü&amp;ber</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="922"/>
+        <source>Display information about this software</source>
+        <translation>Zeigt Informationen zu diesem Programm an</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="924"/>
-        <source>&amp;About</source>
-        <translation>Ü&amp;ber</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="928"/>
-        <source>Display information about this software</source>
-        <translation>Zeigt Informationen zu diesem Programm an</translation>
+        <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Über&lt;/b&gt;&lt;p&gt;Zeigt einige Informationen über dieses Programm an.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="930"/>
-        <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Über&lt;/b&gt;&lt;p&gt;Zeigt einige Informationen über dieses Programm an.&lt;/p&gt;</translation>
+        <source>About Qt</source>
+        <translation>Über Qt</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="930"/>
+        <source>About &amp;Qt</source>
+        <translation>Über &amp;Qt</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <source>Display information about the Qt toolkit</source>
+        <translation>Zeige Informationen über das Qt-Toolkit an</translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="936"/>
-        <source>About Qt</source>
-        <translation>Über Qt</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="936"/>
-        <source>About &amp;Qt</source>
-        <translation>Über &amp;Qt</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="940"/>
-        <source>Display information about the Qt toolkit</source>
-        <translation>Zeige Informationen über das Qt-Toolkit an</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="942"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Über Qt&lt;/b&gt;&lt;p&gt;Zeige Informationen über das Qt-Toolkit an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
         <source>What&apos;s This?</source>
         <translation>Was ist das?</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
+        <source>&amp;What&apos;s This?</source>
+        <translation>&amp;Was ist das?</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
+        <source>Shift+F1</source>
+        <comment>Help|What&apos;s This?&apos;</comment>
+        <translation>Shift+F1</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="949"/>
-        <source>&amp;What&apos;s This?</source>
-        <translation>&amp;Was ist das?</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
-        <source>Shift+F1</source>
-        <comment>Help|What&apos;s This?&apos;</comment>
-        <translation>Shift+F1</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="955"/>
         <source>Context sensitive help</source>
         <translation>Kontextsensitive Hilfe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="956"/>
+        <location filename="../QScintilla/ShellWindow.py" line="950"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;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 HMI-Element angezeigt. In Dialogen kann diese Funktionalität durch den entsprechenden Knopf im Fensterkopf erreicht werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1100"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1094"/>
         <source>About eric6 Shell Window</source>
         <translation>Über das eric6 Shell Fenster</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1100"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1094"/>
         <source>The eric6 Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
         <translation>Die eric6 Shell ist ein unabhängiges Shell Fenster. Es verwendet das gleiche Debugger Backend wie die vollständige IDE, wird aber unabhängig ausgeführt.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1128"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1122"/>
         <source>&amp;File</source>
         <translation>&amp;Datei</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1137"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1131"/>
         <source>&amp;Edit</source>
         <translation>&amp;Bearbeiten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1148"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1142"/>
         <source>&amp;View</source>
         <translation>&amp;Ansicht</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1155"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1149"/>
         <source>Histor&amp;y</source>
         <translation>&amp;Chronik</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1156"/>
+        <source>&amp;Start</source>
+        <translation>&amp;Starten</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1162"/>
-        <source>&amp;Start</source>
-        <translation>&amp;Starten</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1168"/>
         <source>&amp;Help</source>
         <translation>&amp;Hilfe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1201"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1195"/>
         <source>File</source>
         <translation>Datei</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1210"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1204"/>
         <source>Edit</source>
         <translation>Bearbeiten</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1211"/>
+        <source>Find</source>
+        <translation>Suchen</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1217"/>
-        <source>Find</source>
-        <translation>Suchen</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1223"/>
         <source>View</source>
         <translation>Anzeigen</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1224"/>
+        <source>History</source>
+        <translation>Chronik</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1230"/>
-        <source>History</source>
-        <translation>Chronik</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1236"/>
         <source>Help</source>
         <translation>Hilfe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1257"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1251"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dieser Teil der Statusleiste ermöglicht das Zoomen der Shell.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="585"/>
+        <location filename="../QScintilla/ShellWindow.py" line="579"/>
         <source>Move forward one history entry</source>
         <translation>Einen Chronikeintrag vorwärts</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="595"/>
+        <location filename="../QScintilla/ShellWindow.py" line="589"/>
         <source>Move back one history entry</source>
         <translation>Einen Chronikeintrag zurück</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1036"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1030"/>
         <source>eric6 Shell</source>
         <translation>eric6 Shell</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1034"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1028"/>
         <source>eric6 Shell [{0}]</source>
         <translation>eric6 Shell [{0}]</translation>
     </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="242"/>
+        <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected environment.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Neu starten&lt;/b&gt;&lt;p&gt;Dies startet die Shell für die aktuell ausgewählte Umgebung neu.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="257"/>
+        <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected environment.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Neu starten und löschen&lt;/b&gt;&lt;p&gt;Löscht das Shell Fenster und startet die Shell für die aktuell ausgewählte Umgebung neu.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="284"/>
+        <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text to the clipboard.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Ausschneiden&lt;/b&gt;&lt;p&gt;Schneidet den ausgewählten Text aus und legt ihn in die Zwischenablage.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="302"/>
+        <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Kopieren&lt;/b&gt;&lt;p&gt;Kopiert den ausgewählten Text in die Zwischenablage.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="320"/>
+        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Einfügen&lt;/b&gt;&lt;p&gt;Fügt den Text der Zwischenablage ein.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="337"/>
+        <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Alles Löschen&lt;/b&gt;&lt;p&gt;Dies löscht den gesamten Text.&lt;/p&gt;</translation>
+    </message>
 </context>
 <context>
     <name>Shelve</name>
@@ -73888,2300 +73908,2300 @@
 <context>
     <name>UserInterface</name>
     <message>
-        <location filename="../UI/UserInterface.py" line="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>What&apos;s This?</source>
         <translation>Was ist das?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2093"/>
+        <location filename="../UI/UserInterface.py" line="2127"/>
         <source>Context sensitive help</source>
         <translation>Kontextsensitive Hilfe</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2094"/>
+        <location filename="../UI/UserInterface.py" line="2128"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;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="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>Helpviewer</source>
         <translation>Hilfe</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>&amp;Helpviewer...</source>
         <translation>&amp;Hilfe...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2111"/>
+        <location filename="../UI/UserInterface.py" line="2145"/>
         <source>Open the helpviewer window</source>
         <translation>Öffnet das Hilfe-Fenster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3279"/>
+        <location filename="../UI/UserInterface.py" line="3313"/>
         <source>Unittest</source>
         <translation>Modultests</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2223"/>
+        <location filename="../UI/UserInterface.py" line="2257"/>
         <source>&amp;Unittest...</source>
         <translation>&amp;Modultests...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2228"/>
+        <location filename="../UI/UserInterface.py" line="2262"/>
         <source>Start unittest dialog</source>
         <translation>Starte den Modultest Dialog</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3132"/>
+        <location filename="../UI/UserInterface.py" line="3166"/>
         <source>&amp;Window</source>
         <translation>&amp;Fenster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3207"/>
+        <location filename="../UI/UserInterface.py" line="3241"/>
         <source>&amp;Help</source>
         <translation>&amp;Hilfe</translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="1637"/>
+        <source>Quit</source>
+        <translation>Beenden</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2524"/>
+        <source>Preferences</source>
+        <translation>Einstellungen</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2524"/>
+        <source>&amp;Preferences...</source>
+        <translation>&amp;Einstellungen...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2529"/>
+        <source>Set the prefered configuration</source>
+        <translation>Konfiguriert die Einstellungen</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2531"/>
+        <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="1643"/>
+        <source>Quit the IDE</source>
+        <translation>Beenden der Entwicklungsumgebung</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3312"/>
+        <source>Tools</source>
+        <translation>Werkzeuge</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5181"/>
+        <source>Help</source>
+        <translation>Hilfe</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3227"/>
+        <source>&amp;Toolbars</source>
+        <translation>&amp;Werkzeugleisten</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5309"/>
+        <source>Problem</source>
+        <translation>Problem</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1637"/>
+        <source>&amp;Quit</source>
+        <translation>B&amp;eenden</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1644"/>
+        <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="2121"/>
+        <source>&amp;What&apos;s This?</source>
+        <translation>&amp;Was ist das?</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5504"/>
+        <source>Process Generation Error</source>
+        <translation>Fehler beim Prozessstart</translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="1603"/>
-        <source>Quit</source>
-        <translation>Beenden</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2490"/>
-        <source>Preferences</source>
-        <translation>Einstellungen</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2490"/>
-        <source>&amp;Preferences...</source>
-        <translation>&amp;Einstellungen...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2495"/>
-        <source>Set the prefered configuration</source>
-        <translation>Konfiguriert die Einstellungen</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2497"/>
-        <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="1609"/>
-        <source>Quit the IDE</source>
-        <translation>Beenden der Entwicklungsumgebung</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3278"/>
-        <source>Tools</source>
-        <translation>Werkzeuge</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5147"/>
-        <source>Help</source>
-        <translation>Hilfe</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3193"/>
-        <source>&amp;Toolbars</source>
-        <translation>&amp;Werkzeugleisten</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5275"/>
-        <source>Problem</source>
-        <translation>Problem</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1603"/>
-        <source>&amp;Quit</source>
-        <translation>B&amp;eenden</translation>
+        <source>{0} - Passive Mode</source>
+        <translation>{0} – Passiver Modus</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1610"/>
-        <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="2087"/>
-        <source>&amp;What&apos;s This?</source>
-        <translation>&amp;Was ist das?</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5470"/>
-        <source>Process Generation Error</source>
-        <translation>Fehler beim Prozessstart</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1569"/>
-        <source>{0} - Passive Mode</source>
-        <translation>{0} – Passiver Modus</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1576"/>
         <source>{0} - {1} - Passive Mode</source>
         <translation>{0} – {1} – Passiver Modus</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1802"/>
+        <location filename="../UI/UserInterface.py" line="1836"/>
         <source>Log-Viewer</source>
         <translation>Ausgabefenster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3280"/>
+        <location filename="../UI/UserInterface.py" line="3314"/>
         <source>Settings</source>
         <translation>Einstellungen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2131"/>
+        <location filename="../UI/UserInterface.py" line="2165"/>
         <source>Show Versions</source>
         <translation>Zeige Versionen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2131"/>
+        <location filename="../UI/UserInterface.py" line="2165"/>
         <source>Show &amp;Versions</source>
         <translation>Zeige &amp;Versionen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2135"/>
+        <location filename="../UI/UserInterface.py" line="2169"/>
         <source>Display version information</source>
         <translation>Zeigt Versionsinformationen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2137"/>
+        <location filename="../UI/UserInterface.py" line="2171"/>
         <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="2595"/>
+        <location filename="../UI/UserInterface.py" line="2629"/>
         <source>Keyboard Shortcuts</source>
         <translation>Tastaturkurzbefehle</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2595"/>
+        <location filename="../UI/UserInterface.py" line="2629"/>
         <source>Keyboard &amp;Shortcuts...</source>
         <translation>&amp;Tastaturkurzbefehle...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2600"/>
+        <location filename="../UI/UserInterface.py" line="2634"/>
         <source>Set the keyboard shortcuts</source>
         <translation>Setze die Tastaturkurzbefehle</translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="2636"/>
+        <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="3052"/>
+        <source>E&amp;xtras</source>
+        <translation>E&amp;xtras</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3779"/>
+        <source>Report Bug</source>
+        <translation>Fehler berichten</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2230"/>
+        <source>Report &amp;Bug...</source>
+        <translation>&amp;Fehler berichten...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2234"/>
+        <source>Report a bug</source>
+        <translation>Einen Fehler berichten</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2235"/>
+        <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="6251"/>
+        <source>Export Keyboard Shortcuts</source>
+        <translation>Tastaturkurzbefehle exportieren</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2644"/>
+        <source>&amp;Export Keyboard Shortcuts...</source>
+        <translation>Tastaturkurzbefehle &amp;exportieren...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2649"/>
+        <source>Export the keyboard shortcuts</source>
+        <translation>Exportiert die Tastaturkurzbefehle</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2651"/>
+        <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="6275"/>
+        <source>Import Keyboard Shortcuts</source>
+        <translation>Tastaturkurzbefehle importieren</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2658"/>
+        <source>&amp;Import Keyboard Shortcuts...</source>
+        <translation>Tastaturkurzbefehle &amp;importieren...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2663"/>
+        <source>Import the keyboard shortcuts</source>
+        <translation>Importiert die Tastaturkurzbefehle</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2665"/>
+        <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="278"/>
+        <source>Generating Main User Interface...</source>
+        <translation>Erzeuge das Hauptfenster...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="328"/>
+        <source>Setting up connections...</source>
+        <translation>Erstelle Verbindungen...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="628"/>
+        <source>Initializing Actions...</source>
+        <translation>Initialisiere Aktionen...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="630"/>
+        <source>Initializing Menus...</source>
+        <translation>Initialisiere Menüs...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="632"/>
+        <source>Initializing Toolbars...</source>
+        <translation>Initialisiere Werkzeugleisten...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="634"/>
+        <source>Initializing Statusbar...</source>
+        <translation>Initialisiere Statuszeile...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="585"/>
+        <source>Initializing Tools...</source>
+        <translation>Initialisiere Werkzeuge...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2263"/>
+        <source>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Perform unit tests. The dialog gives you the ability to select and run a unittest suite.&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.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2271"/>
+        <source>Unittest Restart</source>
+        <translation>Modultest neu starten</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2276"/>
+        <source>Restart last unittest</source>
+        <translation>Modultest neu starten</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2277"/>
+        <source>&lt;b&gt;Restart Unittest&lt;/b&gt;&lt;p&gt;Restart the unittest performed last.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Modultest neu starten&lt;/b&gt;&lt;p&gt;Den letzten durchgeführten Modultest neu starten.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2301"/>
+        <source>Unittest Script</source>
+        <translation>Modultest (Skript)</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2306"/>
+        <source>Run unittest with current script</source>
+        <translation>Modultest für aktuelles Skript ausführen</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2308"/>
+        <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Modultest (Skript)&lt;/b&gt;&lt;p&gt;Modultest für aktuelles Skript ausführen.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2316"/>
+        <source>Unittest Project</source>
+        <translation>Modultest (Projekt)</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2321"/>
+        <source>Run unittest with current project</source>
+        <translation>Modultest für aktuellesProjekt ausführen</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2323"/>
+        <source>&lt;b&gt;Unittest Project&lt;/b&gt;&lt;p&gt;Run unittest with current project.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Modultest (Projekt)&lt;/b&gt;&lt;p&gt;Modultest für aktuelles Projekt ausführen.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3108"/>
+        <source>&amp;Unittest</source>
+        <translation>&amp;Modultests</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2271"/>
+        <source>&amp;Restart Unittest...</source>
+        <translation>Modultest &amp;neu starten...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2301"/>
+        <source>Unittest &amp;Script...</source>
+        <translation>Modultest (&amp;Skript)...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2316"/>
+        <source>Unittest &amp;Project...</source>
+        <translation>Modultest (&amp;Projekt)...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2411"/>
+        <source>Compare Files</source>
+        <translation>Dateien vergleichen</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2411"/>
+        <source>&amp;Compare Files...</source>
+        <translation>Dateien &amp;vergleichen...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2429"/>
+        <source>Compare two files</source>
+        <translation>Zwei Dateien vergleichen</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2417"/>
+        <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="2424"/>
+        <source>Compare Files side by side</source>
+        <translation>Dateien Seite an Seite vergleichen</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2430"/>
+        <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="6838"/>
+        <source>Drop Error</source>
+        <translation>Drop-Fehler</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="661"/>
+        <source>Initializing Single Application Server...</source>
+        <translation>Initialisiere Applikationsserver...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1614"/>
+        <source>{0} - {1} - {2} - Passive Mode</source>
+        <translation>{0} . {1} – {2} – Passiver Modus</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1819"/>
+        <source>File-Browser</source>
+        <translation>Dateibrowser</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1715"/>
+        <source>Edit Profile</source>
+        <translation>Editieren-Profil</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1721"/>
+        <source>Activate the edit view profile</source>
+        <translation>Aktiviert das Editieren-Ansichtsprofil</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1723"/>
+        <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; 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="1732"/>
+        <source>Debug Profile</source>
+        <translation>Debuggen-Profil</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1738"/>
+        <source>Activate the debug view profile</source>
+        <translation>Aktiviert das Debuggen-Ansichtsprofil</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1740"/>
+        <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; 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="2597"/>
+        <source>View Profiles</source>
+        <translation>Ansichtenprofile</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2597"/>
+        <source>&amp;View Profiles...</source>
+        <translation>&amp;Ansichtenprofile...</translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="2602"/>
-        <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="3018"/>
-        <source>E&amp;xtras</source>
-        <translation>E&amp;xtras</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
-        <source>Report Bug</source>
-        <translation>Fehler berichten</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2196"/>
-        <source>Report &amp;Bug...</source>
-        <translation>&amp;Fehler berichten...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2200"/>
-        <source>Report a bug</source>
-        <translation>Einen Fehler berichten</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2201"/>
-        <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="6217"/>
-        <source>Export Keyboard Shortcuts</source>
-        <translation>Tastaturkurzbefehle exportieren</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2610"/>
-        <source>&amp;Export Keyboard Shortcuts...</source>
-        <translation>Tastaturkurzbefehle &amp;exportieren...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2615"/>
-        <source>Export the keyboard shortcuts</source>
-        <translation>Exportiert die Tastaturkurzbefehle</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2617"/>
-        <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="6241"/>
-        <source>Import Keyboard Shortcuts</source>
-        <translation>Tastaturkurzbefehle importieren</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2624"/>
-        <source>&amp;Import Keyboard Shortcuts...</source>
-        <translation>Tastaturkurzbefehle &amp;importieren...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2629"/>
-        <source>Import the keyboard shortcuts</source>
-        <translation>Importiert die Tastaturkurzbefehle</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2631"/>
-        <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="277"/>
-        <source>Generating Main User Interface...</source>
-        <translation>Erzeuge das Hauptfenster...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="327"/>
-        <source>Setting up connections...</source>
-        <translation>Erstelle Verbindungen...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="627"/>
-        <source>Initializing Actions...</source>
-        <translation>Initialisiere Aktionen...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="629"/>
-        <source>Initializing Menus...</source>
-        <translation>Initialisiere Menüs...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="631"/>
-        <source>Initializing Toolbars...</source>
-        <translation>Initialisiere Werkzeugleisten...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="633"/>
-        <source>Initializing Statusbar...</source>
-        <translation>Initialisiere Statuszeile...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="584"/>
-        <source>Initializing Tools...</source>
-        <translation>Initialisiere Werkzeuge...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2229"/>
-        <source>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Perform unit tests. The dialog gives you the ability to select and run a unittest suite.&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.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
-        <source>Unittest Restart</source>
-        <translation>Modultest neu starten</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2242"/>
-        <source>Restart last unittest</source>
-        <translation>Modultest neu starten</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2243"/>
-        <source>&lt;b&gt;Restart Unittest&lt;/b&gt;&lt;p&gt;Restart the unittest performed last.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Modultest neu starten&lt;/b&gt;&lt;p&gt;Den letzten durchgeführten Modultest neu starten.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2267"/>
-        <source>Unittest Script</source>
-        <translation>Modultest (Skript)</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2272"/>
-        <source>Run unittest with current script</source>
-        <translation>Modultest für aktuelles Skript ausführen</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2274"/>
-        <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Modultest (Skript)&lt;/b&gt;&lt;p&gt;Modultest für aktuelles Skript ausführen.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2282"/>
-        <source>Unittest Project</source>
-        <translation>Modultest (Projekt)</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2287"/>
-        <source>Run unittest with current project</source>
-        <translation>Modultest für aktuellesProjekt ausführen</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2289"/>
-        <source>&lt;b&gt;Unittest Project&lt;/b&gt;&lt;p&gt;Run unittest with current project.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Modultest (Projekt)&lt;/b&gt;&lt;p&gt;Modultest für aktuelles Projekt ausführen.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3074"/>
-        <source>&amp;Unittest</source>
-        <translation>&amp;Modultests</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
-        <source>&amp;Restart Unittest...</source>
-        <translation>Modultest &amp;neu starten...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2267"/>
-        <source>Unittest &amp;Script...</source>
-        <translation>Modultest (&amp;Skript)...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2282"/>
-        <source>Unittest &amp;Project...</source>
-        <translation>Modultest (&amp;Projekt)...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2377"/>
-        <source>Compare Files</source>
-        <translation>Dateien vergleichen</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2377"/>
-        <source>&amp;Compare Files...</source>
-        <translation>Dateien &amp;vergleichen...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2395"/>
-        <source>Compare two files</source>
-        <translation>Zwei Dateien vergleichen</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2383"/>
-        <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>
+        <source>Configure view profiles</source>
+        <translation>Ansichtenprofile konfigurieren</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2604"/>
+        <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="5309"/>
+        <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="5034"/>
+        <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="5104"/>
+        <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="5148"/>
+        <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="5504"/>
+        <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="6838"/>
+        <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="2384"/>
+        <source>UI Previewer</source>
+        <translation>UI-Vorschau</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2384"/>
+        <source>&amp;UI Previewer...</source>
+        <translation>&amp;UI-Vorschau...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2389"/>
+        <source>Start the UI Previewer</source>
+        <translation>Starte die UI-Vorschau</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2390"/>
-        <source>Compare Files side by side</source>
-        <translation>Dateien Seite an Seite vergleichen</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2396"/>
-        <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="6804"/>
-        <source>Drop Error</source>
-        <translation>Drop-Fehler</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="660"/>
-        <source>Initializing Single Application Server...</source>
-        <translation>Initialisiere Applikationsserver...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1580"/>
-        <source>{0} - {1} - {2} - Passive Mode</source>
-        <translation>{0} . {1} – {2} – Passiver Modus</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
-        <source>File-Browser</source>
-        <translation>Dateibrowser</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1681"/>
-        <source>Edit Profile</source>
-        <translation>Editieren-Profil</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1687"/>
-        <source>Activate the edit view profile</source>
-        <translation>Aktiviert das Editieren-Ansichtsprofil</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1689"/>
-        <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; 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="1698"/>
-        <source>Debug Profile</source>
-        <translation>Debuggen-Profil</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1704"/>
-        <source>Activate the debug view profile</source>
-        <translation>Aktiviert das Debuggen-Ansichtsprofil</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1706"/>
-        <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; 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="2563"/>
-        <source>View Profiles</source>
-        <translation>Ansichtenprofile</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2563"/>
-        <source>&amp;View Profiles...</source>
-        <translation>&amp;Ansichtenprofile...</translation>
+        <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="5265"/>
+        <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="2397"/>
+        <source>Translations Previewer</source>
+        <translation>Übersetzungsvorschau</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2397"/>
+        <source>&amp;Translations Previewer...</source>
+        <translation>&amp;Übersetzungsvorschau...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2402"/>
+        <source>Start the Translations Previewer</source>
+        <translation>Die Übersetzungsvorschau starten</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2404"/>
+        <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="5322"/>
+        <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="1802"/>
+        <source>Shell</source>
+        <translation>Shell</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1802"/>
+        <source>&amp;Shell</source>
+        <translation>&amp;Shell</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2568"/>
+        <source>Reload APIs</source>
+        <translation>APIs neu laden</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2568"/>
-        <source>Configure view profiles</source>
-        <translation>Ansichtenprofile konfigurieren</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2570"/>
-        <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="5275"/>
-        <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="5000"/>
-        <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="5070"/>
-        <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="5114"/>
-        <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="5470"/>
-        <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="6804"/>
-        <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="2350"/>
-        <source>UI Previewer</source>
-        <translation>UI-Vorschau</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2350"/>
-        <source>&amp;UI Previewer...</source>
-        <translation>&amp;UI-Vorschau...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2355"/>
-        <source>Start the UI Previewer</source>
-        <translation>Starte die UI-Vorschau</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2356"/>
-        <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="5231"/>
-        <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="2363"/>
-        <source>Translations Previewer</source>
-        <translation>Übersetzungsvorschau</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2363"/>
-        <source>&amp;Translations Previewer...</source>
-        <translation>&amp;Übersetzungsvorschau...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2368"/>
-        <source>Start the Translations Previewer</source>
-        <translation>Die Übersetzungsvorschau starten</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2370"/>
-        <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="5288"/>
-        <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="1768"/>
-        <source>Shell</source>
-        <translation>Shell</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
-        <source>&amp;Shell</source>
-        <translation>&amp;Shell</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2534"/>
-        <source>Reload APIs</source>
-        <translation>APIs neu laden</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2534"/>
         <source>Reload &amp;APIs</source>
         <translation>APIs &amp;neu laden</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2538"/>
+        <location filename="../UI/UserInterface.py" line="2572"/>
         <source>Reload the API information</source>
         <translation>Die API-Informationen neu laden</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2540"/>
+        <location filename="../UI/UserInterface.py" line="2574"/>
         <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="1820"/>
+        <location filename="../UI/UserInterface.py" line="1854"/>
         <source>Task-Viewer</source>
         <translation>Aufgabenanzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6411"/>
+        <location filename="../UI/UserInterface.py" line="6445"/>
         <source>Save tasks</source>
         <translation>Aufgaben speichern</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6411"/>
+        <location filename="../UI/UserInterface.py" line="6445"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Aufgabendatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht geschrieben werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6440"/>
+        <location filename="../UI/UserInterface.py" line="6474"/>
         <source>Read tasks</source>
         <translation>Aufgaben lesen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6440"/>
+        <location filename="../UI/UserInterface.py" line="6474"/>
         <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="5147"/>
+        <location filename="../UI/UserInterface.py" line="5181"/>
         <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="5161"/>
+        <location filename="../UI/UserInterface.py" line="5195"/>
         <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="5809"/>
+        <location filename="../UI/UserInterface.py" line="5843"/>
         <source>Documentation Missing</source>
         <translation>Dokumentation fehlt</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5809"/>
+        <location filename="../UI/UserInterface.py" line="5843"/>
         <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; 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="3745"/>
+        <location filename="../UI/UserInterface.py" line="3779"/>
         <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="1839"/>
+        <location filename="../UI/UserInterface.py" line="1873"/>
         <source>Template-Viewer</source>
         <translation>Vorlagen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1715"/>
+        <location filename="../UI/UserInterface.py" line="1749"/>
         <source>Alt+Shift+P</source>
         <translation>Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1784"/>
         <source>Alt+Shift+D</source>
         <translation>Alt+Shift+D</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
-        <source>Alt+Shift+S</source>
-        <translation>Alt+Shift+S</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
-        <source>Alt+Shift+F</source>
-        <translation>Alt+Shift+F</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
-        <source>Alt+Shift+T</source>
-        <translation>Alt+Shift+T</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1732"/>
-        <source>Alt+Shift+M</source>
-        <translation>Alt+Shift+M</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2689"/>
-        <source>Activate current editor</source>
-        <translation>Aktiviere aktuellen Editor</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2689"/>
-        <source>Alt+Shift+E</source>
-        <translation>Alt+Shift+E</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2699"/>
-        <source>Ctrl+Alt+Tab</source>
-        <translation>Ctrl+Alt+Tab</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2708"/>
-        <source>Shift+Ctrl+Alt+Tab</source>
-        <translation>Shift+Ctrl+Alt+Tab</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1802"/>
+        <source>Alt+Shift+S</source>
+        <translation>Alt+Shift+S</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1819"/>
+        <source>Alt+Shift+F</source>
+        <translation>Alt+Shift+F</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1854"/>
+        <source>Alt+Shift+T</source>
+        <translation>Alt+Shift+T</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1766"/>
+        <source>Alt+Shift+M</source>
+        <translation>Alt+Shift+M</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2723"/>
+        <source>Activate current editor</source>
+        <translation>Aktiviere aktuellen Editor</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2723"/>
+        <source>Alt+Shift+E</source>
+        <translation>Alt+Shift+E</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2733"/>
+        <source>Ctrl+Alt+Tab</source>
+        <translation>Ctrl+Alt+Tab</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2742"/>
+        <source>Shift+Ctrl+Alt+Tab</source>
+        <translation>Shift+Ctrl+Alt+Tab</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1836"/>
         <source>Alt+Shift+G</source>
         <translation>Alt+Shift+G</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2889"/>
+        <location filename="../UI/UserInterface.py" line="2923"/>
         <source>Eric API Documentation</source>
         <translation>Eric-API-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2889"/>
+        <location filename="../UI/UserInterface.py" line="2923"/>
         <source>&amp;Eric API Documentation</source>
         <translation>&amp;Eric-API-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2893"/>
+        <location filename="../UI/UserInterface.py" line="2927"/>
         <source>Open Eric API Documentation</source>
         <translation>Öffne die Eric-API-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5181"/>
+        <location filename="../UI/UserInterface.py" line="5215"/>
         <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="594"/>
+        <location filename="../UI/UserInterface.py" line="595"/>
         <source>Registering Objects...</source>
         <translation>Registriere Objekte...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1715"/>
+        <location filename="../UI/UserInterface.py" line="1749"/>
         <source>Project-Viewer</source>
         <translation>Projektanzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1784"/>
         <source>Debug-Viewer</source>
         <translation>Debuganzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1603"/>
+        <location filename="../UI/UserInterface.py" line="1637"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1715"/>
+        <location filename="../UI/UserInterface.py" line="1749"/>
         <source>&amp;Project-Viewer</source>
         <translation>&amp;Projektanzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>Shift+F1</source>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>F1</source>
         <translation>F1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2147"/>
+        <location filename="../UI/UserInterface.py" line="2181"/>
         <source>Check for Updates</source>
         <translation>Auf Aktualisierungen prüfen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2144"/>
+        <location filename="../UI/UserInterface.py" line="2178"/>
         <source>Check for &amp;Updates...</source>
         <translation>Auf &amp;Aktualisierungen prüfen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3091"/>
+        <location filename="../UI/UserInterface.py" line="3125"/>
         <source>Select Tool Group</source>
         <translation>Werkzeuggruppe wählen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3102"/>
+        <location filename="../UI/UserInterface.py" line="3136"/>
         <source>Se&amp;ttings</source>
         <translation>&amp;Einstellungen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3282"/>
+        <location filename="../UI/UserInterface.py" line="3316"/>
         <source>Profiles</source>
         <translation>Profile</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4101"/>
+        <location filename="../UI/UserInterface.py" line="4135"/>
         <source>&amp;Builtin Tools</source>
         <translation>&amp;Eingebaute Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5454"/>
+        <location filename="../UI/UserInterface.py" line="5488"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation>Starte Prozess „{0} {1}“.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5548"/>
+        <location filename="../UI/UserInterface.py" line="5582"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation>Prozess „{0}“ ist beendet.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5792"/>
+        <location filename="../UI/UserInterface.py" line="5826"/>
         <source>Documentation</source>
         <translation>Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7175"/>
+        <location filename="../UI/UserInterface.py" line="7209"/>
         <source>Error during updates check</source>
         <translation>Fehler während der Aktualisierungsprüfung</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7156"/>
+        <location filename="../UI/UserInterface.py" line="7190"/>
         <source>Update available</source>
         <translation>Aktualisierung verfügbar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7214"/>
+        <location filename="../UI/UserInterface.py" line="7248"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4146"/>
+        <location filename="../UI/UserInterface.py" line="4180"/>
         <source>Configure Tool Groups ...</source>
         <translation>Konfiguriere Werkzeuggruppen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4150"/>
+        <location filename="../UI/UserInterface.py" line="4184"/>
         <source>Configure current Tool Group ...</source>
         <translation>Konfiguriere aktuelle Werkzeuggruppe...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2552"/>
-        <source>Show external tools</source>
-        <translation>Zeige externe Werkzeuge</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2547"/>
-        <source>Show external &amp;tools</source>
-        <translation>Zeige externe &amp;Werkzeuge</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7175"/>
-        <source>Could not perform updates check.</source>
-        <translation>Konnte keine Aktualisierungsprüfung durchführen.</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6989"/>
-        <source>&amp;Cancel</source>
-        <translation>&amp;Abbrechen</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6998"/>
-        <source>Trying host {0}</source>
-        <translation>Prüfe Host {0}</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7251"/>
-        <source>First time usage</source>
-        <translation>Erstmalige Nutzung</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="270"/>
-        <source>Initializing Plugin Manager...</source>
-        <translation>Initialisiere Plugin-Manager...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3055"/>
-        <source>P&amp;lugins</source>
-        <translation>Plugi&amp;ns</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3283"/>
-        <source>Plugins</source>
-        <translation>Plugins</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2726"/>
-        <source>Plugin Infos</source>
-        <translation>Plugininformationen</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2730"/>
-        <source>Show Plugin Infos</source>
-        <translation>Zeigt Plugininformationen</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2731"/>
-        <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="2726"/>
-        <source>&amp;Plugin Infos...</source>
-        <translation>&amp;Plugininformationen...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4118"/>
-        <source>&amp;Plugin Tools</source>
-        <translation>&amp;Pluginwerkzeuge</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2757"/>
-        <source>Uninstall Plugin</source>
-        <translation>Plugin deinstallieren</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2752"/>
-        <source>&amp;Uninstall Plugin...</source>
-        <translation>Plugin &amp;deinstallieren...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2758"/>
-        <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="4267"/>
-        <source>&amp;Show all</source>
-        <translation>Alle an&amp;zeigen</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4269"/>
-        <source>&amp;Hide all</source>
-        <translation>Alle &amp;ausblenden</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="670"/>
-        <source>Activating Plugins...</source>
-        <translation>Aktiviere Plugins...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3028"/>
-        <source>Wi&amp;zards</source>
-        <translation>&amp;Assistenten</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2155"/>
-        <source>Show downloadable versions</source>
-        <translation>Zeige verfügbare Versionen</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2155"/>
-        <source>Show &amp;downloadable versions...</source>
-        <translation>&amp;Zeige verfügbare Versionen...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2159"/>
-        <source>Show the versions available for download</source>
-        <translation>Zeige die verfügbaren eric-Versionen</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7199"/>
-        <source>&lt;h3&gt;Available versions&lt;/h3&gt;&lt;table&gt;</source>
-        <translation>&lt;h3&gt;Verfügbare Versionen&lt;/h3&gt;&lt;table&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2765"/>
-        <source>Plugin Repository</source>
-        <translation>Plugin-Repository</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2765"/>
-        <source>Plugin &amp;Repository...</source>
-        <translation>Plugin-&amp;Repository...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2770"/>
-        <source>Show Plugins available for download</source>
-        <translation>Zeige  zum Download verfügbare Plugins an</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2772"/>
-        <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="2744"/>
-        <source>Install Plugins</source>
-        <translation>Plugins installieren</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2739"/>
-        <source>&amp;Install Plugins...</source>
-        <translation>Plugins &amp;installieren...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2745"/>
-        <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="2422"/>
-        <source>Mini Editor</source>
-        <translation>Mini-Editor</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2417"/>
-        <source>Mini &amp;Editor...</source>
-        <translation>Mini-&amp;Editor...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2423"/>
-        <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="2580"/>
-        <source>Toolbars</source>
-        <translation>Werkzeugleisten</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2580"/>
-        <source>Tool&amp;bars...</source>
-        <translation>Werkzeug&amp;leisten...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2585"/>
-        <source>Configure toolbars</source>
-        <translation>Werkzeugleisten einrichten</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2586"/>
+        <source>Show external tools</source>
+        <translation>Zeige externe Werkzeuge</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2581"/>
+        <source>Show external &amp;tools</source>
+        <translation>Zeige externe &amp;Werkzeuge</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7209"/>
+        <source>Could not perform updates check.</source>
+        <translation>Konnte keine Aktualisierungsprüfung durchführen.</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7023"/>
+        <source>&amp;Cancel</source>
+        <translation>&amp;Abbrechen</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7032"/>
+        <source>Trying host {0}</source>
+        <translation>Prüfe Host {0}</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7285"/>
+        <source>First time usage</source>
+        <translation>Erstmalige Nutzung</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="271"/>
+        <source>Initializing Plugin Manager...</source>
+        <translation>Initialisiere Plugin-Manager...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3089"/>
+        <source>P&amp;lugins</source>
+        <translation>Plugi&amp;ns</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3317"/>
+        <source>Plugins</source>
+        <translation>Plugins</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2760"/>
+        <source>Plugin Infos</source>
+        <translation>Plugininformationen</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2764"/>
+        <source>Show Plugin Infos</source>
+        <translation>Zeigt Plugininformationen</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2765"/>
+        <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="2760"/>
+        <source>&amp;Plugin Infos...</source>
+        <translation>&amp;Plugininformationen...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4152"/>
+        <source>&amp;Plugin Tools</source>
+        <translation>&amp;Pluginwerkzeuge</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2791"/>
+        <source>Uninstall Plugin</source>
+        <translation>Plugin deinstallieren</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2786"/>
+        <source>&amp;Uninstall Plugin...</source>
+        <translation>Plugin &amp;deinstallieren...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2792"/>
+        <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="4301"/>
+        <source>&amp;Show all</source>
+        <translation>Alle an&amp;zeigen</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4303"/>
+        <source>&amp;Hide all</source>
+        <translation>Alle &amp;ausblenden</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="671"/>
+        <source>Activating Plugins...</source>
+        <translation>Aktiviere Plugins...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3062"/>
+        <source>Wi&amp;zards</source>
+        <translation>&amp;Assistenten</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2189"/>
+        <source>Show downloadable versions</source>
+        <translation>Zeige verfügbare Versionen</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2189"/>
+        <source>Show &amp;downloadable versions...</source>
+        <translation>&amp;Zeige verfügbare Versionen...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2193"/>
+        <source>Show the versions available for download</source>
+        <translation>Zeige die verfügbaren eric-Versionen</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7233"/>
+        <source>&lt;h3&gt;Available versions&lt;/h3&gt;&lt;table&gt;</source>
+        <translation>&lt;h3&gt;Verfügbare Versionen&lt;/h3&gt;&lt;table&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2799"/>
+        <source>Plugin Repository</source>
+        <translation>Plugin-Repository</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2799"/>
+        <source>Plugin &amp;Repository...</source>
+        <translation>Plugin-&amp;Repository...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2804"/>
+        <source>Show Plugins available for download</source>
+        <translation>Zeige  zum Download verfügbare Plugins an</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2806"/>
+        <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="2778"/>
+        <source>Install Plugins</source>
+        <translation>Plugins installieren</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2773"/>
+        <source>&amp;Install Plugins...</source>
+        <translation>Plugins &amp;installieren...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2779"/>
+        <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="2456"/>
+        <source>Mini Editor</source>
+        <translation>Mini-Editor</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2451"/>
+        <source>Mini &amp;Editor...</source>
+        <translation>Mini-&amp;Editor...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2457"/>
+        <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="2614"/>
+        <source>Toolbars</source>
+        <translation>Werkzeugleisten</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2614"/>
+        <source>Tool&amp;bars...</source>
+        <translation>Werkzeug&amp;leisten...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2619"/>
+        <source>Configure toolbars</source>
+        <translation>Werkzeugleisten einrichten</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2620"/>
         <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="686"/>
+        <location filename="../UI/UserInterface.py" line="687"/>
         <source>Restoring Toolbarmanager...</source>
         <translation>Lade Toolbarmanager...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3563"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>External Tools/{0}</source>
         <translation>Externe Werkzeuge/{0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5415"/>
+        <location filename="../UI/UserInterface.py" line="5449"/>
         <source>External Tools</source>
         <translation>Externe Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5406"/>
+        <location filename="../UI/UserInterface.py" line="5440"/>
         <source>No tool entry found for external tool &apos;{0}&apos; in tool group &apos;{1}&apos;.</source>
         <translation>Kein Eintrag für das externe Werkzeug „{0}“ in der Gruppe „{1}“ gefunden.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5415"/>
+        <location filename="../UI/UserInterface.py" line="5449"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation>Kein Werkzeuggruppeneintrag „{0}“ gefunden.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1732"/>
+        <location filename="../UI/UserInterface.py" line="1766"/>
         <source>Multiproject-Viewer</source>
         <translation>Mehrfachprojektanzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1732"/>
+        <location filename="../UI/UserInterface.py" line="1766"/>
         <source>&amp;Multiproject-Viewer</source>
         <translation>&amp;Mehrfachprojektanzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6536"/>
+        <location filename="../UI/UserInterface.py" line="6570"/>
         <source>Save session</source>
         <translation>Sitzung speichern</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6474"/>
+        <location filename="../UI/UserInterface.py" line="6508"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Sitzungsdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht geschrieben werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6520"/>
+        <location filename="../UI/UserInterface.py" line="6554"/>
         <source>Read session</source>
         <translation>Sitzung lesen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6520"/>
+        <location filename="../UI/UserInterface.py" line="6554"/>
         <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="3459"/>
+        <location filename="../UI/UserInterface.py" line="3493"/>
         <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="3473"/>
+        <location filename="../UI/UserInterface.py" line="3507"/>
         <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="2208"/>
+        <location filename="../UI/UserInterface.py" line="2242"/>
         <source>Request Feature</source>
         <translation>Neue Funktion anfragen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2208"/>
+        <location filename="../UI/UserInterface.py" line="2242"/>
         <source>Request &amp;Feature...</source>
         <translation>Neue &amp;Funktion anfragen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2212"/>
+        <location filename="../UI/UserInterface.py" line="2246"/>
         <source>Send a feature request</source>
         <translation>Sende eine Anfrage für eine neue Funktion</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2214"/>
+        <location filename="../UI/UserInterface.py" line="2248"/>
         <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="3452"/>
+        <location filename="../UI/UserInterface.py" line="3486"/>
         <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="3480"/>
+        <location filename="../UI/UserInterface.py" line="3514"/>
         <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="3487"/>
+        <location filename="../UI/UserInterface.py" line="3521"/>
         <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="1882"/>
+        <location filename="../UI/UserInterface.py" line="1916"/>
         <source>Horizontal Toolbox</source>
         <translation>Horizontale Werkzeugbox</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1882"/>
+        <location filename="../UI/UserInterface.py" line="1916"/>
         <source>&amp;Horizontal Toolbox</source>
         <translation>&amp;Horizontale Werkzeugbox</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1886"/>
+        <location filename="../UI/UserInterface.py" line="1920"/>
         <source>Toggle the Horizontal Toolbox window</source>
         <translation>Schalte das Fenster der Horizontalen Werkzeugbox um</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1888"/>
+        <location filename="../UI/UserInterface.py" line="1922"/>
         <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="4065"/>
+        <location filename="../UI/UserInterface.py" line="4099"/>
         <source>Restart application</source>
         <translation>Anwendung neu starten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4065"/>
+        <location filename="../UI/UserInterface.py" line="4099"/>
         <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="1839"/>
+        <location filename="../UI/UserInterface.py" line="1873"/>
         <source>Alt+Shift+A</source>
         <translation>Alt+Shift+A</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3064"/>
+        <location filename="../UI/UserInterface.py" line="3098"/>
         <source>Configure...</source>
         <translation>Einstellungen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3466"/>
+        <location filename="../UI/UserInterface.py" line="3500"/>
         <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="2717"/>
+        <location filename="../UI/UserInterface.py" line="2751"/>
         <source>Switch between tabs</source>
         <translation>Zwischen Tabs umschalten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2717"/>
+        <location filename="../UI/UserInterface.py" line="2751"/>
         <source>Ctrl+1</source>
         <translation>Ctrl+1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2506"/>
+        <location filename="../UI/UserInterface.py" line="2540"/>
         <source>Export Preferences</source>
         <translation>Einstellungen exportieren</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2506"/>
+        <location filename="../UI/UserInterface.py" line="2540"/>
         <source>E&amp;xport Preferences...</source>
         <translation>Einstellungen e&amp;xportieren...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2511"/>
+        <location filename="../UI/UserInterface.py" line="2545"/>
         <source>Export the current configuration</source>
         <translation>Exportiert die aktuelle Konfiguration</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2513"/>
+        <location filename="../UI/UserInterface.py" line="2547"/>
         <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="2520"/>
+        <location filename="../UI/UserInterface.py" line="2554"/>
         <source>Import Preferences</source>
         <translation>Einstellungen importieren</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2520"/>
+        <location filename="../UI/UserInterface.py" line="2554"/>
         <source>I&amp;mport Preferences...</source>
         <translation>Einstellungen i&amp;mportieren...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2525"/>
+        <location filename="../UI/UserInterface.py" line="2559"/>
         <source>Import a previously exported configuration</source>
         <translation>Importiert eine zuvor exportierte Konfiguration</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2527"/>
+        <location filename="../UI/UserInterface.py" line="2561"/>
         <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="2699"/>
+        <location filename="../UI/UserInterface.py" line="2733"/>
         <source>Show next</source>
         <translation>Zeige nächste</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2708"/>
+        <location filename="../UI/UserInterface.py" line="2742"/>
         <source>Show previous</source>
         <translation>Zeige vorherige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1896"/>
+        <location filename="../UI/UserInterface.py" line="1930"/>
         <source>Left Sidebar</source>
         <translation>Linke Seitenleiste</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1896"/>
+        <location filename="../UI/UserInterface.py" line="1930"/>
         <source>&amp;Left Sidebar</source>
         <translation>&amp;Linke Seitenleiste</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1900"/>
+        <location filename="../UI/UserInterface.py" line="1934"/>
         <source>Toggle the left sidebar window</source>
         <translation>Schalte das Fenster der linken Seitenleiste um</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1901"/>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <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="1923"/>
+        <location filename="../UI/UserInterface.py" line="1957"/>
         <source>Bottom Sidebar</source>
         <translation>Untere Seitenleiste</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1923"/>
+        <location filename="../UI/UserInterface.py" line="1957"/>
         <source>&amp;Bottom Sidebar</source>
         <translation>&amp;Untere Seitenleiste</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1927"/>
+        <location filename="../UI/UserInterface.py" line="1961"/>
         <source>Toggle the bottom sidebar window</source>
         <translation>Schalte das Fenster der unteren Seitenleiste um</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1929"/>
+        <location filename="../UI/UserInterface.py" line="1963"/>
         <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="1750"/>
+        <location filename="../UI/UserInterface.py" line="1784"/>
         <source>&amp;Debug-Viewer</source>
         <translation>&amp;Debuganzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2404"/>
+        <location filename="../UI/UserInterface.py" line="2438"/>
         <source>SQL Browser</source>
         <translation>SQL-Browser</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2404"/>
+        <location filename="../UI/UserInterface.py" line="2438"/>
         <source>SQL &amp;Browser...</source>
         <translation>SQL-&amp;Browser...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2409"/>
+        <location filename="../UI/UserInterface.py" line="2443"/>
         <source>Browse a SQL database</source>
         <translation>Erforsche eine SQL-Datenbank</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2410"/>
+        <location filename="../UI/UserInterface.py" line="2444"/>
         <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="5311"/>
+        <location filename="../UI/UserInterface.py" line="5345"/>
         <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="2461"/>
+        <location filename="../UI/UserInterface.py" line="2495"/>
         <source>Icon Editor</source>
         <translation>Icon-Editor</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2461"/>
+        <location filename="../UI/UserInterface.py" line="2495"/>
         <source>&amp;Icon Editor...</source>
         <translation>&amp;Icon-Editor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1122"/>
+        <location filename="../UI/UserInterface.py" line="1123"/>
         <source>Cooperation</source>
         <translation>Zusammenarbeit</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Alt+Shift+O</source>
         <translation>Alt+Shift+O</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1178"/>
+        <location filename="../UI/UserInterface.py" line="1179"/>
         <source>Symbols</source>
         <translation>Symbole</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>Alt+Shift+Y</source>
         <translation>Alt+Shift+Y</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1187"/>
+        <location filename="../UI/UserInterface.py" line="1188"/>
         <source>Numbers</source>
         <translation>Zahlen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Alt+Shift+B</source>
         <translation>Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6241"/>
+        <location filename="../UI/UserInterface.py" line="6275"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation>Tastaturkurzbefehlsdatei (*.e4k)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2867"/>
+        <location filename="../UI/UserInterface.py" line="2901"/>
         <source>Python 3 Documentation</source>
         <translation>Python 3-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2867"/>
+        <location filename="../UI/UserInterface.py" line="2901"/>
         <source>Python &amp;3 Documentation</source>
         <translation>Python &amp;3-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2871"/>
+        <location filename="../UI/UserInterface.py" line="2905"/>
         <source>Open Python 3 Documentation</source>
         <translation>Öffne die Python 3-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7064"/>
+        <location filename="../UI/UserInterface.py" line="7098"/>
         <source>Error getting versions information</source>
         <translation>Fehler beim Herunterladen der Versionsinformationen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7057"/>
+        <location filename="../UI/UserInterface.py" line="7091"/>
         <source>The versions information could not be downloaded. Please go online and try again.</source>
         <translation>Die Versionsinformationen konnten nicht heruntergeladen werden. Bitte gehen Sie online und versuchen Sie es erneut.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6009"/>
+        <location filename="../UI/UserInterface.py" line="6043"/>
         <source>Open Browser</source>
         <translation>Browser starten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6009"/>
+        <location filename="../UI/UserInterface.py" line="6043"/>
         <source>Could not start a web browser</source>
         <translation>Der Systemwebbrowser konnte nicht gestartet werden</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7064"/>
+        <location filename="../UI/UserInterface.py" line="7098"/>
         <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source>
         <translation>Die Versionsinformationen konnten seit 7 Tagen nicht heruntergeladen werden. Bitte gehen Sie online und versuchen Sie es erneut.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="695"/>
+        <location filename="../UI/UserInterface.py" line="696"/>
         <source>Setting View Profile...</source>
         <translation>Stelle Ansichtenprofil ein...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="708"/>
+        <location filename="../UI/UserInterface.py" line="709"/>
         <source>Reading Tasks...</source>
         <translation>Lese Aufgaben...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="713"/>
+        <location filename="../UI/UserInterface.py" line="714"/>
         <source>Reading Templates...</source>
         <translation>Lese Vorlagen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="718"/>
+        <location filename="../UI/UserInterface.py" line="719"/>
         <source>Starting Debugger...</source>
         <translation>Starte Debugger...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>New Window</source>
         <translation>Neues Fenster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>New &amp;Window</source>
         <translation>Neues &amp;Fenster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation>Ctrl+Shift+N</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2251"/>
+        <location filename="../UI/UserInterface.py" line="2285"/>
         <source>Unittest Rerun Failed</source>
         <translation>Fehlerhafte Modultests wiederholen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2251"/>
+        <location filename="../UI/UserInterface.py" line="2285"/>
         <source>Rerun Failed Tests...</source>
         <translation>Fehlerhafte Tests wiederholen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2256"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <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="2258"/>
+        <location filename="../UI/UserInterface.py" line="2292"/>
         <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last unittest 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 Modultestlaufes fehlgeschlagen sind.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2390"/>
+        <location filename="../UI/UserInterface.py" line="2424"/>
         <source>Compare &amp;Files side by side...</source>
         <translation>Dateien &amp;Seite an Seite vergleichen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2475"/>
+        <location filename="../UI/UserInterface.py" line="2509"/>
         <source>Snapshot</source>
         <translation>Bildschirmfoto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2475"/>
+        <location filename="../UI/UserInterface.py" line="2509"/>
         <source>&amp;Snapshot...</source>
         <translation>&amp;Bildschirmfoto...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2480"/>
+        <location filename="../UI/UserInterface.py" line="2514"/>
         <source>Take snapshots of a screen region</source>
         <translation>Bildschirmfoto aufnehmen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2482"/>
+        <location filename="../UI/UserInterface.py" line="2516"/>
         <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="5383"/>
+        <location filename="../UI/UserInterface.py" line="5417"/>
         <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="7270"/>
+        <location filename="../UI/UserInterface.py" line="7304"/>
         <source>Select Workspace Directory</source>
         <translation>Wähle Arbeitsverzeichnis</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
+        <location filename="../UI/UserInterface.py" line="1891"/>
         <source>Left Toolbox</source>
         <translation>Linke Werkzeugbox</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1869"/>
+        <location filename="../UI/UserInterface.py" line="1903"/>
         <source>Right Toolbox</source>
         <translation>Rechte Werkzeugbox</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1721"/>
+        <location filename="../UI/UserInterface.py" line="1755"/>
         <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="1723"/>
+        <location filename="../UI/UserInterface.py" line="1757"/>
         <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="1738"/>
+        <location filename="../UI/UserInterface.py" line="1772"/>
         <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="1740"/>
-        <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="1756"/>
-        <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="1758"/>
-        <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="1774"/>
-        <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="1776"/>
-        <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="1785"/>
-        <source>&amp;File-Browser</source>
-        <translation>Datei&amp;browser</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1791"/>
-        <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="1793"/>
-        <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="1802"/>
-        <source>Lo&amp;g-Viewer</source>
-        <translation>&amp;Ausgabefenster</translation>
+        <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="1790"/>
+        <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="1792"/>
+        <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="1808"/>
-        <source>Switch the input focus to the Log-Viewer window.</source>
-        <translation>Schalte den Eingabefokus auf das Ausgabefenster um.</translation>
+        <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="1810"/>
+        <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="1819"/>
+        <source>&amp;File-Browser</source>
+        <translation>Datei&amp;browser</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1825"/>
+        <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="1827"/>
+        <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="1836"/>
+        <source>Lo&amp;g-Viewer</source>
+        <translation>&amp;Ausgabefenster</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1842"/>
+        <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="1844"/>
         <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="1820"/>
+        <location filename="../UI/UserInterface.py" line="1854"/>
         <source>&amp;Task-Viewer</source>
         <translation>&amp;Aufgabenanzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1826"/>
-        <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="1839"/>
-        <source>Templ&amp;ate-Viewer</source>
-        <translation>&amp;Vorlagen</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1845"/>
-        <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="1847"/>
-        <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="1857"/>
-        <source>&amp;Left Toolbox</source>
-        <translation>&amp;Linke Werkzeugbox</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1860"/>
-        <source>Toggle the Left Toolbox window</source>
-        <translation>Schalte das Fenster der linken Werkzeugbox um</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1861"/>
-        <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="1869"/>
-        <source>&amp;Right Toolbox</source>
-        <translation>&amp;Rechte Werkzeugbox</translation>
+        <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="1873"/>
+        <source>Templ&amp;ate-Viewer</source>
+        <translation>&amp;Vorlagen</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1879"/>
+        <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="1881"/>
+        <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="1891"/>
+        <source>&amp;Left Toolbox</source>
+        <translation>&amp;Linke Werkzeugbox</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1894"/>
+        <source>Toggle the Left Toolbox window</source>
+        <translation>Schalte das Fenster der linken Werkzeugbox um</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1895"/>
+        <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="1903"/>
+        <source>&amp;Right Toolbox</source>
+        <translation>&amp;Rechte Werkzeugbox</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1907"/>
         <source>Toggle the Right Toolbox window</source>
         <translation>Schalte das Fenster der rechten Werkzeugbox um</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1874"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <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="1909"/>
+        <location filename="../UI/UserInterface.py" line="1943"/>
         <source>Right Sidebar</source>
         <translation>Rechte Seitenleiste</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1909"/>
+        <location filename="../UI/UserInterface.py" line="1943"/>
         <source>&amp;Right Sidebar</source>
         <translation>&amp;Rechte Seitenleiste</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1913"/>
+        <location filename="../UI/UserInterface.py" line="1947"/>
         <source>Toggle the right sidebar window</source>
         <translation>Schalte das Fenster der rechten Seitenleiste um</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1915"/>
+        <location filename="../UI/UserInterface.py" line="1949"/>
         <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="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Cooperation-Viewer</source>
         <translation>Zusammenarbeit</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Co&amp;operation-Viewer</source>
         <translation>&amp;Zusammenarbeit</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1944"/>
+        <location filename="../UI/UserInterface.py" line="1978"/>
         <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="1946"/>
+        <location filename="../UI/UserInterface.py" line="1980"/>
         <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="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>Symbols-Viewer</source>
         <translation>Symbolanzeiger</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>S&amp;ymbols-Viewer</source>
         <translation>S&amp;ymbolanzeiger</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1981"/>
+        <location filename="../UI/UserInterface.py" line="2015"/>
         <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="1983"/>
+        <location filename="../UI/UserInterface.py" line="2017"/>
         <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="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Numbers-Viewer</source>
         <translation>Zahlenanzeiger</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Num&amp;bers-Viewer</source>
         <translation>Za&amp;hlenanzeiger</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2000"/>
+        <location filename="../UI/UserInterface.py" line="2034"/>
         <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="2002"/>
+        <location filename="../UI/UserInterface.py" line="2036"/>
         <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="3141"/>
+        <location filename="../UI/UserInterface.py" line="3175"/>
         <source>&amp;Windows</source>
         <translation>&amp;Fenster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1828"/>
+        <location filename="../UI/UserInterface.py" line="1862"/>
         <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="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>IRC</source>
         <translation>IRC</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>&amp;IRC</source>
         <translation>&amp;IRC</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1963"/>
+        <location filename="../UI/UserInterface.py" line="1997"/>
         <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="1965"/>
+        <location filename="../UI/UserInterface.py" line="1999"/>
         <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="2309"/>
+        <location filename="../UI/UserInterface.py" line="2343"/>
         <source>Qt-Designer</source>
         <translation>Qt Designer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2309"/>
+        <location filename="../UI/UserInterface.py" line="2343"/>
         <source>Qt-&amp;Designer...</source>
         <translation>Qt &amp;Designer...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2314"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Start Qt-Designer</source>
         <translation>Starte Qt Designer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2315"/>
+        <location filename="../UI/UserInterface.py" line="2349"/>
         <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="2335"/>
+        <location filename="../UI/UserInterface.py" line="2369"/>
         <source>Qt-Linguist</source>
         <translation>Qt Linguist</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2335"/>
+        <location filename="../UI/UserInterface.py" line="2369"/>
         <source>Qt-&amp;Linguist...</source>
         <translation>Qt &amp;Linguist...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2340"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Start Qt-Linguist</source>
         <translation>Starte Qt Linguist</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2341"/>
+        <location filename="../UI/UserInterface.py" line="2375"/>
         <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="2831"/>
+        <location filename="../UI/UserInterface.py" line="2865"/>
         <source>Qt5 Documentation</source>
         <translation>Qt5 Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2831"/>
+        <location filename="../UI/UserInterface.py" line="2865"/>
         <source>Qt&amp;5 Documentation</source>
         <translation>Qt&amp;5 Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2835"/>
+        <location filename="../UI/UserInterface.py" line="2869"/>
         <source>Open Qt5 Documentation</source>
         <translation>Öffne die Qt5 Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2639"/>
+        <location filename="../UI/UserInterface.py" line="2673"/>
         <source>Manage SSL Certificates</source>
         <translation>SSL-Zertifikate verwalten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2639"/>
+        <location filename="../UI/UserInterface.py" line="2673"/>
         <source>Manage SSL Certificates...</source>
         <translation>SSL-Zertifikate verwalten...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2644"/>
+        <location filename="../UI/UserInterface.py" line="2678"/>
         <source>Manage the saved SSL certificates</source>
         <translation>Verwalten der gespeicherten SSL-Zertifikate</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2646"/>
+        <location filename="../UI/UserInterface.py" line="2680"/>
         <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="2655"/>
+        <location filename="../UI/UserInterface.py" line="2689"/>
         <source>Edit Message Filters</source>
         <translation>Meldungsfilter bearbeiten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2655"/>
+        <location filename="../UI/UserInterface.py" line="2689"/>
         <source>Edit Message Filters...</source>
         <translation>Meldungsfilter bearbeiten...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2660"/>
+        <location filename="../UI/UserInterface.py" line="2694"/>
         <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="2662"/>
+        <location filename="../UI/UserInterface.py" line="2696"/>
         <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="2846"/>
+        <location filename="../UI/UserInterface.py" line="2880"/>
         <source>PyQt5 Documentation</source>
         <translation>PyQt5-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2846"/>
+        <location filename="../UI/UserInterface.py" line="2880"/>
         <source>PyQt&amp;5 Documentation</source>
         <translation>PyQt&amp;5-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2850"/>
+        <location filename="../UI/UserInterface.py" line="2884"/>
         <source>Open PyQt5 Documentation</source>
         <translation>Öffne die PyQt5-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5687"/>
+        <location filename="../UI/UserInterface.py" line="5721"/>
         <source>&lt;p&gt;The PyQt5 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der PyQt5-Dokumentations-Startpunkt ist nicht konfiguriert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2873"/>
+        <location filename="../UI/UserInterface.py" line="2907"/>
         <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="6989"/>
+        <location filename="../UI/UserInterface.py" line="7023"/>
         <source>%v/%m</source>
         <translation>%v/%m</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2174"/>
+        <location filename="../UI/UserInterface.py" line="2208"/>
         <source>Show Error Log</source>
         <translation>Zeige Fehlerbericht</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2170"/>
+        <location filename="../UI/UserInterface.py" line="2204"/>
         <source>Show Error &amp;Log...</source>
         <translation>Zeige Fehler&amp;bericht...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2175"/>
+        <location filename="../UI/UserInterface.py" line="2209"/>
         <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="6993"/>
+        <location filename="../UI/UserInterface.py" line="7027"/>
         <source>Version Check</source>
         <translation>Versionsprüfung</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1668"/>
+        <location filename="../UI/UserInterface.py" line="1702"/>
         <source>Open a new eric6 instance</source>
         <translation>Öffnet eine neue eric6-Instanz</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1670"/>
+        <location filename="../UI/UserInterface.py" line="1704"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric6 IDE.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neues Fenster&lt;/b&gt;&lt;p&gt;Dies öffnet eine neue Instanz der eric6-IDE.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2113"/>
+        <location filename="../UI/UserInterface.py" line="2147"/>
         <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric6 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 search in the Qt help collection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Hilfe-Fenster&lt;/b&gt;&lt;p&gt;Zeige den eric6-Webbrowser 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="2148"/>
+        <location filename="../UI/UserInterface.py" line="2182"/>
         <source>&lt;b&gt;Check for Updates...&lt;/b&gt;&lt;p&gt;Checks the internet for updates of eric6.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Auf Aktualisierungen prüfen...&lt;/b&gt;
 &lt;p&gt;Dies prüft im Internet auf Updates von eric6.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2161"/>
+        <location filename="../UI/UserInterface.py" line="2195"/>
         <source>&lt;b&gt;Show downloadable versions...&lt;/b&gt;&lt;p&gt;Shows the eric6 versions available for download from the internet.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zeige verfügbare Versionen...&lt;/b&gt;&lt;p&gt;Zeigt die eric6-Versionen, die vom Internet heruntergeladen werden können.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2445"/>
+        <location filename="../UI/UserInterface.py" line="2479"/>
         <source>eric6 Web Browser</source>
         <translation>eric6-Webbrowser</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2445"/>
+        <location filename="../UI/UserInterface.py" line="2479"/>
         <source>eric6 &amp;Web Browser...</source>
         <translation>eric6-&amp;Webbrowser...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2450"/>
+        <location filename="../UI/UserInterface.py" line="2484"/>
         <source>Start the eric6 Web Browser</source>
         <translation>Startet den eric6-Webbrowser</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2452"/>
+        <location filename="../UI/UserInterface.py" line="2486"/>
         <source>&lt;b&gt;eric6 Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric6 Web Browser.&lt;/p&gt;</source>
         <translation>&lt;b&gt;eric6-Webbrowser&lt;/b&gt;&lt;p&gt;Durchforste das Internet mit dem eric6-Webbrowser.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2466"/>
+        <location filename="../UI/UserInterface.py" line="2500"/>
         <source>Start the eric6 Icon Editor</source>
         <translation>Starte den eric6-Icon-Editor</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2468"/>
+        <location filename="../UI/UserInterface.py" line="2502"/>
         <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Icon Editor for editing simple icons.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Icon-Editor&lt;/b&gt;&lt;p&gt;Startet den eric6-Icon-Editor zum Editieren einfacher Icons.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2554"/>
+        <location filename="../UI/UserInterface.py" line="2588"/>
         <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 eric6.&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 eric6 genutzten externen Werkzeuge anzeigt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2895"/>
+        <location filename="../UI/UserInterface.py" line="2929"/>
         <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 eric6 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 eric6-Installationverzeichnis.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7156"/>
+        <location filename="../UI/UserInterface.py" line="7190"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric6 is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation>Eine Aktualisierung auf &lt;b&gt;{0}&lt;/b&gt; von Eric6 ist unter &lt;b&gt;{1}&lt;/b&gt; verfügbar. Wollen Sie sie laden?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7168"/>
+        <location filename="../UI/UserInterface.py" line="7202"/>
         <source>Eric6 is up to date</source>
         <translation>Eric6 ist aktuell</translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="7202"/>
+        <source>You are using the latest version of eric6</source>
+        <translation>Sie verwenden die aktuellste Version von eric6</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7285"/>
+        <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
+        <translation>eric6 wurde noch nicht konfiguriert. Der Konfigurationsdialog wird nun gestartet.</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="673"/>
+        <source>Generating Plugins Toolbars...</source>
+        <translation>Erzeuge Werkzeugleisten der Plug-ins...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4155"/>
+        <source>&amp;User Tools</source>
+        <translation>&amp;Benutzerwerkzeuge</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4227"/>
+        <source>No User Tools Configured</source>
+        <translation>Keine Benutzerwerkzeuge konfiguriert</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7043"/>
+        <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
+        <translation>Die Versionsinformationen konnten nicht heruntergeladen werden, da sie &lt;b&gt;nicht verbunden&lt;/b&gt; sind. Bitte gehen Sie online und versuchen Sie es erneut.</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2464"/>
+        <source>Hex Editor</source>
+        <translation>Hex-Editor</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2464"/>
+        <source>&amp;Hex Editor...</source>
+        <translation>&amp;Hex Editor...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2469"/>
+        <source>Start the eric6 Hex Editor</source>
+        <translation>Starte den eric6 Hex-Editor</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2471"/>
+        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 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 eric6 Hex-Editor zum Ansehen oder Bearbeiten von Binärdateien.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2712"/>
+        <source>Clear private data</source>
+        <translation>Private Daten löschen</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2714"/>
+        <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="1670"/>
+        <source>Save session...</source>
+        <translation>Sitzung speichern...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1675"/>
+        <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="6592"/>
+        <source>Load session</source>
+        <translation>Sitzung laden</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1683"/>
+        <source>Load session...</source>
+        <translation>Sitzung laden...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1688"/>
+        <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="6592"/>
+        <source>eric6 Session Files (*.e5s)</source>
+        <translation>eric6 Sitzungsdateien (*.e5s)</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6643"/>
+        <source>Crash Session found!</source>
+        <translation>Absturzsitzung gefunden!</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6643"/>
+        <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="676"/>
+        <source>Cleaning Plugins Download Area...</source>
+        <translation>Bereinige den Plugins Downloadbereich...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="668"/>
+        <source>Initializing Plugins...</source>
+        <translation>Initialisiere Plugins...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7178"/>
+        <source>Update Check</source>
+        <translation>Aktualisierungsprüfung</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7178"/>
+        <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
+        <translation>Eric wurde direkt von vom Quelltext installiert. Eine Aktualitätsprüfung ist daher nicht möglich.</translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="7168"/>
-        <source>You are using the latest version of eric6</source>
-        <translation>Sie verwenden die aktuellste Version von eric6</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7251"/>
-        <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
-        <translation>eric6 wurde noch nicht konfiguriert. Der Konfigurationsdialog wird nun gestartet.</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="672"/>
-        <source>Generating Plugins Toolbars...</source>
-        <translation>Erzeuge Werkzeugleisten der Plug-ins...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4121"/>
-        <source>&amp;User Tools</source>
-        <translation>&amp;Benutzerwerkzeuge</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4193"/>
-        <source>No User Tools Configured</source>
-        <translation>Keine Benutzerwerkzeuge konfiguriert</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7009"/>
-        <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
-        <translation>Die Versionsinformationen konnten nicht heruntergeladen werden, da sie &lt;b&gt;nicht verbunden&lt;/b&gt; sind. Bitte gehen Sie online und versuchen Sie es erneut.</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2430"/>
-        <source>Hex Editor</source>
-        <translation>Hex-Editor</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2430"/>
-        <source>&amp;Hex Editor...</source>
-        <translation>&amp;Hex Editor...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2435"/>
-        <source>Start the eric6 Hex Editor</source>
-        <translation>Starte den eric6 Hex-Editor</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2437"/>
-        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 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 eric6 Hex-Editor zum Ansehen oder Bearbeiten von Binärdateien.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2678"/>
-        <source>Clear private data</source>
-        <translation>Private Daten löschen</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2680"/>
-        <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="1636"/>
-        <source>Save session...</source>
-        <translation>Sitzung speichern...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1641"/>
-        <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="6558"/>
-        <source>Load session</source>
-        <translation>Sitzung laden</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
-        <source>Load session...</source>
-        <translation>Sitzung laden...</translation>
+        <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
+        <translation>Sie verwenden ein Snapshot-Release von eri6. Eine neueres, stabiles Release könnte verfügbar sein.</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2047"/>
+        <source>Code Documentation Viewer</source>
+        <translation>Dokumentationsanzeige</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2870"/>
+        <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&apos;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/Webbrowser, ein externer Webbrowser oder Qt Assistant verwendet.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2886"/>
+        <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&apos;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/Webbrowser, ein externer Webbrowser oder Qt Assistant verwendet.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2944"/>
+        <source>PySide2 Documentation</source>
+        <translation>PySide2-Dokumentation</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2944"/>
+        <source>PySide&amp;2 Documentation</source>
+        <translation>PySide&amp;2-Dokumentation</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2948"/>
+        <source>Open PySide2 Documentation</source>
+        <translation>Öffne die PySide2-Dokumentation</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2950"/>
+        <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&apos;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/Webbrowser, ein externer Webbrowser oder Qt Assistant verwendet.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5826"/>
+        <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="2820"/>
+        <source>Virtualenv Manager</source>
+        <translation>Virtualenv Manager</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2814"/>
+        <source>&amp;Virtualenv Manager...</source>
+        <translation>&amp;Virtualenv Manager...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2822"/>
+        <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Verwaltung der definierten virtuellen Python Umgebungen.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2837"/>
+        <source>Virtualenv Configurator</source>
+        <translation>Virtualenv Konfigurator</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2831"/>
+        <source>Virtualenv &amp;Configurator...</source>
+        <translation>Virtualenv &amp;Konfigurator...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2839"/>
+        <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Virtualenv Konfigurator&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Eingabe aller Parameter, die zur Erzeugung einer virtuellen Python Umgebung mittels virtualenv oder pyvenv benötigt werden.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3182"/>
+        <source>Left Side</source>
+        <translation>Linke Seite</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3194"/>
+        <source>Bottom Side</source>
+        <translation>Unterer Rand</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3201"/>
+        <source>Right Side</source>
+        <translation>Rechte Seite</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3221"/>
+        <source>Plug-ins</source>
+        <translation>Plugins</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1654"/>
-        <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="6558"/>
-        <source>eric6 Session Files (*.e5s)</source>
-        <translation>eric6 Sitzungsdateien (*.e5s)</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6609"/>
-        <source>Crash Session found!</source>
-        <translation>Absturzsitzung gefunden!</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6609"/>
-        <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="675"/>
-        <source>Cleaning Plugins Download Area...</source>
-        <translation>Bereinige den Plugins Downloadbereich...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="667"/>
-        <source>Initializing Plugins...</source>
-        <translation>Initialisiere Plugins...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7144"/>
-        <source>Update Check</source>
-        <translation>Aktualisierungsprüfung</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7144"/>
-        <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
-        <translation>Eric wurde direkt von vom Quelltext installiert. Eine Aktualitätsprüfung ist daher nicht möglich.</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7134"/>
-        <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
-        <translation>Sie verwenden ein Snapshot-Release von eri6. Eine neueres, stabiles Release könnte verfügbar sein.</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2013"/>
-        <source>Code Documentation Viewer</source>
-        <translation>Dokumentationsanzeige</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2836"/>
-        <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&apos;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/Webbrowser, ein externer Webbrowser oder Qt Assistant verwendet.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2852"/>
-        <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&apos;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/Webbrowser, ein externer Webbrowser oder Qt Assistant verwendet.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2910"/>
-        <source>PySide2 Documentation</source>
-        <translation>PySide2-Dokumentation</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2910"/>
-        <source>PySide&amp;2 Documentation</source>
-        <translation>PySide&amp;2-Dokumentation</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2914"/>
-        <source>Open PySide2 Documentation</source>
-        <translation>Öffne die PySide2-Dokumentation</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2916"/>
-        <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&apos;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/Webbrowser, ein externer Webbrowser oder Qt Assistant verwendet.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5792"/>
-        <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="2786"/>
-        <source>Virtualenv Manager</source>
-        <translation>Virtualenv Manager</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2780"/>
-        <source>&amp;Virtualenv Manager...</source>
-        <translation>&amp;Virtualenv Manager...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2788"/>
-        <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Verwaltung der definierten virtuellen Python Umgebungen.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2803"/>
-        <source>Virtualenv Configurator</source>
-        <translation>Virtualenv Konfigurator</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2797"/>
-        <source>Virtualenv &amp;Configurator...</source>
-        <translation>Virtualenv &amp;Konfigurator...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2805"/>
-        <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Virtualenv Konfigurator&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Eingabe aller Parameter, die zur Erzeugung einer virtuellen Python Umgebung mittels virtualenv oder pyvenv benötigt werden.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3148"/>
-        <source>Left Side</source>
-        <translation>Linke Seite</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3160"/>
-        <source>Bottom Side</source>
-        <translation>Unterer Rand</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3167"/>
-        <source>Right Side</source>
-        <translation>Rechte Seite</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3187"/>
-        <source>Plug-ins</source>
-        <translation>Plugins</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1620"/>
         <source>Restart</source>
         <translation>Neu starten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1620"/>
+        <location filename="../UI/UserInterface.py" line="1654"/>
         <source>Ctrl+Shift+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Shift+Q</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1626"/>
+        <location filename="../UI/UserInterface.py" line="1660"/>
         <source>Restart the IDE</source>
         <translation>Neustart der Entwicklungsumgebung</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1627"/>
+        <location filename="../UI/UserInterface.py" line="1661"/>
         <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="5966"/>
+        <location filename="../UI/UserInterface.py" line="6000"/>
         <source>Start Web Browser</source>
         <translation>Webbrowser starten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5905"/>
+        <location filename="../UI/UserInterface.py" line="5939"/>
         <source>The eric6 web browser could not be started.</source>
         <translation>Der eric6 Webbrowser konnte nicht gestartet werden.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5966"/>
+        <location filename="../UI/UserInterface.py" line="6000"/>
         <source>&lt;p&gt;The eric6 web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der eric6 Webbrowser ist nicht gestartet.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
+        <location filename="../UI/UserInterface.py" line="2085"/>
         <source>Conda</source>
         <translation>Conda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2033"/>
+        <location filename="../UI/UserInterface.py" line="2067"/>
         <source>PyPI</source>
         <translation>PyPI</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3498"/>
+        <location filename="../UI/UserInterface.py" line="3532"/>
         <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="2069"/>
+        <location filename="../UI/UserInterface.py" line="2103"/>
         <source>MicroPython</source>
         <translation>MicroPython</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>Ctrl+Alt+Shift+I</source>
         <translation>Ctrl+Alt+Shift+I</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2013"/>
+        <location filename="../UI/UserInterface.py" line="2047"/>
         <source>Ctrl+Alt+Shift+D</source>
         <translation>Ctrl+Alt+Shift+D</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2019"/>
+        <location filename="../UI/UserInterface.py" line="2053"/>
         <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="2022"/>
+        <location filename="../UI/UserInterface.py" line="2056"/>
         <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="2033"/>
+        <location filename="../UI/UserInterface.py" line="2067"/>
         <source>Ctrl+Alt+Shift+P</source>
         <translation>Ctrl+Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2039"/>
+        <location filename="../UI/UserInterface.py" line="2073"/>
         <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="2041"/>
-        <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="2051"/>
-        <source>Ctrl+Alt+Shift+C</source>
-        <translation>Ctrl+Alt+Shift+C</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2057"/>
-        <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="2059"/>
-        <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="2069"/>
-        <source>Ctrl+Alt+Shift+M</source>
-        <translation>Ctrl+Alt+Shift+M</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2075"/>
+        <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="2085"/>
+        <source>Ctrl+Alt+Shift+C</source>
+        <translation>Ctrl+Alt+Shift+C</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2091"/>
+        <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="2093"/>
+        <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="2103"/>
+        <source>Ctrl+Alt+Shift+M</source>
+        <translation>Ctrl+Alt+Shift+M</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2109"/>
         <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="2077"/>
+        <location filename="../UI/UserInterface.py" line="2111"/>
         <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="3145"/>
+        <location filename="../UI/UserInterface.py" line="3179"/>
         <source>Central Park</source>
         <translation>Mittelbereich</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3672"/>
+        <location filename="../UI/UserInterface.py" line="3706"/>
         <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="5009"/>
+        <location filename="../UI/UserInterface.py" line="5043"/>
         <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="5079"/>
+        <location filename="../UI/UserInterface.py" line="5113"/>
         <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="5123"/>
+        <location filename="../UI/UserInterface.py" line="5157"/>
         <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="2182"/>
+        <location filename="../UI/UserInterface.py" line="2216"/>
         <source>Show Install Info</source>
         <translation>Installationsinformation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2182"/>
+        <location filename="../UI/UserInterface.py" line="2216"/>
         <source>Show Install &amp;Info...</source>
         <translation>&amp;Installationsinformation...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2186"/>
+        <location filename="../UI/UserInterface.py" line="2220"/>
         <source>Show Installation Information</source>
         <translation>Installationsinformation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2188"/>
+        <location filename="../UI/UserInterface.py" line="2222"/>
         <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>
@@ -80549,6 +80569,21 @@
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Python Disassembly Anzeige&lt;/b&gt;&lt;p&gt;Dies öffnet eine Baumansicht mit einer Disassembly der aktuellen Python Quelltextdatei.&lt;/p&gt;</translation>
     </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="744"/>
+        <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the shell window. A dialog is shown to enter the search text and options for the search.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Suchen&lt;/b&gt;&lt;p&gt;Sucht einen Text im Shell Fenster. Es wird ein Dialog eingeblendet, in dem der Suchtext und verschieden Suchoptionen eingegeben werden kann.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="765"/>
+        <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Weitersuchen&lt;/b&gt;&lt;p&gt;Nach der nächsten Textstelle im Shell Fenster suchen. Der zuvor eingegebene Suchtext und die Suchoptionen werden weiterverwendet.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="786"/>
+        <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Rückwärtssuchen&lt;/b&gt;&lt;p&gt;Nach der vorherigen Textstelle im Shell Fenster suchen. Der zuvor eingegebene Suchtext und die Suchoptionen werden weiterverwendet.&lt;/p&gt;</translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
@@ -81017,32 +81052,32 @@
         <translation>Aktualisieren</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="323"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="333"/>
         <source>&lt;virtualenv did not finish within 5s.&gt;</source>
         <translation>&lt;virtualenv endete nicht innerhalb von 5s.&gt;</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="341"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="351"/>
         <source>&lt;No suitable virtualenv found.&gt;</source>
         <translation>&lt;Kein funktionsfähiges virtualenv gefunden.&gt;</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="343"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="353"/>
         <source>virtualenv Version: {0}</source>
         <translation>virtualenv Version: {0}</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="377"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="387"/>
         <source>&lt;pyvenv did not finish within 5s.&gt;</source>
         <translation>&lt;pyvenv endete nicht innerhalb von 5s.&gt;</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="397"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="407"/>
         <source>&lt;No suitable pyvenv found.&gt;</source>
         <translation>&lt;Kein funktionsfähiges pyvenv gefunden.&gt;</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="399"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="409"/>
         <source>pyvenv Version: {0}</source>
         <translation>pyvenv Version: {0}</translation>
     </message>
@@ -81177,7 +81212,7 @@
         <translation>Textdateien (*.txt);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="411"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="421"/>
         <source>conda Version: {0}</source>
         <translation>conda Version: {0}</translation>
     </message>
--- a/eric6/i18n/eric6_empty.ts	Wed Nov 11 17:51:36 2020 +0100
+++ b/eric6/i18n/eric6_empty.ts	Sat Nov 14 11:50:43 2020 +0100
@@ -37959,52 +37959,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="71"/>
+        <location filename="../UI/InstallInfoDialog.py" line="70"/>
         <source>Yes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="71"/>
+        <location filename="../UI/InstallInfoDialog.py" line="70"/>
         <source>No</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="75"/>
+        <location filename="../UI/InstallInfoDialog.py" line="74"/>
         <source>&apos;eric-ide&apos; was installed from PyPI using the pip command.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="81"/>
+        <location filename="../UI/InstallInfoDialog.py" line="80"/>
         <source>The information shown in this dialog was guessed at the first start of eric.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="99"/>
+        <location filename="../UI/InstallInfoDialog.py" line="98"/>
         <source>Load Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="99"/>
+        <location filename="../UI/InstallInfoDialog.py" line="98"/>
         <source>&lt;p&gt;The file containing the install information could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="151"/>
+        <location filename="../UI/InstallInfoDialog.py" line="150"/>
         <source>Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="151"/>
+        <location filename="../UI/InstallInfoDialog.py" line="150"/>
         <source>The install information was edited. Unsaved changes will be lost. Save first?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="188"/>
+        <location filename="../UI/InstallInfoDialog.py" line="187"/>
         <source>Save Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="188"/>
+        <location filename="../UI/InstallInfoDialog.py" line="187"/>
         <source>&lt;p&gt;The file containing the install information could not be written.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -38014,17 +38014,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="61"/>
+        <location filename="../UI/InstallInfoDialog.py" line="60"/>
         <source>Installed as Administrator:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="63"/>
+        <location filename="../UI/InstallInfoDialog.py" line="62"/>
         <source>Installed with sudo:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="93"/>
+        <location filename="../UI/InstallInfoDialog.py" line="92"/>
         <source>unknown</source>
         <translation type="unfinished"></translation>
     </message>
@@ -38034,32 +38034,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="87"/>
+        <location filename="../UI/InstallInfoDialog.py" line="86"/>
         <source>The installation information was provided by the user.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="39"/>
+        <location filename="../UI/InstallInfoDialog.py" line="38"/>
         <source>Delete Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="255"/>
+        <location filename="../UI/InstallInfoDialog.py" line="254"/>
         <source>Upgrade Instructions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="201"/>
+        <location filename="../UI/InstallInfoDialog.py" line="200"/>
         <source>Delete Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="201"/>
+        <location filename="../UI/InstallInfoDialog.py" line="200"/>
         <source>Do you really want to delete the installation information? It will be recreated at the next start.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="228"/>
+        <location filename="../UI/InstallInfoDialog.py" line="227"/>
         <source>Perform the following step(s) with Administrator privileges.
 </source>
         <translation type="unfinished"></translation>
@@ -47576,12 +47576,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="143"/>
+        <location filename="../PipInterface/PipDialog.py" line="146"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="143"/>
+        <location filename="../PipInterface/PipDialog.py" line="146"/>
         <source>The process {0} could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48259,7 +48259,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="910"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="911"/>
         <source>Search PyPI</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48279,102 +48279,102 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="872"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="873"/>
         <source>Show Package Details</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="872"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="873"/>
         <source>Select the package version:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="910"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="911"/>
         <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="926"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="927"/>
         <source>Install Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="929"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="930"/>
         <source>Install Pip to User-Site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="932"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="933"/>
         <source>Repair Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1046"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1050"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="939"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="940"/>
         <source>Install Local Package</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="943"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
         <source>Install Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="946"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="947"/>
         <source>Uninstall Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="949"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="950"/>
         <source>Generate Requirements...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="967"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="968"/>
         <source>Edit User Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="970"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="971"/>
         <source>Edit Environment Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="975"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="976"/>
         <source>Configure...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1158"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1166"/>
         <source>Edit Configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1158"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1166"/>
         <source>No valid configuration path determined. Aborting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="953"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="954"/>
         <source>Show Cache Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="956"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="957"/>
         <source>Show Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="960"/>
         <source>Remove Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="962"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="963"/>
         <source>Purge Cache...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -60988,231 +60988,251 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="242"/>
-        <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected language.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="249"/>
+        <location filename="../QScintilla/ShellWindow.py" line="250"/>
         <source>Restart and Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="254"/>
+        <location filename="../QScintilla/ShellWindow.py" line="255"/>
         <source>Clear the window and restart the shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="256"/>
-        <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected language.&lt;/p&gt;</source>
+        <location filename="../QScintilla/ShellWindow.py" line="885"/>
+        <source>Show History</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="885"/>
+        <source>&amp;Show History...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="891"/>
-        <source>Show History</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="891"/>
-        <source>&amp;Show History...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="897"/>
         <source>Show the shell history in a dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="901"/>
+        <location filename="../QScintilla/ShellWindow.py" line="895"/>
         <source>Clear History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="895"/>
+        <source>&amp;Clear History...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="901"/>
-        <source>&amp;Clear History...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="907"/>
         <source>Clear the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="911"/>
+        <location filename="../QScintilla/ShellWindow.py" line="905"/>
         <source>Select History Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="911"/>
+        <location filename="../QScintilla/ShellWindow.py" line="905"/>
         <source>Select History &amp;Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="916"/>
+        <location filename="../QScintilla/ShellWindow.py" line="910"/>
         <source>Select an entry of the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="924"/>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
         <source>About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
+        <source>&amp;About</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="922"/>
+        <source>Display information about this software</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="924"/>
-        <source>&amp;About</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="928"/>
-        <source>Display information about this software</source>
+        <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="930"/>
-        <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
+        <source>About Qt</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="930"/>
+        <source>About &amp;Qt</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <source>Display information about the Qt toolkit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="936"/>
-        <source>About Qt</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="936"/>
-        <source>About &amp;Qt</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="940"/>
-        <source>Display information about the Qt toolkit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="942"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
+        <source>&amp;What&apos;s This?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
+        <source>Shift+F1</source>
+        <comment>Help|What&apos;s This?&apos;</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="949"/>
-        <source>&amp;What&apos;s This?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
-        <source>Shift+F1</source>
-        <comment>Help|What&apos;s This?&apos;</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="955"/>
         <source>Context sensitive help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="956"/>
+        <location filename="../QScintilla/ShellWindow.py" line="950"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1100"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1094"/>
         <source>About eric6 Shell Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1100"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1094"/>
         <source>The eric6 Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1128"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1122"/>
         <source>&amp;File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1137"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1131"/>
         <source>&amp;Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1148"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1142"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1155"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1149"/>
         <source>Histor&amp;y</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1156"/>
+        <source>&amp;Start</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1162"/>
-        <source>&amp;Start</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1168"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1201"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1195"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1210"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1204"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1211"/>
+        <source>Find</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1217"/>
-        <source>Find</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1223"/>
         <source>View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1224"/>
+        <source>History</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1230"/>
-        <source>History</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1236"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1257"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1251"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="585"/>
+        <location filename="../QScintilla/ShellWindow.py" line="579"/>
         <source>Move forward one history entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="595"/>
+        <location filename="../QScintilla/ShellWindow.py" line="589"/>
         <source>Move back one history entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1036"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1030"/>
         <source>eric6 Shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1034"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1028"/>
         <source>eric6 Shell [{0}]</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="242"/>
+        <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected environment.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="257"/>
+        <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected environment.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="284"/>
+        <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text to the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="302"/>
+        <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="320"/>
+        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="337"/>
+        <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>Shelve</name>
@@ -73314,2297 +73334,2297 @@
 <context>
     <name>UserInterface</name>
     <message>
-        <location filename="../UI/UserInterface.py" line="270"/>
+        <location filename="../UI/UserInterface.py" line="271"/>
         <source>Initializing Plugin Manager...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="277"/>
+        <location filename="../UI/UserInterface.py" line="278"/>
         <source>Generating Main User Interface...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="327"/>
+        <location filename="../UI/UserInterface.py" line="328"/>
         <source>Setting up connections...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="584"/>
+        <location filename="../UI/UserInterface.py" line="585"/>
         <source>Initializing Tools...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="594"/>
+        <location filename="../UI/UserInterface.py" line="595"/>
         <source>Registering Objects...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="627"/>
+        <location filename="../UI/UserInterface.py" line="628"/>
         <source>Initializing Actions...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="629"/>
+        <location filename="../UI/UserInterface.py" line="630"/>
         <source>Initializing Menus...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="631"/>
+        <location filename="../UI/UserInterface.py" line="632"/>
         <source>Initializing Toolbars...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="633"/>
+        <location filename="../UI/UserInterface.py" line="634"/>
         <source>Initializing Statusbar...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="660"/>
+        <location filename="../UI/UserInterface.py" line="661"/>
         <source>Initializing Single Application Server...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="670"/>
+        <location filename="../UI/UserInterface.py" line="671"/>
         <source>Activating Plugins...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="672"/>
+        <location filename="../UI/UserInterface.py" line="673"/>
         <source>Generating Plugins Toolbars...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="686"/>
+        <location filename="../UI/UserInterface.py" line="687"/>
         <source>Restoring Toolbarmanager...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="695"/>
+        <location filename="../UI/UserInterface.py" line="696"/>
         <source>Setting View Profile...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="708"/>
+        <location filename="../UI/UserInterface.py" line="709"/>
         <source>Reading Tasks...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="713"/>
+        <location filename="../UI/UserInterface.py" line="714"/>
         <source>Reading Templates...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="718"/>
+        <location filename="../UI/UserInterface.py" line="719"/>
         <source>Starting Debugger...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
+        <location filename="../UI/UserInterface.py" line="1891"/>
         <source>Left Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1882"/>
+        <location filename="../UI/UserInterface.py" line="1916"/>
         <source>Horizontal Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1869"/>
+        <location filename="../UI/UserInterface.py" line="1903"/>
         <source>Right Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="1749"/>
+        <source>Project-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1766"/>
+        <source>Multiproject-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1873"/>
+        <source>Template-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1784"/>
+        <source>Debug-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1123"/>
+        <source>Cooperation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1991"/>
+        <source>IRC</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1854"/>
+        <source>Task-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1836"/>
+        <source>Log-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1802"/>
+        <source>Shell</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1819"/>
+        <source>File-Browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1179"/>
+        <source>Symbols</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1188"/>
+        <source>Numbers</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1603"/>
+        <source>{0} - Passive Mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1610"/>
+        <source>{0} - {1} - Passive Mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1614"/>
+        <source>{0} - {1} - {2} - Passive Mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1637"/>
+        <source>Quit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1637"/>
+        <source>&amp;Quit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1637"/>
+        <source>Ctrl+Q</source>
+        <comment>File|Quit</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1643"/>
+        <source>Quit the IDE</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1644"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1696"/>
+        <source>New Window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1696"/>
+        <source>New &amp;Window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1696"/>
+        <source>Ctrl+Shift+N</source>
+        <comment>File|New Window</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1702"/>
+        <source>Open a new eric6 instance</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1704"/>
+        <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric6 IDE.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="1715"/>
-        <source>Project-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1732"/>
-        <source>Multiproject-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
-        <source>Template-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
-        <source>Debug-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1122"/>
-        <source>Cooperation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
-        <source>IRC</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
-        <source>Task-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1802"/>
-        <source>Log-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
-        <source>Shell</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
-        <source>File-Browser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1178"/>
-        <source>Symbols</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1187"/>
-        <source>Numbers</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1569"/>
-        <source>{0} - Passive Mode</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1576"/>
-        <source>{0} - {1} - Passive Mode</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1580"/>
-        <source>{0} - {1} - {2} - Passive Mode</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1603"/>
-        <source>Quit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1603"/>
-        <source>&amp;Quit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1603"/>
-        <source>Ctrl+Q</source>
-        <comment>File|Quit</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1609"/>
-        <source>Quit the IDE</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1610"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
-        <source>New Window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
-        <source>New &amp;Window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
-        <source>Ctrl+Shift+N</source>
-        <comment>File|New Window</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1668"/>
-        <source>Open a new eric6 instance</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1670"/>
-        <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric6 IDE.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1681"/>
         <source>Edit Profile</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1687"/>
-        <source>Activate the edit view profile</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1689"/>
-        <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1698"/>
-        <source>Debug Profile</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1704"/>
-        <source>Activate the debug view profile</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1706"/>
-        <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1715"/>
-        <source>&amp;Project-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1715"/>
-        <source>Alt+Shift+P</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1721"/>
-        <source>Switch the input focus to the Project-Viewer window.</source>
+        <source>Activate the edit view profile</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1723"/>
-        <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>
+        <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1732"/>
-        <source>&amp;Multiproject-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1732"/>
-        <source>Alt+Shift+M</source>
+        <source>Debug Profile</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1738"/>
-        <source>Switch the input focus to the Multiproject-Viewer window.</source>
+        <source>Activate the debug view profile</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1740"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
-        <source>&amp;Debug-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
-        <source>Alt+Shift+D</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1756"/>
-        <source>Switch the input focus to the Debug-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1758"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
-        <source>&amp;Shell</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
-        <source>Alt+Shift+S</source>
+        <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1749"/>
+        <source>&amp;Project-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1749"/>
+        <source>Alt+Shift+P</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1755"/>
+        <source>Switch the input focus to the Project-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1757"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1766"/>
+        <source>&amp;Multiproject-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1766"/>
+        <source>Alt+Shift+M</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1772"/>
+        <source>Switch the input focus to the Multiproject-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1774"/>
-        <source>Switch the input focus to the Shell window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1776"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
-        <source>&amp;File-Browser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
-        <source>Alt+Shift+F</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1791"/>
-        <source>Switch the input focus to the File-Browser window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1793"/>
-        <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>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1784"/>
+        <source>&amp;Debug-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1784"/>
+        <source>Alt+Shift+D</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1790"/>
+        <source>Switch the input focus to the Debug-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1792"/>
+        <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"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1802"/>
-        <source>Lo&amp;g-Viewer</source>
+        <source>&amp;Shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1802"/>
-        <source>Alt+Shift+G</source>
+        <source>Alt+Shift+S</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1808"/>
-        <source>Switch the input focus to the Log-Viewer window.</source>
+        <source>Switch the input focus to the Shell window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1810"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1819"/>
+        <source>&amp;File-Browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1819"/>
+        <source>Alt+Shift+F</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1825"/>
+        <source>Switch the input focus to the File-Browser window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1827"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1836"/>
+        <source>Lo&amp;g-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1836"/>
+        <source>Alt+Shift+G</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1842"/>
+        <source>Switch the input focus to the Log-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1844"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
+        <location filename="../UI/UserInterface.py" line="1854"/>
         <source>&amp;Task-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
+        <location filename="../UI/UserInterface.py" line="1854"/>
         <source>Alt+Shift+T</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1826"/>
-        <source>Switch the input focus to the Task-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1828"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
-        <source>Templ&amp;ate-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
-        <source>Alt+Shift+A</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1845"/>
-        <source>Switch the input focus to the Template-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1847"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
-        <source>&amp;Left Toolbox</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1860"/>
-        <source>Toggle the Left Toolbox window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1861"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1869"/>
-        <source>&amp;Right Toolbox</source>
+        <source>Switch the input focus to the Task-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1862"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1873"/>
+        <source>Templ&amp;ate-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1873"/>
+        <source>Alt+Shift+A</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1879"/>
+        <source>Switch the input focus to the Template-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1881"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1891"/>
+        <source>&amp;Left Toolbox</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1894"/>
+        <source>Toggle the Left Toolbox window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1895"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1903"/>
+        <source>&amp;Right Toolbox</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1907"/>
         <source>Toggle the Right Toolbox window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1874"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1882"/>
+        <location filename="../UI/UserInterface.py" line="1916"/>
         <source>&amp;Horizontal Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1886"/>
+        <location filename="../UI/UserInterface.py" line="1920"/>
         <source>Toggle the Horizontal Toolbox window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1888"/>
+        <location filename="../UI/UserInterface.py" line="1922"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1896"/>
+        <location filename="../UI/UserInterface.py" line="1930"/>
         <source>Left Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1896"/>
+        <location filename="../UI/UserInterface.py" line="1930"/>
         <source>&amp;Left Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1900"/>
+        <location filename="../UI/UserInterface.py" line="1934"/>
         <source>Toggle the left sidebar window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1901"/>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1909"/>
+        <location filename="../UI/UserInterface.py" line="1943"/>
         <source>Right Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1909"/>
+        <location filename="../UI/UserInterface.py" line="1943"/>
         <source>&amp;Right Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1913"/>
+        <location filename="../UI/UserInterface.py" line="1947"/>
         <source>Toggle the right sidebar window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1915"/>
+        <location filename="../UI/UserInterface.py" line="1949"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1923"/>
-        <source>Bottom Sidebar</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1923"/>
-        <source>&amp;Bottom Sidebar</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1927"/>
-        <source>Toggle the bottom sidebar window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1929"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
-        <source>Cooperation-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
-        <source>Co&amp;operation-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
-        <source>Alt+Shift+O</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1944"/>
-        <source>Switch the input focus to the Cooperation-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1946"/>
-        <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"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1957"/>
-        <source>&amp;IRC</source>
+        <source>Bottom Sidebar</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1957"/>
+        <source>&amp;Bottom Sidebar</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1961"/>
+        <source>Toggle the bottom sidebar window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1963"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1972"/>
+        <source>Cooperation-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1972"/>
+        <source>Co&amp;operation-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1972"/>
+        <source>Alt+Shift+O</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1978"/>
+        <source>Switch the input focus to the Cooperation-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1980"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1991"/>
+        <source>&amp;IRC</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1997"/>
         <source>Switch the input focus to the IRC window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1965"/>
+        <location filename="../UI/UserInterface.py" line="1999"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>Symbols-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>S&amp;ymbols-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>Alt+Shift+Y</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1981"/>
+        <location filename="../UI/UserInterface.py" line="2015"/>
         <source>Switch the input focus to the Symbols-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1983"/>
+        <location filename="../UI/UserInterface.py" line="2017"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Numbers-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Num&amp;bers-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Alt+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2000"/>
+        <location filename="../UI/UserInterface.py" line="2034"/>
         <source>Switch the input focus to the Numbers-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2002"/>
+        <location filename="../UI/UserInterface.py" line="2036"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>Shift+F1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2093"/>
+        <location filename="../UI/UserInterface.py" line="2127"/>
         <source>Context sensitive help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2094"/>
+        <location filename="../UI/UserInterface.py" line="2128"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>Helpviewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>&amp;Helpviewer...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>F1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2111"/>
+        <location filename="../UI/UserInterface.py" line="2145"/>
         <source>Open the helpviewer window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2113"/>
-        <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric6 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 search in the Qt help collection.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2131"/>
-        <source>Show Versions</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2131"/>
-        <source>Show &amp;Versions</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2135"/>
-        <source>Display version information</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2137"/>
-        <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2147"/>
+        <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric6 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 search in the Qt help collection.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2165"/>
+        <source>Show Versions</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2165"/>
+        <source>Show &amp;Versions</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2169"/>
+        <source>Display version information</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2171"/>
+        <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2181"/>
         <source>Check for Updates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2144"/>
+        <location filename="../UI/UserInterface.py" line="2178"/>
         <source>Check for &amp;Updates...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2148"/>
+        <location filename="../UI/UserInterface.py" line="2182"/>
         <source>&lt;b&gt;Check for Updates...&lt;/b&gt;&lt;p&gt;Checks the internet for updates of eric6.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2155"/>
+        <location filename="../UI/UserInterface.py" line="2189"/>
         <source>Show downloadable versions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2155"/>
+        <location filename="../UI/UserInterface.py" line="2189"/>
         <source>Show &amp;downloadable versions...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2159"/>
+        <location filename="../UI/UserInterface.py" line="2193"/>
         <source>Show the versions available for download</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2161"/>
+        <location filename="../UI/UserInterface.py" line="2195"/>
         <source>&lt;b&gt;Show downloadable versions...&lt;/b&gt;&lt;p&gt;Shows the eric6 versions available for download from the internet.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2174"/>
-        <source>Show Error Log</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2170"/>
-        <source>Show Error &amp;Log...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2175"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
-        <source>Report Bug</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2196"/>
-        <source>Report &amp;Bug...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2200"/>
-        <source>Report a bug</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2201"/>
-        <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"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2208"/>
+        <source>Show Error Log</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2204"/>
+        <source>Show Error &amp;Log...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2209"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3779"/>
+        <source>Report Bug</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2230"/>
+        <source>Report &amp;Bug...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2234"/>
+        <source>Report a bug</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2235"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2242"/>
         <source>Request Feature</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2208"/>
-        <source>Request &amp;Feature...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2212"/>
-        <source>Send a feature request</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2214"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3279"/>
-        <source>Unittest</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2223"/>
-        <source>&amp;Unittest...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2228"/>
-        <source>Start unittest dialog</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2229"/>
-        <source>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Perform unit tests. The dialog gives you the ability to select and run a unittest suite.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
-        <source>Unittest Restart</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
-        <source>&amp;Restart Unittest...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2242"/>
+        <source>Request &amp;Feature...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2246"/>
+        <source>Send a feature request</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2248"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3313"/>
+        <source>Unittest</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2257"/>
+        <source>&amp;Unittest...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2262"/>
+        <source>Start unittest dialog</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2263"/>
+        <source>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Perform unit tests. The dialog gives you the ability to select and run a unittest suite.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2271"/>
+        <source>Unittest Restart</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2271"/>
+        <source>&amp;Restart Unittest...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>Restart last unittest</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2243"/>
+        <location filename="../UI/UserInterface.py" line="2277"/>
         <source>&lt;b&gt;Restart Unittest&lt;/b&gt;&lt;p&gt;Restart the unittest performed last.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2251"/>
+        <location filename="../UI/UserInterface.py" line="2285"/>
         <source>Unittest Rerun Failed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2251"/>
+        <location filename="../UI/UserInterface.py" line="2285"/>
         <source>Rerun Failed Tests...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2256"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Rerun failed tests of the last run</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2258"/>
+        <location filename="../UI/UserInterface.py" line="2292"/>
         <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last unittest run.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2267"/>
+        <location filename="../UI/UserInterface.py" line="2301"/>
         <source>Unittest Script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2267"/>
+        <location filename="../UI/UserInterface.py" line="2301"/>
         <source>Unittest &amp;Script...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2272"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Run unittest with current script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2274"/>
+        <location filename="../UI/UserInterface.py" line="2308"/>
         <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2282"/>
+        <location filename="../UI/UserInterface.py" line="2316"/>
         <source>Unittest Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2282"/>
+        <location filename="../UI/UserInterface.py" line="2316"/>
         <source>Unittest &amp;Project...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2287"/>
+        <location filename="../UI/UserInterface.py" line="2321"/>
         <source>Run unittest with current project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2289"/>
+        <location filename="../UI/UserInterface.py" line="2323"/>
         <source>&lt;b&gt;Unittest Project&lt;/b&gt;&lt;p&gt;Run unittest with current project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2309"/>
+        <location filename="../UI/UserInterface.py" line="2343"/>
         <source>Qt-Designer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2309"/>
+        <location filename="../UI/UserInterface.py" line="2343"/>
         <source>Qt-&amp;Designer...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2314"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Start Qt-Designer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2315"/>
+        <location filename="../UI/UserInterface.py" line="2349"/>
         <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2335"/>
+        <location filename="../UI/UserInterface.py" line="2369"/>
         <source>Qt-Linguist</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2335"/>
+        <location filename="../UI/UserInterface.py" line="2369"/>
         <source>Qt-&amp;Linguist...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2340"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Start Qt-Linguist</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2341"/>
+        <location filename="../UI/UserInterface.py" line="2375"/>
         <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2350"/>
+        <location filename="../UI/UserInterface.py" line="2384"/>
         <source>UI Previewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2350"/>
+        <location filename="../UI/UserInterface.py" line="2384"/>
         <source>&amp;UI Previewer...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2355"/>
+        <location filename="../UI/UserInterface.py" line="2389"/>
         <source>Start the UI Previewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2356"/>
-        <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2363"/>
-        <source>Translations Previewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2363"/>
-        <source>&amp;Translations Previewer...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2368"/>
-        <source>Start the Translations Previewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2370"/>
-        <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2377"/>
-        <source>Compare Files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2377"/>
-        <source>&amp;Compare Files...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2395"/>
-        <source>Compare two files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2383"/>
-        <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"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2390"/>
-        <source>Compare Files side by side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2390"/>
-        <source>Compare &amp;Files side by side...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2396"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2404"/>
-        <source>SQL Browser</source>
+        <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2397"/>
+        <source>Translations Previewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2397"/>
+        <source>&amp;Translations Previewer...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2402"/>
+        <source>Start the Translations Previewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2404"/>
-        <source>SQL &amp;Browser...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2409"/>
-        <source>Browse a SQL database</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2410"/>
-        <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2422"/>
-        <source>Mini Editor</source>
+        <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2411"/>
+        <source>Compare Files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2411"/>
+        <source>&amp;Compare Files...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2429"/>
+        <source>Compare two files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2417"/>
-        <source>Mini &amp;Editor...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2423"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2430"/>
-        <source>Hex Editor</source>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2424"/>
+        <source>Compare Files side by side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2424"/>
+        <source>Compare &amp;Files side by side...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2430"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2438"/>
+        <source>SQL Browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2438"/>
+        <source>SQL &amp;Browser...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2443"/>
+        <source>Browse a SQL database</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2444"/>
+        <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2456"/>
+        <source>Mini Editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2451"/>
+        <source>Mini &amp;Editor...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2457"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2464"/>
+        <source>Hex Editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2464"/>
         <source>&amp;Hex Editor...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2435"/>
+        <location filename="../UI/UserInterface.py" line="2469"/>
         <source>Start the eric6 Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2437"/>
+        <location filename="../UI/UserInterface.py" line="2471"/>
         <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2445"/>
+        <location filename="../UI/UserInterface.py" line="2479"/>
         <source>eric6 Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2445"/>
+        <location filename="../UI/UserInterface.py" line="2479"/>
         <source>eric6 &amp;Web Browser...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2450"/>
+        <location filename="../UI/UserInterface.py" line="2484"/>
         <source>Start the eric6 Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2452"/>
+        <location filename="../UI/UserInterface.py" line="2486"/>
         <source>&lt;b&gt;eric6 Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric6 Web Browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2461"/>
+        <location filename="../UI/UserInterface.py" line="2495"/>
         <source>Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2461"/>
-        <source>&amp;Icon Editor...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2466"/>
-        <source>Start the eric6 Icon Editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2468"/>
-        <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Icon Editor for editing simple icons.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2475"/>
-        <source>Snapshot</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2475"/>
-        <source>&amp;Snapshot...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2480"/>
-        <source>Take snapshots of a screen region</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2482"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2490"/>
-        <source>Preferences</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2490"/>
-        <source>&amp;Preferences...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2495"/>
+        <source>&amp;Icon Editor...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2500"/>
+        <source>Start the eric6 Icon Editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2502"/>
+        <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Icon Editor for editing simple icons.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2509"/>
+        <source>Snapshot</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2509"/>
+        <source>&amp;Snapshot...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2514"/>
+        <source>Take snapshots of a screen region</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2516"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2524"/>
+        <source>Preferences</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2524"/>
+        <source>&amp;Preferences...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2529"/>
         <source>Set the prefered configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2497"/>
+        <location filename="../UI/UserInterface.py" line="2531"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2506"/>
+        <location filename="../UI/UserInterface.py" line="2540"/>
         <source>Export Preferences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2506"/>
-        <source>E&amp;xport Preferences...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2511"/>
-        <source>Export the current configuration</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2513"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2520"/>
-        <source>Import Preferences</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2520"/>
-        <source>I&amp;mport Preferences...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2525"/>
-        <source>Import a previously exported configuration</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2527"/>
-        <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2534"/>
-        <source>Reload APIs</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2534"/>
-        <source>Reload &amp;APIs</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2538"/>
-        <source>Reload the API information</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2540"/>
-        <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2552"/>
-        <source>Show external tools</source>
+        <source>E&amp;xport Preferences...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2545"/>
+        <source>Export the current configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2547"/>
-        <source>Show external &amp;tools</source>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2554"/>
+        <source>Import Preferences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2554"/>
-        <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 eric6.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2563"/>
-        <source>View Profiles</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2563"/>
-        <source>&amp;View Profiles...</source>
+        <source>I&amp;mport Preferences...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2559"/>
+        <source>Import a previously exported configuration</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2561"/>
+        <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2568"/>
-        <source>Configure view profiles</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2570"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2580"/>
-        <source>Toolbars</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2580"/>
-        <source>Tool&amp;bars...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2585"/>
-        <source>Configure toolbars</source>
+        <source>Reload APIs</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2568"/>
+        <source>Reload &amp;APIs</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2572"/>
+        <source>Reload the API information</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2574"/>
+        <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2586"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2595"/>
-        <source>Keyboard Shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2595"/>
-        <source>Keyboard &amp;Shortcuts...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2600"/>
-        <source>Set the keyboard shortcuts</source>
+        <source>Show external tools</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2581"/>
+        <source>Show external &amp;tools</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2588"/>
+        <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 eric6.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2597"/>
+        <source>View Profiles</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2597"/>
+        <source>&amp;View Profiles...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2602"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6217"/>
-        <source>Export Keyboard Shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2610"/>
-        <source>&amp;Export Keyboard Shortcuts...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2615"/>
-        <source>Export the keyboard shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2617"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6241"/>
-        <source>Import Keyboard Shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2624"/>
-        <source>&amp;Import Keyboard Shortcuts...</source>
+        <source>Configure view profiles</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2604"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2614"/>
+        <source>Toolbars</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2614"/>
+        <source>Tool&amp;bars...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2619"/>
+        <source>Configure toolbars</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2620"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2629"/>
+        <source>Keyboard Shortcuts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2629"/>
-        <source>Import the keyboard shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2631"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2639"/>
-        <source>Manage SSL Certificates</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2639"/>
-        <source>Manage SSL Certificates...</source>
+        <source>Keyboard &amp;Shortcuts...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2634"/>
+        <source>Set the keyboard shortcuts</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2636"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6251"/>
+        <source>Export Keyboard Shortcuts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2644"/>
-        <source>Manage the saved SSL certificates</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2646"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2655"/>
-        <source>Edit Message Filters</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2655"/>
-        <source>Edit Message Filters...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2660"/>
-        <source>Edit the message filters used to suppress unwanted messages</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2662"/>
-        <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>
+        <source>&amp;Export Keyboard Shortcuts...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2649"/>
+        <source>Export the keyboard shortcuts</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2651"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6275"/>
+        <source>Import Keyboard Shortcuts</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2658"/>
+        <source>&amp;Import Keyboard Shortcuts...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2663"/>
+        <source>Import the keyboard shortcuts</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2665"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2673"/>
+        <source>Manage SSL Certificates</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2673"/>
+        <source>Manage SSL Certificates...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2678"/>
-        <source>Clear private data</source>
+        <source>Manage the saved SSL certificates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2680"/>
-        <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>
+        <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"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2689"/>
-        <source>Activate current editor</source>
+        <source>Edit Message Filters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2689"/>
+        <source>Edit Message Filters...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2694"/>
+        <source>Edit the message filters used to suppress unwanted messages</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2696"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2712"/>
+        <source>Clear private data</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2714"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2723"/>
+        <source>Activate current editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2723"/>
         <source>Alt+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2699"/>
+        <location filename="../UI/UserInterface.py" line="2733"/>
         <source>Show next</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2699"/>
+        <location filename="../UI/UserInterface.py" line="2733"/>
         <source>Ctrl+Alt+Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2708"/>
+        <location filename="../UI/UserInterface.py" line="2742"/>
         <source>Show previous</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2708"/>
+        <location filename="../UI/UserInterface.py" line="2742"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2717"/>
+        <location filename="../UI/UserInterface.py" line="2751"/>
         <source>Switch between tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2717"/>
+        <location filename="../UI/UserInterface.py" line="2751"/>
         <source>Ctrl+1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2726"/>
+        <location filename="../UI/UserInterface.py" line="2760"/>
         <source>Plugin Infos</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2726"/>
+        <location filename="../UI/UserInterface.py" line="2760"/>
         <source>&amp;Plugin Infos...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2730"/>
+        <location filename="../UI/UserInterface.py" line="2764"/>
         <source>Show Plugin Infos</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2731"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2744"/>
-        <source>Install Plugins</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2739"/>
-        <source>&amp;Install Plugins...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2745"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2757"/>
-        <source>Uninstall Plugin</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2752"/>
-        <source>&amp;Uninstall Plugin...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2758"/>
-        <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"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2765"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2778"/>
+        <source>Install Plugins</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2773"/>
+        <source>&amp;Install Plugins...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2779"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2791"/>
+        <source>Uninstall Plugin</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2786"/>
+        <source>&amp;Uninstall Plugin...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2792"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2799"/>
         <source>Plugin Repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2765"/>
+        <location filename="../UI/UserInterface.py" line="2799"/>
         <source>Plugin &amp;Repository...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2770"/>
+        <location filename="../UI/UserInterface.py" line="2804"/>
         <source>Show Plugins available for download</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2772"/>
+        <location filename="../UI/UserInterface.py" line="2806"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2831"/>
+        <location filename="../UI/UserInterface.py" line="2865"/>
         <source>Qt5 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="2865"/>
+        <source>Qt&amp;5 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2869"/>
+        <source>Open Qt5 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2880"/>
+        <source>PyQt5 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2880"/>
+        <source>PyQt&amp;5 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2884"/>
+        <source>Open PyQt5 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2901"/>
+        <source>Python 3 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2901"/>
+        <source>Python &amp;3 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2905"/>
+        <source>Open Python 3 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2907"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2923"/>
+        <source>Eric API Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2923"/>
+        <source>&amp;Eric API Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2927"/>
+        <source>Open Eric API Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2929"/>
+        <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 eric6 installation directory.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3108"/>
+        <source>&amp;Unittest</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3052"/>
+        <source>E&amp;xtras</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3062"/>
+        <source>Wi&amp;zards</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3125"/>
+        <source>Select Tool Group</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3136"/>
+        <source>Se&amp;ttings</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3166"/>
+        <source>&amp;Window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3175"/>
+        <source>&amp;Windows</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3227"/>
+        <source>&amp;Toolbars</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3089"/>
+        <source>P&amp;lugins</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3098"/>
+        <source>Configure...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3241"/>
+        <source>&amp;Help</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3312"/>
+        <source>Tools</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3314"/>
+        <source>Settings</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5181"/>
+        <source>Help</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3316"/>
+        <source>Profiles</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3317"/>
+        <source>Plugins</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3486"/>
+        <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3493"/>
+        <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3500"/>
+        <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3507"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3514"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3521"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3597"/>
+        <source>External Tools/{0}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7248"/>
+        <source>&lt;/table&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3779"/>
+        <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4099"/>
+        <source>Restart application</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4099"/>
+        <source>The application needs to be restarted. Do it now?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4135"/>
+        <source>&amp;Builtin Tools</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4152"/>
+        <source>&amp;Plugin Tools</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4155"/>
+        <source>&amp;User Tools</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4180"/>
+        <source>Configure Tool Groups ...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4184"/>
+        <source>Configure current Tool Group ...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4227"/>
+        <source>No User Tools Configured</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4301"/>
+        <source>&amp;Show all</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4303"/>
+        <source>&amp;Hide all</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5309"/>
+        <source>Problem</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5309"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5504"/>
+        <source>Process Generation Error</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5034"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5104"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5148"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5181"/>
+        <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5195"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5215"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5265"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5322"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5345"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5417"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5449"/>
+        <source>External Tools</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5440"/>
+        <source>No tool entry found for external tool &apos;{0}&apos; in tool group &apos;{1}&apos;.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5449"/>
+        <source>No toolgroup entry &apos;{0}&apos; found.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5488"/>
+        <source>Starting process &apos;{0} {1}&apos;.
+</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5504"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5582"/>
+        <source>Process &apos;{0}&apos; has exited.
+</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5843"/>
+        <source>Documentation Missing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5843"/>
+        <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5826"/>
+        <source>Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5721"/>
+        <source>&lt;p&gt;The PyQt5 documentation starting point has not been configured.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6043"/>
+        <source>Open Browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6043"/>
+        <source>Could not start a web browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6275"/>
+        <source>Keyboard shortcut file (*.e4k)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6445"/>
+        <source>Save tasks</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6445"/>
+        <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6474"/>
+        <source>Read tasks</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6474"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6570"/>
+        <source>Save session</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6508"/>
+        <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6554"/>
+        <source>Read session</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6554"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6838"/>
+        <source>Drop Error</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6838"/>
+        <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7023"/>
+        <source>&amp;Cancel</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7023"/>
+        <source>%v/%m</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7027"/>
+        <source>Version Check</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7032"/>
+        <source>Trying host {0}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7098"/>
+        <source>Error getting versions information</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7043"/>
+        <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7091"/>
+        <source>The versions information could not be downloaded. Please go online and try again.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7098"/>
+        <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7190"/>
+        <source>Update available</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7190"/>
+        <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric6 is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7202"/>
+        <source>Eric6 is up to date</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7202"/>
+        <source>You are using the latest version of eric6</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7209"/>
+        <source>Error during updates check</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7209"/>
+        <source>Could not perform updates check.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7233"/>
+        <source>&lt;h3&gt;Available versions&lt;/h3&gt;&lt;table&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7285"/>
+        <source>First time usage</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7285"/>
+        <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7304"/>
+        <source>Select Workspace Directory</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1670"/>
+        <source>Save session...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1675"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6592"/>
+        <source>Load session</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1683"/>
+        <source>Load session...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1688"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6592"/>
+        <source>eric6 Session Files (*.e5s)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6643"/>
+        <source>Crash Session found!</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6643"/>
+        <source>A session file of a crashed session was found. Shall this session be restored?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="676"/>
+        <source>Cleaning Plugins Download Area...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="668"/>
+        <source>Initializing Plugins...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7178"/>
+        <source>Update Check</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7178"/>
+        <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7168"/>
+        <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2047"/>
+        <source>Code Documentation Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2870"/>
+        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2886"/>
+        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2944"/>
+        <source>PySide2 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2944"/>
+        <source>PySide&amp;2 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2948"/>
+        <source>Open PySide2 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2950"/>
+        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5826"/>
+        <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2820"/>
+        <source>Virtualenv Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2814"/>
+        <source>&amp;Virtualenv Manager...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2822"/>
+        <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2837"/>
+        <source>Virtualenv Configurator</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="2831"/>
-        <source>Qt&amp;5 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2835"/>
-        <source>Open Qt5 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2846"/>
-        <source>PyQt5 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2846"/>
-        <source>PyQt&amp;5 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2850"/>
-        <source>Open PyQt5 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2867"/>
-        <source>Python 3 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2867"/>
-        <source>Python &amp;3 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2871"/>
-        <source>Open Python 3 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2873"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2889"/>
-        <source>Eric API Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2889"/>
-        <source>&amp;Eric API Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2893"/>
-        <source>Open Eric API Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2895"/>
-        <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 eric6 installation directory.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3074"/>
-        <source>&amp;Unittest</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3018"/>
-        <source>E&amp;xtras</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3028"/>
-        <source>Wi&amp;zards</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3091"/>
-        <source>Select Tool Group</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3102"/>
-        <source>Se&amp;ttings</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3132"/>
-        <source>&amp;Window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3141"/>
-        <source>&amp;Windows</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3193"/>
-        <source>&amp;Toolbars</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3055"/>
-        <source>P&amp;lugins</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3064"/>
-        <source>Configure...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3207"/>
-        <source>&amp;Help</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3278"/>
-        <source>Tools</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3280"/>
-        <source>Settings</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5147"/>
-        <source>Help</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3282"/>
-        <source>Profiles</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3283"/>
-        <source>Plugins</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3452"/>
-        <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3459"/>
-        <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3466"/>
-        <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3473"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3480"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3487"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3563"/>
-        <source>External Tools/{0}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7214"/>
-        <source>&lt;/table&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
-        <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4065"/>
-        <source>Restart application</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4065"/>
-        <source>The application needs to be restarted. Do it now?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4101"/>
-        <source>&amp;Builtin Tools</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4118"/>
-        <source>&amp;Plugin Tools</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4121"/>
-        <source>&amp;User Tools</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4146"/>
-        <source>Configure Tool Groups ...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4150"/>
-        <source>Configure current Tool Group ...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4193"/>
-        <source>No User Tools Configured</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4267"/>
-        <source>&amp;Show all</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4269"/>
-        <source>&amp;Hide all</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5275"/>
-        <source>Problem</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5275"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5470"/>
-        <source>Process Generation Error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5000"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5070"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5114"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5147"/>
-        <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5161"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5181"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5231"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5288"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5311"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5383"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5415"/>
-        <source>External Tools</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5406"/>
-        <source>No tool entry found for external tool &apos;{0}&apos; in tool group &apos;{1}&apos;.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5415"/>
-        <source>No toolgroup entry &apos;{0}&apos; found.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5454"/>
-        <source>Starting process &apos;{0} {1}&apos;.
-</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5470"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5548"/>
-        <source>Process &apos;{0}&apos; has exited.
-</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5809"/>
-        <source>Documentation Missing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5809"/>
-        <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5792"/>
-        <source>Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5687"/>
-        <source>&lt;p&gt;The PyQt5 documentation starting point has not been configured.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6009"/>
-        <source>Open Browser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6009"/>
-        <source>Could not start a web browser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6241"/>
-        <source>Keyboard shortcut file (*.e4k)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6411"/>
-        <source>Save tasks</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6411"/>
-        <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6440"/>
-        <source>Read tasks</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6440"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6536"/>
-        <source>Save session</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6474"/>
-        <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6520"/>
-        <source>Read session</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6520"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6804"/>
-        <source>Drop Error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6804"/>
-        <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6989"/>
-        <source>&amp;Cancel</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6989"/>
-        <source>%v/%m</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6993"/>
-        <source>Version Check</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6998"/>
-        <source>Trying host {0}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7064"/>
-        <source>Error getting versions information</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7009"/>
-        <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7057"/>
-        <source>The versions information could not be downloaded. Please go online and try again.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7064"/>
-        <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7156"/>
-        <source>Update available</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7156"/>
-        <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric6 is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7168"/>
-        <source>Eric6 is up to date</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7168"/>
-        <source>You are using the latest version of eric6</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7175"/>
-        <source>Error during updates check</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7175"/>
-        <source>Could not perform updates check.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7199"/>
-        <source>&lt;h3&gt;Available versions&lt;/h3&gt;&lt;table&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7251"/>
-        <source>First time usage</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7251"/>
-        <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7270"/>
-        <source>Select Workspace Directory</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1636"/>
-        <source>Save session...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1641"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6558"/>
-        <source>Load session</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
-        <source>Load session...</source>
+        <source>Virtualenv &amp;Configurator...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2839"/>
+        <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3182"/>
+        <source>Left Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3194"/>
+        <source>Bottom Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3201"/>
+        <source>Right Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3221"/>
+        <source>Plug-ins</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1654"/>
+        <source>Restart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1654"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6558"/>
-        <source>eric6 Session Files (*.e5s)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6609"/>
-        <source>Crash Session found!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6609"/>
-        <source>A session file of a crashed session was found. Shall this session be restored?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="675"/>
-        <source>Cleaning Plugins Download Area...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="667"/>
-        <source>Initializing Plugins...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7144"/>
-        <source>Update Check</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7144"/>
-        <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7134"/>
-        <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2013"/>
-        <source>Code Documentation Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2836"/>
-        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2852"/>
-        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2910"/>
-        <source>PySide2 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2910"/>
-        <source>PySide&amp;2 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2914"/>
-        <source>Open PySide2 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2916"/>
-        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5792"/>
-        <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2786"/>
-        <source>Virtualenv Manager</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2780"/>
-        <source>&amp;Virtualenv Manager...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2788"/>
-        <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2803"/>
-        <source>Virtualenv Configurator</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2797"/>
-        <source>Virtualenv &amp;Configurator...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2805"/>
-        <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3148"/>
-        <source>Left Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3160"/>
-        <source>Bottom Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3167"/>
-        <source>Right Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3187"/>
-        <source>Plug-ins</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1620"/>
-        <source>Restart</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1620"/>
         <source>Ctrl+Shift+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1626"/>
+        <location filename="../UI/UserInterface.py" line="1660"/>
         <source>Restart the IDE</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1627"/>
+        <location filename="../UI/UserInterface.py" line="1661"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5966"/>
+        <location filename="../UI/UserInterface.py" line="6000"/>
         <source>Start Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5905"/>
+        <location filename="../UI/UserInterface.py" line="5939"/>
         <source>The eric6 web browser could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5966"/>
+        <location filename="../UI/UserInterface.py" line="6000"/>
         <source>&lt;p&gt;The eric6 web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
+        <location filename="../UI/UserInterface.py" line="2085"/>
         <source>Conda</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2033"/>
+        <location filename="../UI/UserInterface.py" line="2067"/>
         <source>PyPI</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3498"/>
+        <location filename="../UI/UserInterface.py" line="3532"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2069"/>
+        <location filename="../UI/UserInterface.py" line="2103"/>
         <source>MicroPython</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>Ctrl+Alt+Shift+I</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2013"/>
+        <location filename="../UI/UserInterface.py" line="2047"/>
         <source>Ctrl+Alt+Shift+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2019"/>
+        <location filename="../UI/UserInterface.py" line="2053"/>
         <source>Switch the input focus to the Code Documentation Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2022"/>
+        <location filename="../UI/UserInterface.py" line="2056"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2033"/>
+        <location filename="../UI/UserInterface.py" line="2067"/>
         <source>Ctrl+Alt+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2039"/>
+        <location filename="../UI/UserInterface.py" line="2073"/>
         <source>Switch the input focus to the PyPI window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2041"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
-        <source>Ctrl+Alt+Shift+C</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2057"/>
-        <source>Switch the input focus to the Conda window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2059"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2069"/>
-        <source>Ctrl+Alt+Shift+M</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2075"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2085"/>
+        <source>Ctrl+Alt+Shift+C</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2091"/>
+        <source>Switch the input focus to the Conda window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2093"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2103"/>
+        <source>Ctrl+Alt+Shift+M</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2109"/>
         <source>Switch the input focus to the MicroPython window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2077"/>
+        <location filename="../UI/UserInterface.py" line="2111"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3145"/>
+        <location filename="../UI/UserInterface.py" line="3179"/>
         <source>Central Park</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3672"/>
+        <location filename="../UI/UserInterface.py" line="3706"/>
         <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5009"/>
+        <location filename="../UI/UserInterface.py" line="5043"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5079"/>
+        <location filename="../UI/UserInterface.py" line="5113"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5123"/>
+        <location filename="../UI/UserInterface.py" line="5157"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2182"/>
+        <location filename="../UI/UserInterface.py" line="2216"/>
         <source>Show Install Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2182"/>
+        <location filename="../UI/UserInterface.py" line="2216"/>
         <source>Show Install &amp;Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2186"/>
+        <location filename="../UI/UserInterface.py" line="2220"/>
         <source>Show Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2188"/>
+        <location filename="../UI/UserInterface.py" line="2222"/>
         <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"></translation>
     </message>
@@ -79955,6 +79975,21 @@
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="744"/>
+        <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the shell window. A dialog is shown to enter the search text and options for the search.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="765"/>
+        <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="786"/>
+        <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
@@ -80417,32 +80452,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="323"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="333"/>
         <source>&lt;virtualenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="341"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="351"/>
         <source>&lt;No suitable virtualenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="343"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="353"/>
         <source>virtualenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="377"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="387"/>
         <source>&lt;pyvenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="397"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="407"/>
         <source>&lt;No suitable pyvenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="399"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="409"/>
         <source>pyvenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80582,7 +80617,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="411"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="421"/>
         <source>conda Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
--- a/eric6/i18n/eric6_en.ts	Wed Nov 11 17:51:36 2020 +0100
+++ b/eric6/i18n/eric6_en.ts	Sat Nov 14 11:50:43 2020 +0100
@@ -37992,52 +37992,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="71"/>
+        <location filename="../UI/InstallInfoDialog.py" line="70"/>
         <source>Yes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="71"/>
+        <location filename="../UI/InstallInfoDialog.py" line="70"/>
         <source>No</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="75"/>
+        <location filename="../UI/InstallInfoDialog.py" line="74"/>
         <source>&apos;eric-ide&apos; was installed from PyPI using the pip command.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="81"/>
+        <location filename="../UI/InstallInfoDialog.py" line="80"/>
         <source>The information shown in this dialog was guessed at the first start of eric.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="99"/>
+        <location filename="../UI/InstallInfoDialog.py" line="98"/>
         <source>Load Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="99"/>
+        <location filename="../UI/InstallInfoDialog.py" line="98"/>
         <source>&lt;p&gt;The file containing the install information could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="151"/>
+        <location filename="../UI/InstallInfoDialog.py" line="150"/>
         <source>Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="151"/>
+        <location filename="../UI/InstallInfoDialog.py" line="150"/>
         <source>The install information was edited. Unsaved changes will be lost. Save first?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="188"/>
+        <location filename="../UI/InstallInfoDialog.py" line="187"/>
         <source>Save Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="188"/>
+        <location filename="../UI/InstallInfoDialog.py" line="187"/>
         <source>&lt;p&gt;The file containing the install information could not be written.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -38047,17 +38047,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="61"/>
+        <location filename="../UI/InstallInfoDialog.py" line="60"/>
         <source>Installed as Administrator:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="63"/>
+        <location filename="../UI/InstallInfoDialog.py" line="62"/>
         <source>Installed with sudo:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="93"/>
+        <location filename="../UI/InstallInfoDialog.py" line="92"/>
         <source>unknown</source>
         <translation type="unfinished"></translation>
     </message>
@@ -38067,32 +38067,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="87"/>
+        <location filename="../UI/InstallInfoDialog.py" line="86"/>
         <source>The installation information was provided by the user.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="39"/>
+        <location filename="../UI/InstallInfoDialog.py" line="38"/>
         <source>Delete Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="255"/>
+        <location filename="../UI/InstallInfoDialog.py" line="254"/>
         <source>Upgrade Instructions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="201"/>
+        <location filename="../UI/InstallInfoDialog.py" line="200"/>
         <source>Delete Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="201"/>
+        <location filename="../UI/InstallInfoDialog.py" line="200"/>
         <source>Do you really want to delete the installation information? It will be recreated at the next start.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="228"/>
+        <location filename="../UI/InstallInfoDialog.py" line="227"/>
         <source>Perform the following step(s) with Administrator privileges.
 </source>
         <translation type="unfinished"></translation>
@@ -47617,12 +47617,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="143"/>
+        <location filename="../PipInterface/PipDialog.py" line="146"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="143"/>
+        <location filename="../PipInterface/PipDialog.py" line="146"/>
         <source>The process {0} could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48301,7 +48301,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="910"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="911"/>
         <source>Search PyPI</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48321,102 +48321,102 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="872"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="873"/>
         <source>Show Package Details</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="872"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="873"/>
         <source>Select the package version:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="910"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="911"/>
         <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="926"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="927"/>
         <source>Install Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="929"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="930"/>
         <source>Install Pip to User-Site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="932"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="933"/>
         <source>Repair Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1046"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1050"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="939"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="940"/>
         <source>Install Local Package</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="943"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
         <source>Install Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="946"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="947"/>
         <source>Uninstall Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="949"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="950"/>
         <source>Generate Requirements...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="967"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="968"/>
         <source>Edit User Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="970"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="971"/>
         <source>Edit Environment Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="975"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="976"/>
         <source>Configure...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1158"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1166"/>
         <source>Edit Configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1158"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1166"/>
         <source>No valid configuration path determined. Aborting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="953"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="954"/>
         <source>Show Cache Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="956"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="957"/>
         <source>Show Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="960"/>
         <source>Remove Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="962"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="963"/>
         <source>Purge Cache...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -61032,231 +61032,251 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="242"/>
-        <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected language.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="249"/>
+        <location filename="../QScintilla/ShellWindow.py" line="250"/>
         <source>Restart and Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="254"/>
+        <location filename="../QScintilla/ShellWindow.py" line="255"/>
         <source>Clear the window and restart the shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="256"/>
-        <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected language.&lt;/p&gt;</source>
+        <location filename="../QScintilla/ShellWindow.py" line="885"/>
+        <source>Show History</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="885"/>
+        <source>&amp;Show History...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="891"/>
-        <source>Show History</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="891"/>
-        <source>&amp;Show History...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="897"/>
         <source>Show the shell history in a dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="901"/>
+        <location filename="../QScintilla/ShellWindow.py" line="895"/>
         <source>Clear History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="895"/>
+        <source>&amp;Clear History...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="901"/>
-        <source>&amp;Clear History...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="907"/>
         <source>Clear the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="911"/>
+        <location filename="../QScintilla/ShellWindow.py" line="905"/>
         <source>Select History Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="911"/>
+        <location filename="../QScintilla/ShellWindow.py" line="905"/>
         <source>Select History &amp;Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="916"/>
+        <location filename="../QScintilla/ShellWindow.py" line="910"/>
         <source>Select an entry of the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="924"/>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
         <source>About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
+        <source>&amp;About</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="922"/>
+        <source>Display information about this software</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="924"/>
-        <source>&amp;About</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="928"/>
-        <source>Display information about this software</source>
+        <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="930"/>
-        <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
+        <source>About Qt</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="930"/>
+        <source>About &amp;Qt</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <source>Display information about the Qt toolkit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="936"/>
-        <source>About Qt</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="936"/>
-        <source>About &amp;Qt</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="940"/>
-        <source>Display information about the Qt toolkit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="942"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
+        <source>&amp;What&apos;s This?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
+        <source>Shift+F1</source>
+        <comment>Help|What&apos;s This?&apos;</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="949"/>
-        <source>&amp;What&apos;s This?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
-        <source>Shift+F1</source>
-        <comment>Help|What&apos;s This?&apos;</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="955"/>
         <source>Context sensitive help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="956"/>
+        <location filename="../QScintilla/ShellWindow.py" line="950"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1100"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1094"/>
         <source>About eric6 Shell Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1100"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1094"/>
         <source>The eric6 Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1128"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1122"/>
         <source>&amp;File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1137"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1131"/>
         <source>&amp;Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1148"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1142"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1155"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1149"/>
         <source>Histor&amp;y</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1156"/>
+        <source>&amp;Start</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1162"/>
-        <source>&amp;Start</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1168"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1201"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1195"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1210"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1204"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1211"/>
+        <source>Find</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1217"/>
-        <source>Find</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1223"/>
         <source>View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1224"/>
+        <source>History</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1230"/>
-        <source>History</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1236"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1257"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1251"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="585"/>
+        <location filename="../QScintilla/ShellWindow.py" line="579"/>
         <source>Move forward one history entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="595"/>
+        <location filename="../QScintilla/ShellWindow.py" line="589"/>
         <source>Move back one history entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1036"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1030"/>
         <source>eric6 Shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1034"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1028"/>
         <source>eric6 Shell [{0}]</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="242"/>
+        <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected environment.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="257"/>
+        <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected environment.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="284"/>
+        <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text to the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="302"/>
+        <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="320"/>
+        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="337"/>
+        <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>Shelve</name>
@@ -73361,2297 +73381,2297 @@
 <context>
     <name>UserInterface</name>
     <message>
-        <location filename="../UI/UserInterface.py" line="270"/>
+        <location filename="../UI/UserInterface.py" line="271"/>
         <source>Initializing Plugin Manager...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="277"/>
+        <location filename="../UI/UserInterface.py" line="278"/>
         <source>Generating Main User Interface...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="327"/>
+        <location filename="../UI/UserInterface.py" line="328"/>
         <source>Setting up connections...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="584"/>
+        <location filename="../UI/UserInterface.py" line="585"/>
         <source>Initializing Tools...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="594"/>
+        <location filename="../UI/UserInterface.py" line="595"/>
         <source>Registering Objects...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="627"/>
+        <location filename="../UI/UserInterface.py" line="628"/>
         <source>Initializing Actions...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="629"/>
+        <location filename="../UI/UserInterface.py" line="630"/>
         <source>Initializing Menus...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="631"/>
+        <location filename="../UI/UserInterface.py" line="632"/>
         <source>Initializing Toolbars...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="633"/>
+        <location filename="../UI/UserInterface.py" line="634"/>
         <source>Initializing Statusbar...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="660"/>
+        <location filename="../UI/UserInterface.py" line="661"/>
         <source>Initializing Single Application Server...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="670"/>
+        <location filename="../UI/UserInterface.py" line="671"/>
         <source>Activating Plugins...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="686"/>
+        <location filename="../UI/UserInterface.py" line="687"/>
         <source>Restoring Toolbarmanager...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1715"/>
+        <location filename="../UI/UserInterface.py" line="1749"/>
         <source>Project-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1732"/>
+        <location filename="../UI/UserInterface.py" line="1766"/>
         <source>Multiproject-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1784"/>
         <source>Debug-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1122"/>
+        <location filename="../UI/UserInterface.py" line="1123"/>
         <source>Cooperation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1178"/>
+        <location filename="../UI/UserInterface.py" line="1179"/>
         <source>Symbols</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="1836"/>
+        <source>Log-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1854"/>
+        <source>Task-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1873"/>
+        <source>Template-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1188"/>
+        <source>Numbers</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1819"/>
+        <source>File-Browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="1802"/>
-        <source>Log-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
-        <source>Task-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
-        <source>Template-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1187"/>
-        <source>Numbers</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
-        <source>File-Browser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
         <source>Shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1882"/>
+        <location filename="../UI/UserInterface.py" line="1916"/>
         <source>Horizontal Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1569"/>
-        <source>{0} - Passive Mode</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1576"/>
-        <source>{0} - {1} - Passive Mode</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1580"/>
-        <source>{0} - {1} - {2} - Passive Mode</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1603"/>
-        <source>Quit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1603"/>
-        <source>&amp;Quit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1603"/>
-        <source>Ctrl+Q</source>
-        <comment>File|Quit</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1609"/>
-        <source>Quit the IDE</source>
+        <source>{0} - Passive Mode</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1610"/>
+        <source>{0} - {1} - Passive Mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1614"/>
+        <source>{0} - {1} - {2} - Passive Mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1637"/>
+        <source>Quit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1637"/>
+        <source>&amp;Quit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1637"/>
+        <source>Ctrl+Q</source>
+        <comment>File|Quit</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1643"/>
+        <source>Quit the IDE</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1644"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1681"/>
-        <source>Edit Profile</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1687"/>
-        <source>Activate the edit view profile</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1689"/>
-        <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1698"/>
-        <source>Debug Profile</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1704"/>
-        <source>Activate the debug view profile</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1706"/>
-        <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1715"/>
-        <source>&amp;Project-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1715"/>
-        <source>Alt+Shift+P</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1732"/>
-        <source>&amp;Multiproject-Viewer</source>
+        <source>Edit Profile</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1721"/>
+        <source>Activate the edit view profile</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1723"/>
+        <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1732"/>
+        <source>Debug Profile</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1738"/>
+        <source>Activate the debug view profile</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1740"/>
+        <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1749"/>
+        <source>&amp;Project-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1749"/>
+        <source>Alt+Shift+P</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1766"/>
+        <source>&amp;Multiproject-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1766"/>
         <source>Alt+Shift+M</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1784"/>
         <source>&amp;Debug-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1784"/>
         <source>Alt+Shift+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
+        <location filename="../UI/UserInterface.py" line="1802"/>
         <source>&amp;Shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
-        <source>Alt+Shift+S</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
-        <source>Alt+Shift+F</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1802"/>
+        <source>Alt+Shift+S</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1819"/>
+        <source>Alt+Shift+F</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1836"/>
         <source>Alt+Shift+G</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
+        <location filename="../UI/UserInterface.py" line="1854"/>
         <source>Alt+Shift+T</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
+        <location filename="../UI/UserInterface.py" line="1873"/>
         <source>Alt+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1882"/>
+        <location filename="../UI/UserInterface.py" line="1916"/>
         <source>&amp;Horizontal Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1886"/>
+        <location filename="../UI/UserInterface.py" line="1920"/>
         <source>Toggle the Horizontal Toolbox window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1888"/>
+        <location filename="../UI/UserInterface.py" line="1922"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1896"/>
+        <location filename="../UI/UserInterface.py" line="1930"/>
         <source>Left Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1896"/>
+        <location filename="../UI/UserInterface.py" line="1930"/>
         <source>&amp;Left Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1900"/>
+        <location filename="../UI/UserInterface.py" line="1934"/>
         <source>Toggle the left sidebar window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1901"/>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1923"/>
+        <location filename="../UI/UserInterface.py" line="1957"/>
         <source>Bottom Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1923"/>
+        <location filename="../UI/UserInterface.py" line="1957"/>
         <source>&amp;Bottom Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1927"/>
+        <location filename="../UI/UserInterface.py" line="1961"/>
         <source>Toggle the bottom sidebar window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1929"/>
+        <location filename="../UI/UserInterface.py" line="1963"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Alt+Shift+O</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>Alt+Shift+Y</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Alt+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>Shift+F1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2093"/>
+        <location filename="../UI/UserInterface.py" line="2127"/>
         <source>Context sensitive help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2094"/>
+        <location filename="../UI/UserInterface.py" line="2128"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>Helpviewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>&amp;Helpviewer...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>F1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2111"/>
+        <location filename="../UI/UserInterface.py" line="2145"/>
         <source>Open the helpviewer window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2131"/>
+        <location filename="../UI/UserInterface.py" line="2165"/>
         <source>Show Versions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2131"/>
+        <location filename="../UI/UserInterface.py" line="2165"/>
         <source>Show &amp;Versions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2135"/>
+        <location filename="../UI/UserInterface.py" line="2169"/>
         <source>Display version information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2137"/>
+        <location filename="../UI/UserInterface.py" line="2171"/>
         <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2147"/>
+        <location filename="../UI/UserInterface.py" line="2181"/>
         <source>Check for Updates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2144"/>
+        <location filename="../UI/UserInterface.py" line="2178"/>
         <source>Check for &amp;Updates...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2155"/>
+        <location filename="../UI/UserInterface.py" line="2189"/>
         <source>Show downloadable versions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2155"/>
+        <location filename="../UI/UserInterface.py" line="2189"/>
         <source>Show &amp;downloadable versions...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2159"/>
+        <location filename="../UI/UserInterface.py" line="2193"/>
         <source>Show the versions available for download</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
+        <location filename="../UI/UserInterface.py" line="3779"/>
         <source>Report Bug</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2196"/>
+        <location filename="../UI/UserInterface.py" line="2230"/>
         <source>Report &amp;Bug...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2200"/>
+        <location filename="../UI/UserInterface.py" line="2234"/>
         <source>Report a bug</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2201"/>
+        <location filename="../UI/UserInterface.py" line="2235"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2208"/>
+        <location filename="../UI/UserInterface.py" line="2242"/>
         <source>Request Feature</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2208"/>
-        <source>Request &amp;Feature...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2212"/>
-        <source>Send a feature request</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2214"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3279"/>
-        <source>Unittest</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2223"/>
-        <source>&amp;Unittest...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2228"/>
-        <source>Start unittest dialog</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2229"/>
-        <source>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Perform unit tests. The dialog gives you the ability to select and run a unittest suite.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
-        <source>Unittest Restart</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
-        <source>&amp;Restart Unittest...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2242"/>
+        <source>Request &amp;Feature...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2246"/>
+        <source>Send a feature request</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2248"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3313"/>
+        <source>Unittest</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2257"/>
+        <source>&amp;Unittest...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2262"/>
+        <source>Start unittest dialog</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2263"/>
+        <source>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Perform unit tests. The dialog gives you the ability to select and run a unittest suite.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2271"/>
+        <source>Unittest Restart</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2271"/>
+        <source>&amp;Restart Unittest...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>Restart last unittest</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2243"/>
+        <location filename="../UI/UserInterface.py" line="2277"/>
         <source>&lt;b&gt;Restart Unittest&lt;/b&gt;&lt;p&gt;Restart the unittest performed last.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2267"/>
+        <location filename="../UI/UserInterface.py" line="2301"/>
         <source>Unittest Script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2267"/>
+        <location filename="../UI/UserInterface.py" line="2301"/>
         <source>Unittest &amp;Script...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2272"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Run unittest with current script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2274"/>
+        <location filename="../UI/UserInterface.py" line="2308"/>
         <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2282"/>
+        <location filename="../UI/UserInterface.py" line="2316"/>
         <source>Unittest Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2282"/>
+        <location filename="../UI/UserInterface.py" line="2316"/>
         <source>Unittest &amp;Project...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2287"/>
+        <location filename="../UI/UserInterface.py" line="2321"/>
         <source>Run unittest with current project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2289"/>
+        <location filename="../UI/UserInterface.py" line="2323"/>
         <source>&lt;b&gt;Unittest Project&lt;/b&gt;&lt;p&gt;Run unittest with current project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2350"/>
+        <location filename="../UI/UserInterface.py" line="2384"/>
         <source>UI Previewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2350"/>
+        <location filename="../UI/UserInterface.py" line="2384"/>
         <source>&amp;UI Previewer...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2355"/>
+        <location filename="../UI/UserInterface.py" line="2389"/>
         <source>Start the UI Previewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2356"/>
-        <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2363"/>
-        <source>Translations Previewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2363"/>
-        <source>&amp;Translations Previewer...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2368"/>
-        <source>Start the Translations Previewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2370"/>
-        <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2377"/>
-        <source>Compare Files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2377"/>
-        <source>&amp;Compare Files...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2395"/>
-        <source>Compare two files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2383"/>
-        <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"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2390"/>
-        <source>Compare Files side by side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2396"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2404"/>
-        <source>SQL Browser</source>
+        <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2397"/>
+        <source>Translations Previewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2397"/>
+        <source>&amp;Translations Previewer...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2402"/>
+        <source>Start the Translations Previewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2404"/>
-        <source>SQL &amp;Browser...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2409"/>
-        <source>Browse a SQL database</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2410"/>
-        <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2422"/>
-        <source>Mini Editor</source>
+        <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2411"/>
+        <source>Compare Files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2411"/>
+        <source>&amp;Compare Files...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2429"/>
+        <source>Compare two files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2417"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2424"/>
+        <source>Compare Files side by side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2430"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2438"/>
+        <source>SQL Browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2438"/>
+        <source>SQL &amp;Browser...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2443"/>
+        <source>Browse a SQL database</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2444"/>
+        <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2456"/>
+        <source>Mini Editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2451"/>
         <source>Mini &amp;Editor...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2423"/>
+        <location filename="../UI/UserInterface.py" line="2457"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2461"/>
+        <location filename="../UI/UserInterface.py" line="2495"/>
         <source>Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2461"/>
-        <source>&amp;Icon Editor...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2490"/>
-        <source>Preferences</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2490"/>
-        <source>&amp;Preferences...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2495"/>
+        <source>&amp;Icon Editor...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2524"/>
+        <source>Preferences</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2524"/>
+        <source>&amp;Preferences...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2529"/>
         <source>Set the prefered configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2497"/>
+        <location filename="../UI/UserInterface.py" line="2531"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2506"/>
+        <location filename="../UI/UserInterface.py" line="2540"/>
         <source>Export Preferences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2506"/>
-        <source>E&amp;xport Preferences...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2511"/>
-        <source>Export the current configuration</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2513"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2520"/>
-        <source>Import Preferences</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2520"/>
-        <source>I&amp;mport Preferences...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2525"/>
-        <source>Import a previously exported configuration</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2527"/>
-        <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2534"/>
-        <source>Reload APIs</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2534"/>
-        <source>Reload &amp;APIs</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2538"/>
-        <source>Reload the API information</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2540"/>
-        <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2552"/>
-        <source>Show external tools</source>
+        <source>E&amp;xport Preferences...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2545"/>
+        <source>Export the current configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2547"/>
-        <source>Show external &amp;tools</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2563"/>
-        <source>View Profiles</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2563"/>
-        <source>&amp;View Profiles...</source>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2554"/>
+        <source>Import Preferences</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2554"/>
+        <source>I&amp;mport Preferences...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2559"/>
+        <source>Import a previously exported configuration</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2561"/>
+        <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2568"/>
-        <source>Configure view profiles</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2570"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2580"/>
-        <source>Toolbars</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2580"/>
-        <source>Tool&amp;bars...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2585"/>
-        <source>Configure toolbars</source>
+        <source>Reload APIs</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2568"/>
+        <source>Reload &amp;APIs</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2572"/>
+        <source>Reload the API information</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2574"/>
+        <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2586"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2595"/>
-        <source>Keyboard Shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2595"/>
-        <source>Keyboard &amp;Shortcuts...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2600"/>
-        <source>Set the keyboard shortcuts</source>
+        <source>Show external tools</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2581"/>
+        <source>Show external &amp;tools</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2597"/>
+        <source>View Profiles</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2597"/>
+        <source>&amp;View Profiles...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2602"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6217"/>
-        <source>Export Keyboard Shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2610"/>
-        <source>&amp;Export Keyboard Shortcuts...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2615"/>
-        <source>Export the keyboard shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2617"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6241"/>
-        <source>Import Keyboard Shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2624"/>
-        <source>&amp;Import Keyboard Shortcuts...</source>
+        <source>Configure view profiles</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2604"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2614"/>
+        <source>Toolbars</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2614"/>
+        <source>Tool&amp;bars...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2619"/>
+        <source>Configure toolbars</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2620"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2629"/>
+        <source>Keyboard Shortcuts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2629"/>
+        <source>Keyboard &amp;Shortcuts...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2634"/>
+        <source>Set the keyboard shortcuts</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2636"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6251"/>
+        <source>Export Keyboard Shortcuts</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2644"/>
+        <source>&amp;Export Keyboard Shortcuts...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2649"/>
+        <source>Export the keyboard shortcuts</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2651"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6275"/>
+        <source>Import Keyboard Shortcuts</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2658"/>
+        <source>&amp;Import Keyboard Shortcuts...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2663"/>
         <source>Import the keyboard shortcuts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2631"/>
+        <location filename="../UI/UserInterface.py" line="2665"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2689"/>
+        <location filename="../UI/UserInterface.py" line="2723"/>
         <source>Activate current editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2689"/>
+        <location filename="../UI/UserInterface.py" line="2723"/>
         <source>Alt+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2699"/>
+        <location filename="../UI/UserInterface.py" line="2733"/>
         <source>Show next</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2699"/>
+        <location filename="../UI/UserInterface.py" line="2733"/>
         <source>Ctrl+Alt+Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2708"/>
+        <location filename="../UI/UserInterface.py" line="2742"/>
         <source>Show previous</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2708"/>
+        <location filename="../UI/UserInterface.py" line="2742"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2717"/>
+        <location filename="../UI/UserInterface.py" line="2751"/>
         <source>Switch between tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2717"/>
+        <location filename="../UI/UserInterface.py" line="2751"/>
         <source>Ctrl+1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2726"/>
+        <location filename="../UI/UserInterface.py" line="2760"/>
         <source>Plugin Infos</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2726"/>
+        <location filename="../UI/UserInterface.py" line="2760"/>
         <source>&amp;Plugin Infos...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2730"/>
+        <location filename="../UI/UserInterface.py" line="2764"/>
         <source>Show Plugin Infos</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2731"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2744"/>
-        <source>Install Plugins</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2739"/>
-        <source>&amp;Install Plugins...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2745"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2757"/>
-        <source>Uninstall Plugin</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2752"/>
-        <source>&amp;Uninstall Plugin...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2758"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2765"/>
-        <source>Plugin Repository</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2765"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2778"/>
+        <source>Install Plugins</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2773"/>
+        <source>&amp;Install Plugins...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2779"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2791"/>
+        <source>Uninstall Plugin</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2786"/>
+        <source>&amp;Uninstall Plugin...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2792"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2799"/>
+        <source>Plugin Repository</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2799"/>
         <source>Plugin &amp;Repository...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2770"/>
+        <location filename="../UI/UserInterface.py" line="2804"/>
         <source>Show Plugins available for download</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2772"/>
+        <location filename="../UI/UserInterface.py" line="2806"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2889"/>
+        <location filename="../UI/UserInterface.py" line="2923"/>
         <source>Eric API Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2889"/>
+        <location filename="../UI/UserInterface.py" line="2923"/>
         <source>&amp;Eric API Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2893"/>
+        <location filename="../UI/UserInterface.py" line="2927"/>
         <source>Open Eric API Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3074"/>
+        <location filename="../UI/UserInterface.py" line="3108"/>
         <source>&amp;Unittest</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3018"/>
+        <location filename="../UI/UserInterface.py" line="3052"/>
         <source>E&amp;xtras</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3028"/>
+        <location filename="../UI/UserInterface.py" line="3062"/>
         <source>Wi&amp;zards</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3091"/>
+        <location filename="../UI/UserInterface.py" line="3125"/>
         <source>Select Tool Group</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3102"/>
+        <location filename="../UI/UserInterface.py" line="3136"/>
         <source>Se&amp;ttings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3132"/>
+        <location filename="../UI/UserInterface.py" line="3166"/>
         <source>&amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3193"/>
+        <location filename="../UI/UserInterface.py" line="3227"/>
         <source>&amp;Toolbars</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3055"/>
+        <location filename="../UI/UserInterface.py" line="3089"/>
         <source>P&amp;lugins</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3064"/>
+        <location filename="../UI/UserInterface.py" line="3098"/>
         <source>Configure...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3207"/>
+        <location filename="../UI/UserInterface.py" line="3241"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3278"/>
+        <location filename="../UI/UserInterface.py" line="3312"/>
         <source>Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3280"/>
+        <location filename="../UI/UserInterface.py" line="3314"/>
         <source>Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5147"/>
+        <location filename="../UI/UserInterface.py" line="5181"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3282"/>
+        <location filename="../UI/UserInterface.py" line="3316"/>
         <source>Profiles</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3283"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <source>Plugins</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3452"/>
+        <location filename="../UI/UserInterface.py" line="3486"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3459"/>
+        <location filename="../UI/UserInterface.py" line="3493"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3466"/>
+        <location filename="../UI/UserInterface.py" line="3500"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3473"/>
+        <location filename="../UI/UserInterface.py" line="3507"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3480"/>
+        <location filename="../UI/UserInterface.py" line="3514"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3487"/>
+        <location filename="../UI/UserInterface.py" line="3521"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3563"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>External Tools/{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7214"/>
+        <location filename="../UI/UserInterface.py" line="7248"/>
         <source>&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
+        <location filename="../UI/UserInterface.py" line="3779"/>
         <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4065"/>
+        <location filename="../UI/UserInterface.py" line="4099"/>
         <source>Restart application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4065"/>
+        <location filename="../UI/UserInterface.py" line="4099"/>
         <source>The application needs to be restarted. Do it now?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4146"/>
+        <location filename="../UI/UserInterface.py" line="4180"/>
         <source>Configure Tool Groups ...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4150"/>
+        <location filename="../UI/UserInterface.py" line="4184"/>
         <source>Configure current Tool Group ...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4101"/>
+        <location filename="../UI/UserInterface.py" line="4135"/>
         <source>&amp;Builtin Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4118"/>
+        <location filename="../UI/UserInterface.py" line="4152"/>
         <source>&amp;Plugin Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4267"/>
+        <location filename="../UI/UserInterface.py" line="4301"/>
         <source>&amp;Show all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4269"/>
+        <location filename="../UI/UserInterface.py" line="4303"/>
         <source>&amp;Hide all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5275"/>
+        <location filename="../UI/UserInterface.py" line="5309"/>
         <source>Problem</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5275"/>
+        <location filename="../UI/UserInterface.py" line="5309"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5470"/>
+        <location filename="../UI/UserInterface.py" line="5504"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5000"/>
+        <location filename="../UI/UserInterface.py" line="5034"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5070"/>
+        <location filename="../UI/UserInterface.py" line="5104"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5114"/>
+        <location filename="../UI/UserInterface.py" line="5148"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5147"/>
-        <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5161"/>
-        <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"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="5181"/>
+        <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5195"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5215"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5231"/>
+        <location filename="../UI/UserInterface.py" line="5265"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5288"/>
+        <location filename="../UI/UserInterface.py" line="5322"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5311"/>
+        <location filename="../UI/UserInterface.py" line="5345"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5415"/>
+        <location filename="../UI/UserInterface.py" line="5449"/>
         <source>External Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5406"/>
+        <location filename="../UI/UserInterface.py" line="5440"/>
         <source>No tool entry found for external tool &apos;{0}&apos; in tool group &apos;{1}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5415"/>
+        <location filename="../UI/UserInterface.py" line="5449"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5454"/>
+        <location filename="../UI/UserInterface.py" line="5488"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5470"/>
+        <location filename="../UI/UserInterface.py" line="5504"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5548"/>
+        <location filename="../UI/UserInterface.py" line="5582"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5809"/>
+        <location filename="../UI/UserInterface.py" line="5843"/>
         <source>Documentation Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5809"/>
+        <location filename="../UI/UserInterface.py" line="5843"/>
         <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5792"/>
+        <location filename="../UI/UserInterface.py" line="5826"/>
         <source>Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6241"/>
+        <location filename="../UI/UserInterface.py" line="6275"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6411"/>
+        <location filename="../UI/UserInterface.py" line="6445"/>
         <source>Save tasks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6411"/>
+        <location filename="../UI/UserInterface.py" line="6445"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6440"/>
+        <location filename="../UI/UserInterface.py" line="6474"/>
         <source>Read tasks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6440"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6536"/>
-        <source>Save session</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="6474"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6570"/>
+        <source>Save session</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6508"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6520"/>
+        <location filename="../UI/UserInterface.py" line="6554"/>
         <source>Read session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6520"/>
+        <location filename="../UI/UserInterface.py" line="6554"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6804"/>
+        <location filename="../UI/UserInterface.py" line="6838"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6804"/>
+        <location filename="../UI/UserInterface.py" line="6838"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6989"/>
+        <location filename="../UI/UserInterface.py" line="7023"/>
         <source>&amp;Cancel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6998"/>
+        <location filename="../UI/UserInterface.py" line="7032"/>
         <source>Trying host {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7156"/>
+        <location filename="../UI/UserInterface.py" line="7190"/>
         <source>Update available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7175"/>
+        <location filename="../UI/UserInterface.py" line="7209"/>
         <source>Error during updates check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7175"/>
+        <location filename="../UI/UserInterface.py" line="7209"/>
         <source>Could not perform updates check.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7199"/>
+        <location filename="../UI/UserInterface.py" line="7233"/>
         <source>&lt;h3&gt;Available versions&lt;/h3&gt;&lt;table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7251"/>
+        <location filename="../UI/UserInterface.py" line="7285"/>
         <source>First time usage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2867"/>
+        <location filename="../UI/UserInterface.py" line="2901"/>
         <source>Python 3 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2867"/>
+        <location filename="../UI/UserInterface.py" line="2901"/>
         <source>Python &amp;3 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2871"/>
+        <location filename="../UI/UserInterface.py" line="2905"/>
         <source>Open Python 3 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7064"/>
+        <location filename="../UI/UserInterface.py" line="7098"/>
         <source>Error getting versions information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7057"/>
+        <location filename="../UI/UserInterface.py" line="7091"/>
         <source>The versions information could not be downloaded. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6009"/>
+        <location filename="../UI/UserInterface.py" line="6043"/>
         <source>Open Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6009"/>
+        <location filename="../UI/UserInterface.py" line="6043"/>
         <source>Could not start a web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7064"/>
+        <location filename="../UI/UserInterface.py" line="7098"/>
         <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="695"/>
+        <location filename="../UI/UserInterface.py" line="696"/>
         <source>Setting View Profile...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="708"/>
+        <location filename="../UI/UserInterface.py" line="709"/>
         <source>Reading Tasks...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="713"/>
+        <location filename="../UI/UserInterface.py" line="714"/>
         <source>Reading Templates...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="718"/>
+        <location filename="../UI/UserInterface.py" line="719"/>
         <source>Starting Debugger...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>New Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>New &amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2251"/>
+        <location filename="../UI/UserInterface.py" line="2285"/>
         <source>Unittest Rerun Failed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2251"/>
+        <location filename="../UI/UserInterface.py" line="2285"/>
         <source>Rerun Failed Tests...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2256"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Rerun failed tests of the last run</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2258"/>
+        <location filename="../UI/UserInterface.py" line="2292"/>
         <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last unittest run.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2390"/>
+        <location filename="../UI/UserInterface.py" line="2424"/>
         <source>Compare &amp;Files side by side...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2475"/>
+        <location filename="../UI/UserInterface.py" line="2509"/>
         <source>Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2475"/>
+        <location filename="../UI/UserInterface.py" line="2509"/>
         <source>&amp;Snapshot...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2480"/>
+        <location filename="../UI/UserInterface.py" line="2514"/>
         <source>Take snapshots of a screen region</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2482"/>
+        <location filename="../UI/UserInterface.py" line="2516"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5383"/>
+        <location filename="../UI/UserInterface.py" line="5417"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7270"/>
+        <location filename="../UI/UserInterface.py" line="7304"/>
         <source>Select Workspace Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
+        <location filename="../UI/UserInterface.py" line="1891"/>
         <source>Left Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1869"/>
+        <location filename="../UI/UserInterface.py" line="1903"/>
         <source>Right Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1721"/>
+        <location filename="../UI/UserInterface.py" line="1755"/>
         <source>Switch the input focus to the Project-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1723"/>
+        <location filename="../UI/UserInterface.py" line="1757"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1738"/>
+        <location filename="../UI/UserInterface.py" line="1772"/>
         <source>Switch the input focus to the Multiproject-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1740"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1756"/>
-        <source>Switch the input focus to the Debug-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1758"/>
-        <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"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1774"/>
-        <source>Switch the input focus to the Shell window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1776"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
-        <source>&amp;File-Browser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1791"/>
-        <source>Switch the input focus to the File-Browser window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1793"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1802"/>
-        <source>Lo&amp;g-Viewer</source>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1790"/>
+        <source>Switch the input focus to the Debug-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1792"/>
+        <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"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1808"/>
-        <source>Switch the input focus to the Log-Viewer window.</source>
+        <source>Switch the input focus to the Shell window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1810"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1819"/>
+        <source>&amp;File-Browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1825"/>
+        <source>Switch the input focus to the File-Browser window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1827"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1836"/>
+        <source>Lo&amp;g-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1842"/>
+        <source>Switch the input focus to the Log-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1844"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
+        <location filename="../UI/UserInterface.py" line="1854"/>
         <source>&amp;Task-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1826"/>
-        <source>Switch the input focus to the Task-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
-        <source>Templ&amp;ate-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1845"/>
-        <source>Switch the input focus to the Template-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1847"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
-        <source>&amp;Left Toolbox</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1860"/>
-        <source>Toggle the Left Toolbox window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1861"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1869"/>
-        <source>&amp;Right Toolbox</source>
+        <source>Switch the input focus to the Task-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1873"/>
+        <source>Templ&amp;ate-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1879"/>
+        <source>Switch the input focus to the Template-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1881"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1891"/>
+        <source>&amp;Left Toolbox</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1894"/>
+        <source>Toggle the Left Toolbox window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1895"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1903"/>
+        <source>&amp;Right Toolbox</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1907"/>
         <source>Toggle the Right Toolbox window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1874"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1909"/>
+        <location filename="../UI/UserInterface.py" line="1943"/>
         <source>Right Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1909"/>
+        <location filename="../UI/UserInterface.py" line="1943"/>
         <source>&amp;Right Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1913"/>
+        <location filename="../UI/UserInterface.py" line="1947"/>
         <source>Toggle the right sidebar window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1915"/>
+        <location filename="../UI/UserInterface.py" line="1949"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Cooperation-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Co&amp;operation-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1944"/>
+        <location filename="../UI/UserInterface.py" line="1978"/>
         <source>Switch the input focus to the Cooperation-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1946"/>
+        <location filename="../UI/UserInterface.py" line="1980"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>Symbols-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>S&amp;ymbols-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1981"/>
+        <location filename="../UI/UserInterface.py" line="2015"/>
         <source>Switch the input focus to the Symbols-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1983"/>
+        <location filename="../UI/UserInterface.py" line="2017"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Numbers-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Num&amp;bers-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2000"/>
+        <location filename="../UI/UserInterface.py" line="2034"/>
         <source>Switch the input focus to the Numbers-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2002"/>
+        <location filename="../UI/UserInterface.py" line="2036"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3141"/>
+        <location filename="../UI/UserInterface.py" line="3175"/>
         <source>&amp;Windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1828"/>
+        <location filename="../UI/UserInterface.py" line="1862"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>IRC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>&amp;IRC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1963"/>
+        <location filename="../UI/UserInterface.py" line="1997"/>
         <source>Switch the input focus to the IRC window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1965"/>
+        <location filename="../UI/UserInterface.py" line="1999"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2309"/>
+        <location filename="../UI/UserInterface.py" line="2343"/>
         <source>Qt-Designer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2309"/>
+        <location filename="../UI/UserInterface.py" line="2343"/>
         <source>Qt-&amp;Designer...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2314"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Start Qt-Designer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2315"/>
+        <location filename="../UI/UserInterface.py" line="2349"/>
         <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2335"/>
+        <location filename="../UI/UserInterface.py" line="2369"/>
         <source>Qt-Linguist</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2335"/>
+        <location filename="../UI/UserInterface.py" line="2369"/>
         <source>Qt-&amp;Linguist...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2340"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Start Qt-Linguist</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2341"/>
+        <location filename="../UI/UserInterface.py" line="2375"/>
         <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2831"/>
+        <location filename="../UI/UserInterface.py" line="2865"/>
         <source>Qt5 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2831"/>
+        <location filename="../UI/UserInterface.py" line="2865"/>
         <source>Qt&amp;5 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2835"/>
+        <location filename="../UI/UserInterface.py" line="2869"/>
         <source>Open Qt5 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2639"/>
+        <location filename="../UI/UserInterface.py" line="2673"/>
         <source>Manage SSL Certificates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2639"/>
+        <location filename="../UI/UserInterface.py" line="2673"/>
         <source>Manage SSL Certificates...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2644"/>
+        <location filename="../UI/UserInterface.py" line="2678"/>
         <source>Manage the saved SSL certificates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2646"/>
+        <location filename="../UI/UserInterface.py" line="2680"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2655"/>
+        <location filename="../UI/UserInterface.py" line="2689"/>
         <source>Edit Message Filters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2655"/>
+        <location filename="../UI/UserInterface.py" line="2689"/>
         <source>Edit Message Filters...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2660"/>
+        <location filename="../UI/UserInterface.py" line="2694"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2662"/>
+        <location filename="../UI/UserInterface.py" line="2696"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2846"/>
+        <location filename="../UI/UserInterface.py" line="2880"/>
         <source>PyQt5 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2846"/>
+        <location filename="../UI/UserInterface.py" line="2880"/>
         <source>PyQt&amp;5 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2850"/>
+        <location filename="../UI/UserInterface.py" line="2884"/>
         <source>Open PyQt5 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5687"/>
+        <location filename="../UI/UserInterface.py" line="5721"/>
         <source>&lt;p&gt;The PyQt5 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2873"/>
+        <location filename="../UI/UserInterface.py" line="2907"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6989"/>
+        <location filename="../UI/UserInterface.py" line="7023"/>
         <source>%v/%m</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2174"/>
+        <location filename="../UI/UserInterface.py" line="2208"/>
         <source>Show Error Log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2170"/>
+        <location filename="../UI/UserInterface.py" line="2204"/>
         <source>Show Error &amp;Log...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2175"/>
+        <location filename="../UI/UserInterface.py" line="2209"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6993"/>
+        <location filename="../UI/UserInterface.py" line="7027"/>
         <source>Version Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1668"/>
+        <location filename="../UI/UserInterface.py" line="1702"/>
         <source>Open a new eric6 instance</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="1704"/>
+        <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric6 IDE.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2147"/>
+        <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric6 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 search in the Qt help collection.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2182"/>
+        <source>&lt;b&gt;Check for Updates...&lt;/b&gt;&lt;p&gt;Checks the internet for updates of eric6.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2195"/>
+        <source>&lt;b&gt;Show downloadable versions...&lt;/b&gt;&lt;p&gt;Shows the eric6 versions available for download from the internet.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2479"/>
+        <source>eric6 Web Browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2479"/>
+        <source>eric6 &amp;Web Browser...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2484"/>
+        <source>Start the eric6 Web Browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2486"/>
+        <source>&lt;b&gt;eric6 Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric6 Web Browser.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2500"/>
+        <source>Start the eric6 Icon Editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2502"/>
+        <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Icon Editor for editing simple icons.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2588"/>
+        <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 eric6.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2929"/>
+        <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 eric6 installation directory.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7190"/>
+        <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric6 is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7202"/>
+        <source>Eric6 is up to date</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7202"/>
+        <source>You are using the latest version of eric6</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7285"/>
+        <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="673"/>
+        <source>Generating Plugins Toolbars...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4155"/>
+        <source>&amp;User Tools</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4227"/>
+        <source>No User Tools Configured</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7043"/>
+        <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2464"/>
+        <source>Hex Editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2464"/>
+        <source>&amp;Hex Editor...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2469"/>
+        <source>Start the eric6 Hex Editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2471"/>
+        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2712"/>
+        <source>Clear private data</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2714"/>
+        <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"></translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="1670"/>
-        <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric6 IDE.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2113"/>
-        <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric6 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 search in the Qt help collection.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2148"/>
-        <source>&lt;b&gt;Check for Updates...&lt;/b&gt;&lt;p&gt;Checks the internet for updates of eric6.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2161"/>
-        <source>&lt;b&gt;Show downloadable versions...&lt;/b&gt;&lt;p&gt;Shows the eric6 versions available for download from the internet.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2445"/>
-        <source>eric6 Web Browser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2445"/>
-        <source>eric6 &amp;Web Browser...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2450"/>
-        <source>Start the eric6 Web Browser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2452"/>
-        <source>&lt;b&gt;eric6 Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric6 Web Browser.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2466"/>
-        <source>Start the eric6 Icon Editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2468"/>
-        <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Icon Editor for editing simple icons.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2554"/>
-        <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 eric6.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2895"/>
-        <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 eric6 installation directory.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7156"/>
-        <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric6 is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7168"/>
-        <source>Eric6 is up to date</source>
+        <source>Save session...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1675"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6592"/>
+        <source>Load session</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1683"/>
+        <source>Load session...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1688"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6592"/>
+        <source>eric6 Session Files (*.e5s)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6643"/>
+        <source>Crash Session found!</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6643"/>
+        <source>A session file of a crashed session was found. Shall this session be restored?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="676"/>
+        <source>Cleaning Plugins Download Area...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="668"/>
+        <source>Initializing Plugins...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7178"/>
+        <source>Update Check</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7178"/>
+        <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="7168"/>
-        <source>You are using the latest version of eric6</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7251"/>
-        <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="672"/>
-        <source>Generating Plugins Toolbars...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4121"/>
-        <source>&amp;User Tools</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4193"/>
-        <source>No User Tools Configured</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7009"/>
-        <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2430"/>
-        <source>Hex Editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2430"/>
-        <source>&amp;Hex Editor...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2435"/>
-        <source>Start the eric6 Hex Editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2437"/>
-        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2678"/>
-        <source>Clear private data</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2680"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1636"/>
-        <source>Save session...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1641"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6558"/>
-        <source>Load session</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
-        <source>Load session...</source>
+        <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2047"/>
+        <source>Code Documentation Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2870"/>
+        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2886"/>
+        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2944"/>
+        <source>PySide2 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2944"/>
+        <source>PySide&amp;2 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2948"/>
+        <source>Open PySide2 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2950"/>
+        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5826"/>
+        <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2820"/>
+        <source>Virtualenv Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2814"/>
+        <source>&amp;Virtualenv Manager...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2822"/>
+        <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2837"/>
+        <source>Virtualenv Configurator</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2831"/>
+        <source>Virtualenv &amp;Configurator...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2839"/>
+        <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3182"/>
+        <source>Left Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3194"/>
+        <source>Bottom Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3201"/>
+        <source>Right Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3221"/>
+        <source>Plug-ins</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1654"/>
+        <source>Restart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1654"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6558"/>
-        <source>eric6 Session Files (*.e5s)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6609"/>
-        <source>Crash Session found!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6609"/>
-        <source>A session file of a crashed session was found. Shall this session be restored?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="675"/>
-        <source>Cleaning Plugins Download Area...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="667"/>
-        <source>Initializing Plugins...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7144"/>
-        <source>Update Check</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7144"/>
-        <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7134"/>
-        <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2013"/>
-        <source>Code Documentation Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2836"/>
-        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2852"/>
-        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2910"/>
-        <source>PySide2 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2910"/>
-        <source>PySide&amp;2 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2914"/>
-        <source>Open PySide2 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2916"/>
-        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5792"/>
-        <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2786"/>
-        <source>Virtualenv Manager</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2780"/>
-        <source>&amp;Virtualenv Manager...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2788"/>
-        <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2803"/>
-        <source>Virtualenv Configurator</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2797"/>
-        <source>Virtualenv &amp;Configurator...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2805"/>
-        <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3148"/>
-        <source>Left Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3160"/>
-        <source>Bottom Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3167"/>
-        <source>Right Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3187"/>
-        <source>Plug-ins</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1620"/>
-        <source>Restart</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1620"/>
         <source>Ctrl+Shift+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1626"/>
+        <location filename="../UI/UserInterface.py" line="1660"/>
         <source>Restart the IDE</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1627"/>
+        <location filename="../UI/UserInterface.py" line="1661"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5966"/>
+        <location filename="../UI/UserInterface.py" line="6000"/>
         <source>Start Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5905"/>
+        <location filename="../UI/UserInterface.py" line="5939"/>
         <source>The eric6 web browser could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5966"/>
+        <location filename="../UI/UserInterface.py" line="6000"/>
         <source>&lt;p&gt;The eric6 web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
+        <location filename="../UI/UserInterface.py" line="2085"/>
         <source>Conda</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2033"/>
+        <location filename="../UI/UserInterface.py" line="2067"/>
         <source>PyPI</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3498"/>
+        <location filename="../UI/UserInterface.py" line="3532"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2069"/>
+        <location filename="../UI/UserInterface.py" line="2103"/>
         <source>MicroPython</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>Ctrl+Alt+Shift+I</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2013"/>
+        <location filename="../UI/UserInterface.py" line="2047"/>
         <source>Ctrl+Alt+Shift+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2019"/>
+        <location filename="../UI/UserInterface.py" line="2053"/>
         <source>Switch the input focus to the Code Documentation Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2022"/>
+        <location filename="../UI/UserInterface.py" line="2056"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2033"/>
+        <location filename="../UI/UserInterface.py" line="2067"/>
         <source>Ctrl+Alt+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2039"/>
+        <location filename="../UI/UserInterface.py" line="2073"/>
         <source>Switch the input focus to the PyPI window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2041"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
-        <source>Ctrl+Alt+Shift+C</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2057"/>
-        <source>Switch the input focus to the Conda window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2059"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2069"/>
-        <source>Ctrl+Alt+Shift+M</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2075"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2085"/>
+        <source>Ctrl+Alt+Shift+C</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2091"/>
+        <source>Switch the input focus to the Conda window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2093"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2103"/>
+        <source>Ctrl+Alt+Shift+M</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2109"/>
         <source>Switch the input focus to the MicroPython window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2077"/>
+        <location filename="../UI/UserInterface.py" line="2111"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3145"/>
+        <location filename="../UI/UserInterface.py" line="3179"/>
         <source>Central Park</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3672"/>
+        <location filename="../UI/UserInterface.py" line="3706"/>
         <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5009"/>
+        <location filename="../UI/UserInterface.py" line="5043"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5079"/>
+        <location filename="../UI/UserInterface.py" line="5113"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5123"/>
+        <location filename="../UI/UserInterface.py" line="5157"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2182"/>
+        <location filename="../UI/UserInterface.py" line="2216"/>
         <source>Show Install Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2182"/>
+        <location filename="../UI/UserInterface.py" line="2216"/>
         <source>Show Install &amp;Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2186"/>
+        <location filename="../UI/UserInterface.py" line="2220"/>
         <source>Show Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2188"/>
+        <location filename="../UI/UserInterface.py" line="2222"/>
         <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"></translation>
     </message>
@@ -80002,6 +80022,21 @@
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="744"/>
+        <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the shell window. A dialog is shown to enter the search text and options for the search.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="765"/>
+        <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="786"/>
+        <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
@@ -80464,32 +80499,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="323"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="333"/>
         <source>&lt;virtualenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="341"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="351"/>
         <source>&lt;No suitable virtualenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="343"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="353"/>
         <source>virtualenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="377"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="387"/>
         <source>&lt;pyvenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="397"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="407"/>
         <source>&lt;No suitable pyvenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="399"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="409"/>
         <source>pyvenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80629,7 +80664,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="411"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="421"/>
         <source>conda Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
--- a/eric6/i18n/eric6_es.ts	Wed Nov 11 17:51:36 2020 +0100
+++ b/eric6/i18n/eric6_es.ts	Sat Nov 14 11:50:43 2020 +0100
@@ -1,6 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.1" language="es">
+<!DOCTYPE TS><TS version="2.0" language="es" sourcelanguage="">
 <context>
     <name>AboutDialog</name>
     <message>
@@ -2070,7 +2069,7 @@
     </message>
     <message>
         <location filename="../WebBrowser/Bookmarks/BookmarksMenu.py" line="170"/>
-        <source>Open in New Tab	Ctrl+LMB</source>
+        <source>Open in New Tab<byte value="x9"/>Ctrl+LMB</source>
         <translation>Abrir en Nueva Pestaña\tCtrl+LMB (botón izquierdo del ratón)</translation>
     </message>
 </context>
@@ -2149,7 +2148,7 @@
     </message>
     <message>
         <location filename="../WebBrowser/Bookmarks/BookmarksToolBar.py" line="90"/>
-        <source>Open in New Tab	Ctrl+LMB</source>
+        <source>Open in New Tab<byte value="x9"/>Ctrl+LMB</source>
         <translation>Abrir en Nueva Pestaña\tCtrl+LMB (botón izquierdo del ratón)</translation>
     </message>
 </context>
@@ -38183,52 +38182,52 @@
         <translation>Observaciones:</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="71"/>
+        <location filename="../UI/InstallInfoDialog.py" line="70"/>
         <source>Yes</source>
         <translation>Si</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="71"/>
+        <location filename="../UI/InstallInfoDialog.py" line="70"/>
         <source>No</source>
         <translation>No</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="75"/>
+        <location filename="../UI/InstallInfoDialog.py" line="74"/>
         <source>&apos;eric-ide&apos; was installed from PyPI using the pip command.</source>
         <translation>&apos;eric-ide&apos; se ha instalado desde PyPI utilizando el comando pip.</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="81"/>
+        <location filename="../UI/InstallInfoDialog.py" line="80"/>
         <source>The information shown in this dialog was guessed at the first start of eric.</source>
         <translation>La información mostrada en este diálogo es deducida con el primer inicio de eric.</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="99"/>
+        <location filename="../UI/InstallInfoDialog.py" line="98"/>
         <source>Load Install Information</source>
         <translation>Cargar Información de Instalación</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="99"/>
+        <location filename="../UI/InstallInfoDialog.py" line="98"/>
         <source>&lt;p&gt;The file containing the install information could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido leer el archivo que contiene la información de instalación.&lt;/p&gt;&lt;p&gt;Razón: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="151"/>
+        <location filename="../UI/InstallInfoDialog.py" line="150"/>
         <source>Install Information</source>
         <translation>Información de Instalación</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="151"/>
+        <location filename="../UI/InstallInfoDialog.py" line="150"/>
         <source>The install information was edited. Unsaved changes will be lost. Save first?</source>
         <translation>Se ha editado la información de instalación. Los cambios que no se guarden se perderán. ¿Guardar primero?</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="188"/>
+        <location filename="../UI/InstallInfoDialog.py" line="187"/>
         <source>Save Install Information</source>
         <translation>Guardar información de instalación</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="188"/>
+        <location filename="../UI/InstallInfoDialog.py" line="187"/>
         <source>&lt;p&gt;The file containing the install information could not be written.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido escribir el archivo que contiene la información de instalación.&lt;/p&gt;&lt;p&gt;Razón: {0}&lt;/p&gt;</translation>
     </message>
@@ -38238,17 +38237,17 @@
         <translation>Fecha de Instalación:</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="61"/>
+        <location filename="../UI/InstallInfoDialog.py" line="60"/>
         <source>Installed as Administrator:</source>
         <translation>Instalado como Administrador:</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="63"/>
+        <location filename="../UI/InstallInfoDialog.py" line="62"/>
         <source>Installed with sudo:</source>
         <translation>Instalado con sudo:</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="93"/>
+        <location filename="../UI/InstallInfoDialog.py" line="92"/>
         <source>unknown</source>
         <translation>desconocido</translation>
     </message>
@@ -38258,32 +38257,32 @@
         <translation>Instalado Desde:</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="87"/>
+        <location filename="../UI/InstallInfoDialog.py" line="86"/>
         <source>The installation information was provided by the user.</source>
         <translation>La información de instalación ha sido proporcionada por el usuario.</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="39"/>
+        <location filename="../UI/InstallInfoDialog.py" line="38"/>
         <source>Delete Info</source>
         <translation>Borrar Info</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="255"/>
+        <location filename="../UI/InstallInfoDialog.py" line="254"/>
         <source>Upgrade Instructions</source>
         <translation>Instrucciones de Actualización de Versión</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="201"/>
+        <location filename="../UI/InstallInfoDialog.py" line="200"/>
         <source>Delete Installation Information</source>
         <translation>Borrar Información de Instalación</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="201"/>
+        <location filename="../UI/InstallInfoDialog.py" line="200"/>
         <source>Do you really want to delete the installation information? It will be recreated at the next start.</source>
         <translation>¿Desea realmente borrar la información de instalación? Se recreará durante el siguiente inicio.</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="228"/>
+        <location filename="../UI/InstallInfoDialog.py" line="227"/>
         <source>Perform the following step(s) with Administrator privileges.
 </source>
         <translation>Llevar a cabo el(los) siguiente(s) paso(s) con privilegios de Administración.
@@ -44498,12 +44497,12 @@
     </message>
     <message>
         <location filename="../MicroPython/MicroPythonWidget.py" line="1050"/>
-        <source>µPy Chart</source>
+        <source>&#xc2;&#xb5;Py Chart</source>
         <translation>Gráfica µPy</translation>
     </message>
     <message>
         <location filename="../MicroPython/MicroPythonWidget.py" line="1130"/>
-        <source>µPy Files</source>
+        <source>&#xc2;&#xb5;Py Files</source>
         <translation>Archivos µPy</translation>
     </message>
     <message>
@@ -47831,12 +47830,12 @@
         <translation>Errores</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="143"/>
+        <location filename="../PipInterface/PipDialog.py" line="146"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="143"/>
+        <location filename="../PipInterface/PipDialog.py" line="146"/>
         <source>The process {0} could not be started.</source>
         <translation>El proceso {0} no se ha podido iniciar.</translation>
     </message>
@@ -48515,7 +48514,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="910"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="911"/>
         <source>Search PyPI</source>
         <translation>Buscar PyPI</translation>
     </message>
@@ -48535,102 +48534,102 @@
         <translation>Error: {0}</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="872"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="873"/>
         <source>Show Package Details</source>
         <translation>Mostrar Detalles del Package</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="872"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="873"/>
         <source>Select the package version:</source>
         <translation>Seleccionar versión del package:</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="910"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="911"/>
         <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No hay info de detalles de package disponible para &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="926"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="927"/>
         <source>Install Pip</source>
         <translation>Instalar Pip</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="929"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="930"/>
         <source>Install Pip to User-Site</source>
         <translation>Instalar Pip en el Sitio de Usuario</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="932"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="933"/>
         <source>Repair Pip</source>
         <translation>Reparar Pip</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1046"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1050"/>
         <source>Install Packages</source>
         <translation>Instalar Packages</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="939"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="940"/>
         <source>Install Local Package</source>
         <translation>Instalar Package Local</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="943"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
         <source>Install Requirements</source>
         <translation>Instalar Requisitos</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="946"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="947"/>
         <source>Uninstall Requirements</source>
         <translation>Desinstalar Requisitos</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="949"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="950"/>
         <source>Generate Requirements...</source>
         <translation>Generar Requisitos...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="967"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="968"/>
         <source>Edit User Configuration...</source>
         <translation>Editar Configuración de Usuario...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="970"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="971"/>
         <source>Edit Environment Configuration...</source>
         <translation>Editar Configuración de Entorno...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="975"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="976"/>
         <source>Configure...</source>
         <translation>Configurar...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1158"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1166"/>
         <source>Edit Configuration</source>
         <translation>Editar Configuración</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1158"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1166"/>
         <source>No valid configuration path determined. Aborting</source>
         <translation>No hay una ruta válida de configuración determinada. Abortando</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="953"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="954"/>
         <source>Show Cache Info...</source>
         <translation>Mostrar info de Cache...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="956"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="957"/>
         <source>Show Cached Files...</source>
         <translation>Mostrar Archivos en Cache...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="960"/>
         <source>Remove Cached Files...</source>
         <translation>Eliminar Archivos en Cache...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="962"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="963"/>
         <source>Purge Cache...</source>
         <translation>Purgar Cache...</translation>
     </message>
@@ -62766,229 +62765,259 @@
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="242"/>
         <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected language.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Reiniciar&lt;/b&gt;&lt;p&gt;Reiniciar la shell para el lenguaje actualmente seleccionado.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="249"/>
+        <translation type="obsolete">&lt;b&gt;Reiniciar&lt;/b&gt;&lt;p&gt;Reiniciar la shell para el lenguaje actualmente seleccionado.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="250"/>
         <source>Restart and Clear</source>
         <translation>Restaurar y Limpiar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="254"/>
+        <location filename="../QScintilla/ShellWindow.py" line="255"/>
         <source>Clear the window and restart the shell</source>
         <translation>Limpiar la ventana y reiniciar la shell</translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="256"/>
         <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected language.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Reiniciar y Limpiar&lt;/b&gt;&lt;p&gt;Limpiar la ventana de shell y reiniciar la shell para el lenguaje actualmente seleccionado.&lt;/p&gt;</translation>
+        <translation type="obsolete">&lt;b&gt;Reiniciar y Limpiar&lt;/b&gt;&lt;p&gt;Limpiar la ventana de shell y reiniciar la shell para el lenguaje actualmente seleccionado.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="885"/>
+        <source>Show History</source>
+        <translation>Mostrar Historial</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="885"/>
+        <source>&amp;Show History...</source>
+        <translation>Mostrar &amp;Historial...</translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="891"/>
-        <source>Show History</source>
-        <translation>Mostrar Historial</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="891"/>
-        <source>&amp;Show History...</source>
-        <translation>Mostrar &amp;Historial...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="897"/>
         <source>Show the shell history in a dialog</source>
         <translation>Mostrar el historial de shell en un diálogo</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="895"/>
+        <source>Clear History</source>
+        <translation>Limpiar Historial</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="895"/>
+        <source>&amp;Clear History...</source>
+        <translation>&amp;Limpiar Historial...</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="901"/>
-        <source>Clear History</source>
-        <translation>Limpiar Historial</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="901"/>
-        <source>&amp;Clear History...</source>
-        <translation>&amp;Limpiar Historial...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="907"/>
         <source>Clear the shell history</source>
         <translation>Limpiar el historial de shell</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="911"/>
+        <location filename="../QScintilla/ShellWindow.py" line="905"/>
         <source>Select History Entry</source>
         <translation>Seleccionar Entrada del Historial</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="911"/>
+        <location filename="../QScintilla/ShellWindow.py" line="905"/>
         <source>Select History &amp;Entry</source>
         <translation>Seleccionar &amp;Entrada del Historial</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="916"/>
+        <location filename="../QScintilla/ShellWindow.py" line="910"/>
         <source>Select an entry of the shell history</source>
         <translation>Seleccionar una entrada del historial de shell</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
+        <source>About</source>
+        <translation>Acerca de</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
+        <source>&amp;About</source>
+        <translation>&amp;Acerca de</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="922"/>
+        <source>Display information about this software</source>
+        <translation>Mostrar información acerca de este software</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="924"/>
-        <source>About</source>
-        <translation>Acerca de</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="924"/>
-        <source>&amp;About</source>
-        <translation>&amp;Acerca de</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="928"/>
-        <source>Display information about this software</source>
-        <translation>Mostrar información acerca de este software</translation>
+        <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Acerca de&lt;/b&gt;&lt;p&gt;Mostrar información acerca de este software.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="930"/>
-        <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Acerca de&lt;/b&gt;&lt;p&gt;Mostrar información acerca de este software.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="936"/>
         <source>About Qt</source>
         <translation>Acerca de Qt</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="930"/>
+        <source>About &amp;Qt</source>
+        <translation>Acerca de &amp;Qt</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <source>Display information about the Qt toolkit</source>
+        <translation>Mostrar información sobre las herramientas Qt</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="936"/>
-        <source>About &amp;Qt</source>
-        <translation>Acerca de &amp;Qt</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="940"/>
-        <source>Display information about the Qt toolkit</source>
-        <translation>Mostrar información sobre las herramientas Qt</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="942"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Acerca de Qt&lt;/b&gt;&lt;p&gt;Mostrar información sobre las herramientas Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
         <source>What&apos;s This?</source>
         <translation>¿Qué es esto?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
         <source>&amp;What&apos;s This?</source>
         <translation>¿&amp;Qué es esto?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="955"/>
+        <location filename="../QScintilla/ShellWindow.py" line="949"/>
         <source>Context sensitive help</source>
         <translation>Ayuda sensible al contexto</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="956"/>
+        <location filename="../QScintilla/ShellWindow.py" line="950"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;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="../QScintilla/ShellWindow.py" line="1100"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1094"/>
         <source>About eric6 Shell Window</source>
         <translation>Acerca de la Ventana de Shell de eric6</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1100"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1094"/>
         <source>The eric6 Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
         <translation>La Shell de eric6 es una ventana de shell autocontenida. Usa el mismo backend que el depurador de la IDE completa, pero se ejecuta independientemente.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1128"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1122"/>
         <source>&amp;File</source>
         <translation>&amp;Archivo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1137"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1131"/>
         <source>&amp;Edit</source>
         <translation>&amp;Editar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1148"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1142"/>
         <source>&amp;View</source>
         <translation>&amp;Ver</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1155"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1149"/>
         <source>Histor&amp;y</source>
         <translation>&amp;Historial</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1156"/>
+        <source>&amp;Start</source>
+        <translation>&amp;Iniciar</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1162"/>
-        <source>&amp;Start</source>
-        <translation>&amp;Iniciar</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1168"/>
         <source>&amp;Help</source>
         <translation>A&amp;yuda</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1201"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1195"/>
         <source>File</source>
         <translation>Archivo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1210"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1204"/>
         <source>Edit</source>
         <translation>Editar</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1211"/>
+        <source>Find</source>
+        <translation>Buscar</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1217"/>
-        <source>Find</source>
-        <translation>Buscar</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1223"/>
         <source>View</source>
         <translation>Ver</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1224"/>
+        <source>History</source>
+        <translation>Historial</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1230"/>
-        <source>History</source>
-        <translation>Historial</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1236"/>
         <source>Help</source>
         <translation>Ayuda</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1257"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1251"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Esta zona de la barra de estado permite hacer zoom de la shell.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="585"/>
+        <location filename="../QScintilla/ShellWindow.py" line="579"/>
         <source>Move forward one history entry</source>
         <translation>Mover hacia adelante una entrada del historial</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="595"/>
+        <location filename="../QScintilla/ShellWindow.py" line="589"/>
         <source>Move back one history entry</source>
         <translation>Mover hacia atrás una entrada del historial</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1036"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1030"/>
         <source>eric6 Shell</source>
         <translation>eric6 Shell</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1034"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1028"/>
         <source>eric6 Shell [{0}]</source>
         <translation>eric6 Shell [{0}]</translation>
     </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="242"/>
+        <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected environment.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="257"/>
+        <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected environment.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="284"/>
+        <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text to the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished">&lt;b&gt;Cortar&lt;/b&gt;&lt;p&gt;Cortar el texto seleccionado al portapapeles.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="302"/>
+        <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished">&lt;b&gt;Copiar&lt;/b&gt;&lt;p&gt;Copiar el texto seleccionado al portapapeles.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="320"/>
+        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="337"/>
+        <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>Shelve</name>
@@ -75205,2299 +75234,2299 @@
 <context>
     <name>UserInterface</name>
     <message>
-        <location filename="../UI/UserInterface.py" line="270"/>
+        <location filename="../UI/UserInterface.py" line="271"/>
         <source>Initializing Plugin Manager...</source>
         <translation>Inicializando el administrador de Plugins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="277"/>
+        <location filename="../UI/UserInterface.py" line="278"/>
         <source>Generating Main User Interface...</source>
         <translation>Generando la interfaz general de usuario...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="327"/>
+        <location filename="../UI/UserInterface.py" line="328"/>
         <source>Setting up connections...</source>
         <translation>Aplicando conexiones...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="584"/>
+        <location filename="../UI/UserInterface.py" line="585"/>
         <source>Initializing Tools...</source>
         <translation>Inicializando Herramientas...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="594"/>
+        <location filename="../UI/UserInterface.py" line="595"/>
         <source>Registering Objects...</source>
         <translation>Registrando Objetos...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="627"/>
+        <location filename="../UI/UserInterface.py" line="628"/>
         <source>Initializing Actions...</source>
         <translation>Inicializando Acciones...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="629"/>
+        <location filename="../UI/UserInterface.py" line="630"/>
         <source>Initializing Menus...</source>
         <translation>Inicializando Menues...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="631"/>
+        <location filename="../UI/UserInterface.py" line="632"/>
         <source>Initializing Toolbars...</source>
         <translation>Inicializando Barras de Herramientas...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="633"/>
+        <location filename="../UI/UserInterface.py" line="634"/>
         <source>Initializing Statusbar...</source>
         <translation>Inicializando Barra de estado...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="660"/>
+        <location filename="../UI/UserInterface.py" line="661"/>
         <source>Initializing Single Application Server...</source>
         <translation>Incializando el servidor de aplicaciones simples...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="670"/>
+        <location filename="../UI/UserInterface.py" line="671"/>
         <source>Activating Plugins...</source>
         <translation>Activando Plugins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1715"/>
+        <location filename="../UI/UserInterface.py" line="1749"/>
         <source>Project-Viewer</source>
         <translation>Visor de Proyecto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1784"/>
         <source>Debug-Viewer</source>
         <translation>Visor Depurador</translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="1836"/>
+        <source>Log-Viewer</source>
+        <translation>Visor Log</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1854"/>
+        <source>Task-Viewer</source>
+        <translation>Visor de Tareas</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1873"/>
+        <source>Template-Viewer</source>
+        <translation>Visor de Plantillas</translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="1802"/>
-        <source>Log-Viewer</source>
-        <translation>Visor Log</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
-        <source>Task-Viewer</source>
-        <translation>Visor de Tareas</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
-        <source>Template-Viewer</source>
-        <translation>Visor de Plantillas</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
         <source>Shell</source>
         <translation>Shell</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
+        <location filename="../UI/UserInterface.py" line="1819"/>
         <source>File-Browser</source>
         <translation>Explorador de archivos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1603"/>
+        <location filename="../UI/UserInterface.py" line="1637"/>
         <source>Quit</source>
         <translation>Salir</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1603"/>
+        <location filename="../UI/UserInterface.py" line="1637"/>
         <source>&amp;Quit</source>
         <translation>&amp;Salir</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1603"/>
+        <location filename="../UI/UserInterface.py" line="1637"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1609"/>
+        <location filename="../UI/UserInterface.py" line="1643"/>
         <source>Quit the IDE</source>
         <translation>Salir del IDE</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1610"/>
+        <location filename="../UI/UserInterface.py" line="1644"/>
         <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="1681"/>
-        <source>Edit Profile</source>
-        <translation>Perfil de Edición</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1687"/>
-        <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="1689"/>
-        <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Perfil de Edición&lt;/b&gt;&lt;p&gt;Activar &quot;Perfil de Vista de Edición&quot;. Las ventanas que se muestran, si este perfil esta activo, pueden ser configuradas con el diálogo &quot;Ver Configuración de Perfil&quot;.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1698"/>
-        <source>Debug Profile</source>
-        <translation>Perfil de Depuración</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1704"/>
-        <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="1706"/>
-        <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Perfil de Depuración&lt;/b&gt;&lt;p&gt;Activar &quot;Perfil de Vista de Depuracion&quot;. Las ventanas que se muestran, si este perfil esta activo, pueden ser configuradas con el diálogo &quot;Ver Configuración de Perfil&quot;.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1715"/>
-        <source>&amp;Project-Viewer</source>
-        <translation>Visor de &amp;Proyecto</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1715"/>
-        <source>Alt+Shift+P</source>
-        <translation>Alt+Shift+P</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
-        <source>Alt+Shift+D</source>
-        <translation>Alt+Shift+D</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
-        <source>&amp;Shell</source>
-        <translation>&amp;Shell</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
-        <source>Alt+Shift+S</source>
-        <translation>Alt+Shift+S</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
-        <source>Alt+Shift+F</source>
-        <translation>Alt+Shift+F</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1802"/>
-        <source>Alt+Shift+G</source>
-        <translation>Alt+Shift+G</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
-        <source>Alt+Shift+T</source>
-        <translation>Alt+Shift+T</translation>
+        <source>Edit Profile</source>
+        <translation>Perfil de Edición</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1721"/>
+        <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="1723"/>
+        <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Perfil de Edición&lt;/b&gt;&lt;p&gt;Activar &quot;Perfil de Vista de Edición&quot;. Las ventanas que se muestran, si este perfil esta activo, pueden ser configuradas con el diálogo &quot;Ver Configuración de Perfil&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1732"/>
+        <source>Debug Profile</source>
+        <translation>Perfil de Depuración</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1738"/>
+        <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="1740"/>
+        <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Perfil de Depuración&lt;/b&gt;&lt;p&gt;Activar &quot;Perfil de Vista de Depuracion&quot;. Las ventanas que se muestran, si este perfil esta activo, pueden ser configuradas con el diálogo &quot;Ver Configuración de Perfil&quot;.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1749"/>
+        <source>&amp;Project-Viewer</source>
+        <translation>Visor de &amp;Proyecto</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1749"/>
+        <source>Alt+Shift+P</source>
+        <translation>Alt+Shift+P</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1784"/>
+        <source>Alt+Shift+D</source>
+        <translation>Alt+Shift+D</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1802"/>
+        <source>&amp;Shell</source>
+        <translation>&amp;Shell</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1802"/>
+        <source>Alt+Shift+S</source>
+        <translation>Alt+Shift+S</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1819"/>
+        <source>Alt+Shift+F</source>
+        <translation>Alt+Shift+F</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1836"/>
+        <source>Alt+Shift+G</source>
+        <translation>Alt+Shift+G</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1854"/>
+        <source>Alt+Shift+T</source>
+        <translation>Alt+Shift+T</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1766"/>
         <source>Alt+Shift+M</source>
         <translation>Alt+Shift+M</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>What&apos;s This?</source>
         <translation>¿Qué es esto?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>&amp;What&apos;s This?</source>
         <translation>¿&amp;Qué es esto?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>Shift+F1</source>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2093"/>
+        <location filename="../UI/UserInterface.py" line="2127"/>
         <source>Context sensitive help</source>
         <translation>Ayuda sensible al contexto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2094"/>
+        <location filename="../UI/UserInterface.py" line="2128"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;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="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>Helpviewer</source>
         <translation>Visor de Ayuda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>&amp;Helpviewer...</source>
         <translation>Visor de &amp;Ayuda...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>F1</source>
         <translation>F1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2111"/>
+        <location filename="../UI/UserInterface.py" line="2145"/>
         <source>Open the helpviewer window</source>
         <translation>Abrir la ventana del visor de ayuda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2131"/>
+        <location filename="../UI/UserInterface.py" line="2165"/>
         <source>Show Versions</source>
         <translation>Mostrar Versiones</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2131"/>
+        <location filename="../UI/UserInterface.py" line="2165"/>
         <source>Show &amp;Versions</source>
         <translation>Mostrar Versione&amp;s</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2135"/>
+        <location filename="../UI/UserInterface.py" line="2169"/>
         <source>Display version information</source>
         <translation>Mostrar información de versiones</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2137"/>
+        <location filename="../UI/UserInterface.py" line="2171"/>
         <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="2147"/>
+        <location filename="../UI/UserInterface.py" line="2181"/>
         <source>Check for Updates</source>
         <translation>Buscar actualizaciones</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2144"/>
+        <location filename="../UI/UserInterface.py" line="2178"/>
         <source>Check for &amp;Updates...</source>
         <translation>Buscar act&amp;ualizaciones...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2155"/>
+        <location filename="../UI/UserInterface.py" line="2189"/>
         <source>Show downloadable versions</source>
         <translation>Mostrar versiones descargables</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2155"/>
+        <location filename="../UI/UserInterface.py" line="2189"/>
         <source>Show &amp;downloadable versions...</source>
         <translation>Mostrar versiones &amp;descargables...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2159"/>
+        <location filename="../UI/UserInterface.py" line="2193"/>
         <source>Show the versions available for download</source>
         <translation>Mostrar las versiones disponibles para descarga</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
+        <location filename="../UI/UserInterface.py" line="3779"/>
         <source>Report Bug</source>
         <translation>Enviar informe de bugs</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2196"/>
+        <location filename="../UI/UserInterface.py" line="2230"/>
         <source>Report &amp;Bug...</source>
         <translation>Enviar informe de &amp;bugs...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2200"/>
+        <location filename="../UI/UserInterface.py" line="2234"/>
         <source>Report a bug</source>
         <translation>Enviar informe de bugs</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2201"/>
+        <location filename="../UI/UserInterface.py" line="2235"/>
         <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="3279"/>
+        <location filename="../UI/UserInterface.py" line="3313"/>
         <source>Unittest</source>
         <translation>Test Unitario</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2223"/>
+        <location filename="../UI/UserInterface.py" line="2257"/>
         <source>&amp;Unittest...</source>
         <translation>Te&amp;st Unitario...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2228"/>
+        <location filename="../UI/UserInterface.py" line="2262"/>
         <source>Start unittest dialog</source>
         <translation>Ejecutar diálogo de tests unitarios</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2229"/>
+        <location filename="../UI/UserInterface.py" line="2263"/>
         <source>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Perform unit tests. The dialog gives you the ability to select and run a unittest suite.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tests unitarios&lt;/b&gt;&lt;p&gt;Lleva a cabo tests unitarios. Este diálogo proporciona la capacidad de seleccionar y ejecutar una suite de tests unitarios.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2271"/>
         <source>Unittest Restart</source>
         <translation>Ejecutar de nuevo Test Unitario</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2271"/>
         <source>&amp;Restart Unittest...</source>
         <translation>Ejecuta&amp;r de nuevo Test Unitario...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2242"/>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>Restart last unittest</source>
         <translation>Ejecutar de nuevo el último test unitario</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2243"/>
+        <location filename="../UI/UserInterface.py" line="2277"/>
         <source>&lt;b&gt;Restart Unittest&lt;/b&gt;&lt;p&gt;Restart the unittest performed last.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ejecutar de nuevo Test Unitario&lt;/b&gt;&lt;p&gt;Vuelve a ejecutar el último test unitario que se ha ejecutado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2267"/>
+        <location filename="../UI/UserInterface.py" line="2301"/>
         <source>Unittest Script</source>
         <translation>Test Unitario de Script</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2267"/>
+        <location filename="../UI/UserInterface.py" line="2301"/>
         <source>Unittest &amp;Script...</source>
         <translation>Test Unitario de &amp;Script...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2272"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Run unittest with current script</source>
         <translation>Ejecutar test unitario con el script actual</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2274"/>
+        <location filename="../UI/UserInterface.py" line="2308"/>
         <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Test Unitario de Script&lt;/b&gt;&lt;p&gt;Ejecuta un test unitario con el script actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2282"/>
+        <location filename="../UI/UserInterface.py" line="2316"/>
         <source>Unittest Project</source>
         <translation>Test Unitario de Proyecto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2282"/>
+        <location filename="../UI/UserInterface.py" line="2316"/>
         <source>Unittest &amp;Project...</source>
         <translation>Test Unitario de &amp;Proyecto...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2287"/>
+        <location filename="../UI/UserInterface.py" line="2321"/>
         <source>Run unittest with current project</source>
         <translation>Ejecutar test unitario con el proyecto actual</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2289"/>
+        <location filename="../UI/UserInterface.py" line="2323"/>
         <source>&lt;b&gt;Unittest Project&lt;/b&gt;&lt;p&gt;Run unittest with current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Test Unitario del Proyecto&lt;/b&gt;Ejecuta un test unitario con el proyecto actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2350"/>
+        <location filename="../UI/UserInterface.py" line="2384"/>
         <source>UI Previewer</source>
         <translation>Previsualizador de UI</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2350"/>
+        <location filename="../UI/UserInterface.py" line="2384"/>
         <source>&amp;UI Previewer...</source>
         <translation>Previsualizador de &amp;UI...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2355"/>
+        <location filename="../UI/UserInterface.py" line="2389"/>
         <source>Start the UI Previewer</source>
         <translation>Ejecutar el Previsualizador de UI</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2356"/>
-        <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="2363"/>
-        <source>Translations Previewer</source>
-        <translation>Previsualizador de Traducciones</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2363"/>
-        <source>&amp;Translations Previewer...</source>
-        <translation>Previsualizador de &amp;Traducciones...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2368"/>
-        <source>Start the Translations Previewer</source>
-        <translation>Ejecutar el Previsualizador de traducciones</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2370"/>
-        <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="2377"/>
-        <source>Compare Files</source>
-        <translation>Comparar Archivos</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2377"/>
-        <source>&amp;Compare Files...</source>
-        <translation>&amp;Comparar Archivos...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2395"/>
-        <source>Compare two files</source>
-        <translation>Comparar dos archivos</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2383"/>
-        <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="2390"/>
+        <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="2397"/>
+        <source>Translations Previewer</source>
+        <translation>Previsualizador de Traducciones</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2397"/>
+        <source>&amp;Translations Previewer...</source>
+        <translation>Previsualizador de &amp;Traducciones...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2402"/>
+        <source>Start the Translations Previewer</source>
+        <translation>Ejecutar el Previsualizador de traducciones</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2404"/>
+        <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="2411"/>
+        <source>Compare Files</source>
+        <translation>Comparar Archivos</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2411"/>
+        <source>&amp;Compare Files...</source>
+        <translation>&amp;Comparar Archivos...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2429"/>
+        <source>Compare two files</source>
+        <translation>Comparar dos archivos</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2417"/>
+        <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="2424"/>
         <source>Compare Files side by side</source>
         <translation>Comparar Archivos uno al lado de otro</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2396"/>
+        <location filename="../UI/UserInterface.py" line="2430"/>
         <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="2490"/>
+        <location filename="../UI/UserInterface.py" line="2524"/>
         <source>Preferences</source>
         <translation>Preferencias</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2490"/>
+        <location filename="../UI/UserInterface.py" line="2524"/>
         <source>&amp;Preferences...</source>
         <translation>&amp;Preferencias...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2495"/>
+        <location filename="../UI/UserInterface.py" line="2529"/>
         <source>Set the prefered configuration</source>
         <translation>Establecer la configuración preferida</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2497"/>
+        <location filename="../UI/UserInterface.py" line="2531"/>
         <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="2534"/>
-        <source>Reload APIs</source>
-        <translation>Recargar APIs</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2534"/>
-        <source>Reload &amp;APIs</source>
-        <translation>Recargar &amp;APIs</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2538"/>
-        <source>Reload the API information</source>
-        <translation>Recargar la información de API</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2540"/>
-        <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="2552"/>
-        <source>Show external tools</source>
-        <translation>Mostrar herramientas externas</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2547"/>
-        <source>Show external &amp;tools</source>
-        <translation>Mostrar herramien&amp;tas externas</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2563"/>
-        <source>View Profiles</source>
-        <translation>Perfiles de Vista</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2563"/>
-        <source>&amp;View Profiles...</source>
-        <translation>Perfiles de &amp;Vista...</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2568"/>
-        <source>Configure view profiles</source>
-        <translation>Configurar perfiles de vista</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2570"/>
-        <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="2595"/>
-        <source>Keyboard Shortcuts</source>
-        <translation>Atajos de Teclado</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2595"/>
-        <source>Keyboard &amp;Shortcuts...</source>
-        <translation>Atajo&amp;s de Teclado...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2600"/>
-        <source>Set the keyboard shortcuts</source>
-        <translation>Establecer los atajos de teclado</translation>
+        <source>Reload APIs</source>
+        <translation>Recargar APIs</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2568"/>
+        <source>Reload &amp;APIs</source>
+        <translation>Recargar &amp;APIs</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2572"/>
+        <source>Reload the API information</source>
+        <translation>Recargar la información de API</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2574"/>
+        <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="2586"/>
+        <source>Show external tools</source>
+        <translation>Mostrar herramientas externas</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2581"/>
+        <source>Show external &amp;tools</source>
+        <translation>Mostrar herramien&amp;tas externas</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2597"/>
+        <source>View Profiles</source>
+        <translation>Perfiles de Vista</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2597"/>
+        <source>&amp;View Profiles...</source>
+        <translation>Perfiles de &amp;Vista...</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2602"/>
-        <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="6217"/>
-        <source>Export Keyboard Shortcuts</source>
-        <translation>Exportar Atajos de Teclado</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2610"/>
-        <source>&amp;Export Keyboard Shortcuts...</source>
-        <translation>&amp;Exportar Atajos de Teclado...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2615"/>
-        <source>Export the keyboard shortcuts</source>
-        <translation>Exportar los atajos de teclado</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2617"/>
-        <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="6241"/>
-        <source>Import Keyboard Shortcuts</source>
-        <translation>Importar Atajos de Teclado</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2624"/>
-        <source>&amp;Import Keyboard Shortcuts...</source>
-        <translation>&amp;Importar Atajos de Teclado...</translation>
+        <source>Configure view profiles</source>
+        <translation>Configurar perfiles de vista</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2604"/>
+        <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="2629"/>
+        <source>Keyboard Shortcuts</source>
+        <translation>Atajos de Teclado</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2629"/>
+        <source>Keyboard &amp;Shortcuts...</source>
+        <translation>Atajo&amp;s de Teclado...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2634"/>
+        <source>Set the keyboard shortcuts</source>
+        <translation>Establecer los atajos de teclado</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2636"/>
+        <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="6251"/>
+        <source>Export Keyboard Shortcuts</source>
+        <translation>Exportar Atajos de Teclado</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2644"/>
+        <source>&amp;Export Keyboard Shortcuts...</source>
+        <translation>&amp;Exportar Atajos de Teclado...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2649"/>
+        <source>Export the keyboard shortcuts</source>
+        <translation>Exportar los atajos de teclado</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2651"/>
+        <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="6275"/>
+        <source>Import Keyboard Shortcuts</source>
+        <translation>Importar Atajos de Teclado</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2658"/>
+        <source>&amp;Import Keyboard Shortcuts...</source>
+        <translation>&amp;Importar Atajos de Teclado...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2663"/>
         <source>Import the keyboard shortcuts</source>
         <translation>Importar los atajos de teclado</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2631"/>
+        <location filename="../UI/UserInterface.py" line="2665"/>
         <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="2689"/>
+        <location filename="../UI/UserInterface.py" line="2723"/>
         <source>Activate current editor</source>
         <translation>Activar editor actual</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2689"/>
+        <location filename="../UI/UserInterface.py" line="2723"/>
         <source>Alt+Shift+E</source>
         <translation>Alt+Shift+E</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2699"/>
+        <location filename="../UI/UserInterface.py" line="2733"/>
         <source>Ctrl+Alt+Tab</source>
         <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2708"/>
+        <location filename="../UI/UserInterface.py" line="2742"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2726"/>
+        <location filename="../UI/UserInterface.py" line="2760"/>
         <source>Plugin Infos</source>
         <translation>Información sobre Plugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2726"/>
+        <location filename="../UI/UserInterface.py" line="2760"/>
         <source>&amp;Plugin Infos...</source>
         <translation>Información sobre &amp;Plugins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2730"/>
+        <location filename="../UI/UserInterface.py" line="2764"/>
         <source>Show Plugin Infos</source>
         <translation>Mostrar Información sobre Plugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2731"/>
-        <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="2757"/>
-        <source>Uninstall Plugin</source>
-        <translation>Desinstalar Plugin</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2752"/>
-        <source>&amp;Uninstall Plugin...</source>
-        <translation>Desinstalar Pl&amp;ugin...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2758"/>
-        <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="2765"/>
-        <source>Plugin Repository</source>
-        <translation>Repositorio de Plugins</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2765"/>
+        <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="2791"/>
+        <source>Uninstall Plugin</source>
+        <translation>Desinstalar Plugin</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2786"/>
+        <source>&amp;Uninstall Plugin...</source>
+        <translation>Desinstalar Pl&amp;ugin...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2792"/>
+        <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="2799"/>
+        <source>Plugin Repository</source>
+        <translation>Repositorio de Plugins</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2799"/>
         <source>Plugin &amp;Repository...</source>
         <translation>&amp;Repositorio de Plugins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2770"/>
+        <location filename="../UI/UserInterface.py" line="2804"/>
         <source>Show Plugins available for download</source>
         <translation>Mostrar Plugins disponibles para descarga</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2772"/>
+        <location filename="../UI/UserInterface.py" line="2806"/>
         <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="2889"/>
+        <location filename="../UI/UserInterface.py" line="2923"/>
         <source>Eric API Documentation</source>
         <translation>Documentación de API de Eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2889"/>
+        <location filename="../UI/UserInterface.py" line="2923"/>
         <source>&amp;Eric API Documentation</source>
         <translation>Documentación de API de &amp;Eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2893"/>
+        <location filename="../UI/UserInterface.py" line="2927"/>
         <source>Open Eric API Documentation</source>
         <translation>Abrir Documentación de API de Eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3074"/>
+        <location filename="../UI/UserInterface.py" line="3108"/>
         <source>&amp;Unittest</source>
         <translation>Te&amp;st Unitario</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3018"/>
+        <location filename="../UI/UserInterface.py" line="3052"/>
         <source>E&amp;xtras</source>
         <translation>E&amp;xtras</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3028"/>
+        <location filename="../UI/UserInterface.py" line="3062"/>
         <source>Wi&amp;zards</source>
         <translation>Asis&amp;tentes</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3091"/>
+        <location filename="../UI/UserInterface.py" line="3125"/>
         <source>Select Tool Group</source>
         <translation>Seleccionar Grupo de Herramientas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3102"/>
+        <location filename="../UI/UserInterface.py" line="3136"/>
         <source>Se&amp;ttings</source>
         <translation>Con&amp;figuración</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3132"/>
+        <location filename="../UI/UserInterface.py" line="3166"/>
         <source>&amp;Window</source>
         <translation>Ven&amp;tana</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3193"/>
+        <location filename="../UI/UserInterface.py" line="3227"/>
         <source>&amp;Toolbars</source>
         <translation>&amp;Barra de Herramientas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3055"/>
+        <location filename="../UI/UserInterface.py" line="3089"/>
         <source>P&amp;lugins</source>
         <translation>P&amp;lugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3207"/>
+        <location filename="../UI/UserInterface.py" line="3241"/>
         <source>&amp;Help</source>
         <translation>Ay&amp;uda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3278"/>
+        <location filename="../UI/UserInterface.py" line="3312"/>
         <source>Tools</source>
         <translation>Herramientas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3280"/>
+        <location filename="../UI/UserInterface.py" line="3314"/>
         <source>Settings</source>
         <translation>Ajustes</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5147"/>
+        <location filename="../UI/UserInterface.py" line="5181"/>
         <source>Help</source>
         <translation>Ayuda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3282"/>
+        <location filename="../UI/UserInterface.py" line="3316"/>
         <source>Profiles</source>
         <translation>Perfiles</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3283"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <source>Plugins</source>
         <translation>Plugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7214"/>
+        <location filename="../UI/UserInterface.py" line="7248"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
+        <location filename="../UI/UserInterface.py" line="3779"/>
         <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="4146"/>
+        <location filename="../UI/UserInterface.py" line="4180"/>
         <source>Configure Tool Groups ...</source>
         <translation>Configurar Grupos de Herramientas ...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4150"/>
+        <location filename="../UI/UserInterface.py" line="4184"/>
         <source>Configure current Tool Group ...</source>
         <translation>Configurar Grupo de Herramientas actual ...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4101"/>
+        <location filename="../UI/UserInterface.py" line="4135"/>
         <source>&amp;Builtin Tools</source>
         <translation>Herramientas de serie (&amp;builtin)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4118"/>
+        <location filename="../UI/UserInterface.py" line="4152"/>
         <source>&amp;Plugin Tools</source>
         <translation>Herramientas de Extensión (&amp;Plugin)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4267"/>
+        <location filename="../UI/UserInterface.py" line="4301"/>
         <source>&amp;Show all</source>
         <translation>&amp;Ver todo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4269"/>
+        <location filename="../UI/UserInterface.py" line="4303"/>
         <source>&amp;Hide all</source>
         <translation>&amp;Ocultar todo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5275"/>
+        <location filename="../UI/UserInterface.py" line="5309"/>
         <source>Problem</source>
         <translation>Problema</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5470"/>
+        <location filename="../UI/UserInterface.py" line="5504"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5147"/>
-        <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="5181"/>
+        <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="5215"/>
         <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="5809"/>
+        <location filename="../UI/UserInterface.py" line="5843"/>
         <source>Documentation Missing</source>
         <translation>Falta documentación</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5792"/>
+        <location filename="../UI/UserInterface.py" line="5826"/>
         <source>Documentation</source>
         <translation>Documentación</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6411"/>
+        <location filename="../UI/UserInterface.py" line="6445"/>
         <source>Save tasks</source>
         <translation>Guardar tareas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6440"/>
+        <location filename="../UI/UserInterface.py" line="6474"/>
         <source>Read tasks</source>
         <translation>Leer tareas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6804"/>
+        <location filename="../UI/UserInterface.py" line="6838"/>
         <source>Drop Error</source>
         <translation>Error de volcado</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7175"/>
+        <location filename="../UI/UserInterface.py" line="7209"/>
         <source>Error during updates check</source>
         <translation>Error durante la verificación de actualización</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6989"/>
+        <location filename="../UI/UserInterface.py" line="7023"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Cancelar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7156"/>
+        <location filename="../UI/UserInterface.py" line="7190"/>
         <source>Update available</source>
         <translation>Actualizaciones disponibles</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7175"/>
+        <location filename="../UI/UserInterface.py" line="7209"/>
         <source>Could not perform updates check.</source>
         <translation>No se puede llevar a cabo la verificación de actualizaciones.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7199"/>
+        <location filename="../UI/UserInterface.py" line="7233"/>
         <source>&lt;h3&gt;Available versions&lt;/h3&gt;&lt;table&gt;</source>
         <translation>&lt;h3&gt;Versiones disponibles&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7251"/>
+        <location filename="../UI/UserInterface.py" line="7285"/>
         <source>First time usage</source>
         <translation>Usado por primera vez</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2422"/>
+        <location filename="../UI/UserInterface.py" line="2456"/>
         <source>Mini Editor</source>
         <translation>Mini Editor</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2417"/>
+        <location filename="../UI/UserInterface.py" line="2451"/>
         <source>Mini &amp;Editor...</source>
         <translation>Mini &amp;Editor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2423"/>
+        <location filename="../UI/UserInterface.py" line="2457"/>
         <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="2744"/>
+        <location filename="../UI/UserInterface.py" line="2778"/>
         <source>Install Plugins</source>
         <translation>Instalar Plugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2739"/>
+        <location filename="../UI/UserInterface.py" line="2773"/>
         <source>&amp;Install Plugins...</source>
         <translation>&amp;Instalar Plugins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2745"/>
+        <location filename="../UI/UserInterface.py" line="2779"/>
         <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="2580"/>
+        <location filename="../UI/UserInterface.py" line="2614"/>
         <source>Toolbars</source>
         <translation>Barras de Herramientas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2580"/>
+        <location filename="../UI/UserInterface.py" line="2614"/>
         <source>Tool&amp;bars...</source>
         <translation>&amp;Barras de Herramientas...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2585"/>
+        <location filename="../UI/UserInterface.py" line="2619"/>
         <source>Configure toolbars</source>
         <translation>Configurar Barras de Herramientas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2586"/>
+        <location filename="../UI/UserInterface.py" line="2620"/>
         <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="686"/>
+        <location filename="../UI/UserInterface.py" line="687"/>
         <source>Restoring Toolbarmanager...</source>
         <translation>Restaurando Gestor de Barras de Herramientas...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5415"/>
+        <location filename="../UI/UserInterface.py" line="5449"/>
         <source>External Tools</source>
         <translation>Herramientas Externas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1732"/>
+        <location filename="../UI/UserInterface.py" line="1766"/>
         <source>Multiproject-Viewer</source>
         <translation>Visor de Multiproyecto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1732"/>
+        <location filename="../UI/UserInterface.py" line="1766"/>
         <source>&amp;Multiproject-Viewer</source>
         <translation>Visor de &amp;Multiproyecto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6536"/>
+        <location filename="../UI/UserInterface.py" line="6570"/>
         <source>Save session</source>
         <translation>Guardar sesión</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6520"/>
+        <location filename="../UI/UserInterface.py" line="6554"/>
         <source>Read session</source>
         <translation>Cargar sesión</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3459"/>
+        <location filename="../UI/UserInterface.py" line="3493"/>
         <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="3473"/>
+        <location filename="../UI/UserInterface.py" line="3507"/>
         <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="2208"/>
+        <location filename="../UI/UserInterface.py" line="2242"/>
         <source>Request Feature</source>
         <translation>Solicitar nueva característica</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2208"/>
+        <location filename="../UI/UserInterface.py" line="2242"/>
         <source>Request &amp;Feature...</source>
         <translation>Solicitar nueva &amp;característica...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2212"/>
+        <location filename="../UI/UserInterface.py" line="2246"/>
         <source>Send a feature request</source>
         <translation>Enviar una solicitud de nueva característica</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2214"/>
+        <location filename="../UI/UserInterface.py" line="2248"/>
         <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="3452"/>
+        <location filename="../UI/UserInterface.py" line="3486"/>
         <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="3480"/>
+        <location filename="../UI/UserInterface.py" line="3514"/>
         <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="3487"/>
+        <location filename="../UI/UserInterface.py" line="3521"/>
         <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="1882"/>
+        <location filename="../UI/UserInterface.py" line="1916"/>
         <source>Horizontal Toolbox</source>
         <translation>Caja de Herramientas Horizontal</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
+        <location filename="../UI/UserInterface.py" line="1873"/>
         <source>Alt+Shift+A</source>
         <translation>Alt+Shift+A</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1882"/>
+        <location filename="../UI/UserInterface.py" line="1916"/>
         <source>&amp;Horizontal Toolbox</source>
         <translation>Caja de Herramientas &amp;Horizontal</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1886"/>
+        <location filename="../UI/UserInterface.py" line="1920"/>
         <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="1888"/>
+        <location filename="../UI/UserInterface.py" line="1922"/>
         <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="4065"/>
+        <location filename="../UI/UserInterface.py" line="4099"/>
         <source>Restart application</source>
         <translation>Reiniciar aplicación</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4065"/>
+        <location filename="../UI/UserInterface.py" line="4099"/>
         <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="3064"/>
+        <location filename="../UI/UserInterface.py" line="3098"/>
         <source>Configure...</source>
         <translation>Configurar...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3466"/>
+        <location filename="../UI/UserInterface.py" line="3500"/>
         <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="2717"/>
+        <location filename="../UI/UserInterface.py" line="2751"/>
         <source>Switch between tabs</source>
         <translation>Alternar entre pestañas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2717"/>
+        <location filename="../UI/UserInterface.py" line="2751"/>
         <source>Ctrl+1</source>
         <translation>Ctrl+1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2506"/>
+        <location filename="../UI/UserInterface.py" line="2540"/>
         <source>Export Preferences</source>
         <translation>Exportar Preferencias</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2506"/>
+        <location filename="../UI/UserInterface.py" line="2540"/>
         <source>E&amp;xport Preferences...</source>
         <translation>E&amp;xportar Preferencias...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2511"/>
+        <location filename="../UI/UserInterface.py" line="2545"/>
         <source>Export the current configuration</source>
         <translation>Exportar la configuración actual</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2513"/>
+        <location filename="../UI/UserInterface.py" line="2547"/>
         <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="2520"/>
+        <location filename="../UI/UserInterface.py" line="2554"/>
         <source>Import Preferences</source>
         <translation>Importar Preferencias</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2520"/>
+        <location filename="../UI/UserInterface.py" line="2554"/>
         <source>I&amp;mport Preferences...</source>
         <translation>I&amp;mportar Preferencias...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2525"/>
+        <location filename="../UI/UserInterface.py" line="2559"/>
         <source>Import a previously exported configuration</source>
         <translation>Importar una configuración previamente exportada</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2527"/>
+        <location filename="../UI/UserInterface.py" line="2561"/>
         <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="2699"/>
+        <location filename="../UI/UserInterface.py" line="2733"/>
         <source>Show next</source>
         <translation>Mostrar siguente</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2708"/>
+        <location filename="../UI/UserInterface.py" line="2742"/>
         <source>Show previous</source>
         <translation>Mostrar anterior</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1896"/>
+        <location filename="../UI/UserInterface.py" line="1930"/>
         <source>Left Sidebar</source>
         <translation>Barra Lateral a la Izquierda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1896"/>
+        <location filename="../UI/UserInterface.py" line="1930"/>
         <source>&amp;Left Sidebar</source>
         <translation>Barra &amp;Lateral a la Izquierda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1900"/>
+        <location filename="../UI/UserInterface.py" line="1934"/>
         <source>Toggle the left sidebar window</source>
         <translation>Conmutar la barra lateral a la izquierda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1901"/>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <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="1923"/>
+        <location filename="../UI/UserInterface.py" line="1957"/>
         <source>Bottom Sidebar</source>
         <translation>Barra Lateral Inferior</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1923"/>
+        <location filename="../UI/UserInterface.py" line="1957"/>
         <source>&amp;Bottom Sidebar</source>
         <translation>&amp;Barra Lateral Inferior</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1927"/>
+        <location filename="../UI/UserInterface.py" line="1961"/>
         <source>Toggle the bottom sidebar window</source>
         <translation>Conmutar la barra lateral inferior</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1929"/>
+        <location filename="../UI/UserInterface.py" line="1963"/>
         <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="1750"/>
+        <location filename="../UI/UserInterface.py" line="1784"/>
         <source>&amp;Debug-Viewer</source>
         <translation>Visor &amp;Depurador</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2404"/>
+        <location filename="../UI/UserInterface.py" line="2438"/>
         <source>SQL Browser</source>
         <translation>Navegador SQL</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2404"/>
+        <location filename="../UI/UserInterface.py" line="2438"/>
         <source>SQL &amp;Browser...</source>
         <translation>&amp;Navegador SQL...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2409"/>
+        <location filename="../UI/UserInterface.py" line="2443"/>
         <source>Browse a SQL database</source>
         <translation>Navegar una base de datos SQL</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2410"/>
+        <location filename="../UI/UserInterface.py" line="2444"/>
         <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="2461"/>
+        <location filename="../UI/UserInterface.py" line="2495"/>
         <source>Icon Editor</source>
         <translation>Editor de Iconos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2461"/>
+        <location filename="../UI/UserInterface.py" line="2495"/>
         <source>&amp;Icon Editor...</source>
         <translation>Editor de &amp;Iconos...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1569"/>
+        <location filename="../UI/UserInterface.py" line="1603"/>
         <source>{0} - Passive Mode</source>
         <translation>{0} - Modo Pasivo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1576"/>
+        <location filename="../UI/UserInterface.py" line="1610"/>
         <source>{0} - {1} - Passive Mode</source>
         <translation>{0} - {1} - Modo Pasivo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1580"/>
+        <location filename="../UI/UserInterface.py" line="1614"/>
         <source>{0} - {1} - {2} - Passive Mode</source>
         <translation>{0} - {1} - {2} - Modo Pasivo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3563"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>External Tools/{0}</source>
         <translation>Herramientas Externas/{0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5275"/>
+        <location filename="../UI/UserInterface.py" line="5309"/>
         <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="5000"/>
+        <location filename="../UI/UserInterface.py" line="5034"/>
         <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="5070"/>
+        <location filename="../UI/UserInterface.py" line="5104"/>
         <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="5114"/>
+        <location filename="../UI/UserInterface.py" line="5148"/>
         <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="5161"/>
+        <location filename="../UI/UserInterface.py" line="5195"/>
         <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="5231"/>
+        <location filename="../UI/UserInterface.py" line="5265"/>
         <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="5288"/>
+        <location filename="../UI/UserInterface.py" line="5322"/>
         <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="5311"/>
+        <location filename="../UI/UserInterface.py" line="5345"/>
         <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="5406"/>
+        <location filename="../UI/UserInterface.py" line="5440"/>
         <source>No tool entry found for external tool &apos;{0}&apos; in tool group &apos;{1}&apos;.</source>
         <translation>No se ha encontrado la entrada para la herramienta externa &apos;{0}&apos; en el grupo de herramientas &apos;{1}&apos;.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5415"/>
+        <location filename="../UI/UserInterface.py" line="5449"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation>No se ha encontrado la entrada para el grupo de herramientas &apos;{0}&apos;.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5454"/>
+        <location filename="../UI/UserInterface.py" line="5488"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation>Comenzando proceso &apos;{0} {1}&apos;.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5470"/>
+        <location filename="../UI/UserInterface.py" line="5504"/>
         <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="5548"/>
+        <location filename="../UI/UserInterface.py" line="5582"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation>El proceso &apos;{0}&apos; ha finalizado.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5809"/>
+        <location filename="../UI/UserInterface.py" line="5843"/>
         <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
         <translation>&lt;P&gt;El punto de entrada de documentación &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; no ha podido encontrarse.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6411"/>
+        <location filename="../UI/UserInterface.py" line="6445"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de tareas &lt;b&gt;{0}&lt;/b&gt; no pudo ser guardado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6440"/>
-        <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="6474"/>
+        <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="6508"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de sesión &lt;b&gt;{0}&lt;/b&gt; no ha podido guardarse.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6520"/>
+        <location filename="../UI/UserInterface.py" line="6554"/>
         <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="6804"/>
+        <location filename="../UI/UserInterface.py" line="6838"/>
         <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="6998"/>
+        <location filename="../UI/UserInterface.py" line="7032"/>
         <source>Trying host {0}</source>
         <translation>Probando host {0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1122"/>
+        <location filename="../UI/UserInterface.py" line="1123"/>
         <source>Cooperation</source>
         <translation>Cooperación</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Alt+Shift+O</source>
         <translation>Alt+Shift+O</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1178"/>
+        <location filename="../UI/UserInterface.py" line="1179"/>
         <source>Symbols</source>
         <translation>Símbolos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>Alt+Shift+Y</source>
         <translation>Alt+Shift+Y</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1187"/>
+        <location filename="../UI/UserInterface.py" line="1188"/>
         <source>Numbers</source>
         <translation>Números</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Alt+Shift+B</source>
         <translation>Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6241"/>
+        <location filename="../UI/UserInterface.py" line="6275"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation>Archivo de atajos de teclado (*.e4k)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2867"/>
+        <location filename="../UI/UserInterface.py" line="2901"/>
         <source>Python 3 Documentation</source>
         <translation>Documentación de Python 3</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2867"/>
+        <location filename="../UI/UserInterface.py" line="2901"/>
         <source>Python &amp;3 Documentation</source>
         <translation>Documentación de Python &amp;3</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2871"/>
+        <location filename="../UI/UserInterface.py" line="2905"/>
         <source>Open Python 3 Documentation</source>
         <translation>Abrir Documentación de Python 3</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7064"/>
+        <location filename="../UI/UserInterface.py" line="7098"/>
         <source>Error getting versions information</source>
         <translation>Error al obtener información de versiones</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7057"/>
+        <location filename="../UI/UserInterface.py" line="7091"/>
         <source>The versions information could not be downloaded. Please go online and try again.</source>
         <translation>La información de versiones no se ha podido descargar. Póngase online por favor e inténtelo de nuevo.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6009"/>
+        <location filename="../UI/UserInterface.py" line="6043"/>
         <source>Open Browser</source>
         <translation>Abrir Navegador</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6009"/>
+        <location filename="../UI/UserInterface.py" line="6043"/>
         <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="7064"/>
+        <location filename="../UI/UserInterface.py" line="7098"/>
         <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source>
         <translation>La información de versiones no se ha podido descargar en los últimos 7 días. Póngase por favor online e inténtelo de nuevo.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="695"/>
+        <location filename="../UI/UserInterface.py" line="696"/>
         <source>Setting View Profile...</source>
         <translation>Estableciendo Perfil de Vista...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="708"/>
+        <location filename="../UI/UserInterface.py" line="709"/>
         <source>Reading Tasks...</source>
         <translation>Leyendo tareas...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="713"/>
+        <location filename="../UI/UserInterface.py" line="714"/>
         <source>Reading Templates...</source>
         <translation>Leyendo Plantillas...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="718"/>
+        <location filename="../UI/UserInterface.py" line="719"/>
         <source>Starting Debugger...</source>
         <translation>Iniciando Depurador...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>New Window</source>
         <translation>Nueva Ventana</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>New &amp;Window</source>
         <translation>Nueva &amp;Ventana</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation>Ctrl+Shift+N</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2251"/>
+        <location filename="../UI/UserInterface.py" line="2285"/>
         <source>Unittest Rerun Failed</source>
         <translation>Re-ejecución de Test Unitatio Fallida</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2251"/>
+        <location filename="../UI/UserInterface.py" line="2285"/>
         <source>Rerun Failed Tests...</source>
         <translation>Re-ejecutar Tests Fallidos...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2256"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <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="2258"/>
+        <location filename="../UI/UserInterface.py" line="2292"/>
         <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last unittest run.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Re-ejecución Tests Fallidos&lt;/b&gt;&lt;p&gt;Re-ejecutar todos los tests que fallaron durante la última ejecución de test unitario.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2390"/>
+        <location filename="../UI/UserInterface.py" line="2424"/>
         <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="2475"/>
+        <location filename="../UI/UserInterface.py" line="2509"/>
         <source>Snapshot</source>
         <translation>Captura de Pantalla</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2475"/>
+        <location filename="../UI/UserInterface.py" line="2509"/>
         <source>&amp;Snapshot...</source>
         <translation>Captura de &amp;Pantalla...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2480"/>
+        <location filename="../UI/UserInterface.py" line="2514"/>
         <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="2482"/>
+        <location filename="../UI/UserInterface.py" line="2516"/>
         <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="5383"/>
+        <location filename="../UI/UserInterface.py" line="5417"/>
         <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="7270"/>
+        <location filename="../UI/UserInterface.py" line="7304"/>
         <source>Select Workspace Directory</source>
         <translation>Seleccionar Directorio para el Espacio de Trabajo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
+        <location filename="../UI/UserInterface.py" line="1891"/>
         <source>Left Toolbox</source>
         <translation>Caja de herramientas de la Izquierda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1869"/>
+        <location filename="../UI/UserInterface.py" line="1903"/>
         <source>Right Toolbox</source>
         <translation>Caja de herramientas de la Derecha</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1721"/>
+        <location filename="../UI/UserInterface.py" line="1755"/>
         <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="1723"/>
+        <location filename="../UI/UserInterface.py" line="1757"/>
         <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="1738"/>
+        <location filename="../UI/UserInterface.py" line="1772"/>
         <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="1740"/>
-        <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="1756"/>
-        <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="1758"/>
-        <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="1774"/>
-        <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="1776"/>
-        <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="1785"/>
-        <source>&amp;File-Browser</source>
-        <translation>Na&amp;vegador de archivos</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1791"/>
-        <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="1793"/>
-        <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="1802"/>
-        <source>Lo&amp;g-Viewer</source>
-        <translation>Visor de Lo&amp;g</translation>
+        <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="1790"/>
+        <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="1792"/>
+        <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="1808"/>
-        <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>
+        <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="1810"/>
+        <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="1819"/>
+        <source>&amp;File-Browser</source>
+        <translation>Na&amp;vegador de archivos</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1825"/>
+        <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="1827"/>
+        <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="1836"/>
+        <source>Lo&amp;g-Viewer</source>
+        <translation>Visor de Lo&amp;g</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1842"/>
+        <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="1844"/>
         <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="1820"/>
+        <location filename="../UI/UserInterface.py" line="1854"/>
         <source>&amp;Task-Viewer</source>
         <translation>Visor de &amp;Tareas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1826"/>
-        <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="1839"/>
-        <source>Templ&amp;ate-Viewer</source>
-        <translation>Visor de Pl&amp;antillas</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1845"/>
-        <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="1847"/>
-        <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="1857"/>
-        <source>&amp;Left Toolbox</source>
-        <translation>Caja de herramientas de &amp;la Izquierda</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1860"/>
-        <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="1861"/>
-        <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="1869"/>
-        <source>&amp;Right Toolbox</source>
-        <translation>Caja de herramientas de la De&amp;recha</translation>
+        <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="1873"/>
+        <source>Templ&amp;ate-Viewer</source>
+        <translation>Visor de Pl&amp;antillas</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1879"/>
+        <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="1881"/>
+        <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="1891"/>
+        <source>&amp;Left Toolbox</source>
+        <translation>Caja de herramientas de &amp;la Izquierda</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1894"/>
+        <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="1895"/>
+        <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="1903"/>
+        <source>&amp;Right Toolbox</source>
+        <translation>Caja de herramientas de la De&amp;recha</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1907"/>
         <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="1874"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <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="1909"/>
+        <location filename="../UI/UserInterface.py" line="1943"/>
         <source>Right Sidebar</source>
         <translation>Barra Lateral a la Derecha</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1909"/>
+        <location filename="../UI/UserInterface.py" line="1943"/>
         <source>&amp;Right Sidebar</source>
         <translation>Ba&amp;rra Lateral a la Derecha</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1913"/>
+        <location filename="../UI/UserInterface.py" line="1947"/>
         <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="1915"/>
+        <location filename="../UI/UserInterface.py" line="1949"/>
         <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="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Cooperation-Viewer</source>
         <translation>Visor de Cooperación</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Co&amp;operation-Viewer</source>
         <translation>Visor de Co&amp;operación</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1944"/>
+        <location filename="../UI/UserInterface.py" line="1978"/>
         <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="1946"/>
+        <location filename="../UI/UserInterface.py" line="1980"/>
         <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="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>Symbols-Viewer</source>
         <translation>Visor de Símbolos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>S&amp;ymbols-Viewer</source>
         <translation>Visor de S&amp;ímbolos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1981"/>
+        <location filename="../UI/UserInterface.py" line="2015"/>
         <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="1983"/>
+        <location filename="../UI/UserInterface.py" line="2017"/>
         <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="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Numbers-Viewer</source>
         <translation>Visor de Números</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Num&amp;bers-Viewer</source>
         <translation>Visor de Nú&amp;meros</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2000"/>
+        <location filename="../UI/UserInterface.py" line="2034"/>
         <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="2002"/>
+        <location filename="../UI/UserInterface.py" line="2036"/>
         <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="3141"/>
+        <location filename="../UI/UserInterface.py" line="3175"/>
         <source>&amp;Windows</source>
         <translation>&amp;Ventanas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1828"/>
+        <location filename="../UI/UserInterface.py" line="1862"/>
         <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="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>IRC</source>
         <translation>IRC</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>&amp;IRC</source>
         <translation>&amp;IRC</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1963"/>
+        <location filename="../UI/UserInterface.py" line="1997"/>
         <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="1965"/>
+        <location filename="../UI/UserInterface.py" line="1999"/>
         <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="2309"/>
+        <location filename="../UI/UserInterface.py" line="2343"/>
         <source>Qt-Designer</source>
         <translation>Qt Designer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2309"/>
+        <location filename="../UI/UserInterface.py" line="2343"/>
         <source>Qt-&amp;Designer...</source>
         <translation>Qt-&amp;Designer...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2314"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Start Qt-Designer</source>
         <translation>Iniciar Qt-Designer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2315"/>
+        <location filename="../UI/UserInterface.py" line="2349"/>
         <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="2335"/>
+        <location filename="../UI/UserInterface.py" line="2369"/>
         <source>Qt-Linguist</source>
         <translation>Qt-Linguist</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2335"/>
+        <location filename="../UI/UserInterface.py" line="2369"/>
         <source>Qt-&amp;Linguist...</source>
         <translation>Qt-&amp;Linguist...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2340"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Start Qt-Linguist</source>
         <translation>Iniciar Qt Linguist</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2341"/>
+        <location filename="../UI/UserInterface.py" line="2375"/>
         <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="2831"/>
+        <location filename="../UI/UserInterface.py" line="2865"/>
         <source>Qt5 Documentation</source>
         <translation>Documentación de Qt5</translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="2865"/>
+        <source>Qt&amp;5 Documentation</source>
+        <translation>Documentación de Qt&amp;5</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2869"/>
+        <source>Open Qt5 Documentation</source>
+        <translation>Abrir Documentación de Qt5</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2673"/>
+        <source>Manage SSL Certificates</source>
+        <translation>Gestionar Certificados SSL</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2673"/>
+        <source>Manage SSL Certificates...</source>
+        <translation>Gestionar Certificados SSL...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2678"/>
+        <source>Manage the saved SSL certificates</source>
+        <translation>Gestionar los certificados SSL guardados</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2680"/>
+        <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="2689"/>
+        <source>Edit Message Filters</source>
+        <translation>Editar Filtros de Mensajes</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2689"/>
+        <source>Edit Message Filters...</source>
+        <translation>Editar Filtros de Mensajes...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2694"/>
+        <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="2696"/>
+        <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="2880"/>
+        <source>PyQt5 Documentation</source>
+        <translation>Documentación de PyQt5</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2880"/>
+        <source>PyQt&amp;5 Documentation</source>
+        <translation>Documentación de PyQt&amp;5</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2884"/>
+        <source>Open PyQt5 Documentation</source>
+        <translation>Abrir Documentación de PyQt5</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5721"/>
+        <source>&lt;p&gt;The PyQt5 documentation starting point has not been configured.&lt;/p&gt;</source>
+        <translation>&lt;P&gt;El punto de entrada de documentación de PyQt5 no ha sido configurado.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2907"/>
+        <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="7023"/>
+        <source>%v/%m</source>
+        <translation>%v/%m</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2208"/>
+        <source>Show Error Log</source>
+        <translation>Mostrar Registro de Errores</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2204"/>
+        <source>Show Error &amp;Log...</source>
+        <translation>Mostrar &amp;Registro de Errores...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2209"/>
+        <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="7027"/>
+        <source>Version Check</source>
+        <translation>Verificación de Versión</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1702"/>
+        <source>Open a new eric6 instance</source>
+        <translation>Abre una nueva instancia de eric6</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1704"/>
+        <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric6 IDE.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Nueva Ventana&lt;/b&gt;&lt;p&gt;Abre una nueva instancia del IDE eric6.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2147"/>
+        <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric6 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 search 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 eric6. Esta ventana mostrará archivos de ayuda HTML y ayuda de las colecciones de ayuda de Qt. Tiene la capacidad de navegar a hiperenlaces, establecer marcadores, imprimir la ayuda visualizada y algunas otras características.&lt;/p&gt;&lt;p&gt;Si se invoca con una palabra seleccionada, esta palabra se busca en la colección de ayuda de Qt.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2182"/>
+        <source>&lt;b&gt;Check for Updates...&lt;/b&gt;&lt;p&gt;Checks the internet for updates of eric6.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Buscar actualizaciones...&lt;/b&gt;&lt;p&gt;Busca actualizaciones de eric6 en internet.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2195"/>
+        <source>&lt;b&gt;Show downloadable versions...&lt;/b&gt;&lt;p&gt;Shows the eric6 versions available for download from the internet.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Mostrar versiones descargables...&lt;/b&gt;&lt;p&gt;Muestra las versiones de eric6 disponibles para descarga de internet.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2479"/>
+        <source>eric6 Web Browser</source>
+        <translation>Navegador Web de eric6</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2479"/>
+        <source>eric6 &amp;Web Browser...</source>
+        <translation>Navegador &amp;Web de eric6...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2484"/>
+        <source>Start the eric6 Web Browser</source>
+        <translation>Iniciar el Navegador Web de eric6</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2486"/>
+        <source>&lt;b&gt;eric6 Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric6 Web Browser.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Navegador Web de eric6&lt;/b&gt;&lt;p&gt;Navegar por Internet con el Navegador Web de eric6.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2500"/>
+        <source>Start the eric6 Icon Editor</source>
+        <translation>Iniciar el Editor de Iconos de eric6</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2502"/>
+        <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 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 eric6 para editar iconos sencillos.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2588"/>
+        <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 eric6.&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 eric6.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2929"/>
+        <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 eric6 installation directory.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Documentación de API de Eric&lt;/b&gt;&lt;p&gt;Muestra 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 eric6.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7190"/>
+        <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric6 is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
+        <translation>La actualización para &lt;b&gt;{0}&lt;/b&gt; de eric6 está disponible en &lt;b&gt;{1}&lt;/b&gt;. ¿Le gustaría obtenerla?</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7202"/>
+        <source>Eric6 is up to date</source>
+        <translation>Eric6 está actualizado</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7202"/>
+        <source>You are using the latest version of eric6</source>
+        <translation>Está utilizando la última versión de eric6</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7285"/>
+        <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
+        <translation>Eric6 todavía no está configurado. El diálogo de configuración va a ser iniciado.</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="673"/>
+        <source>Generating Plugins Toolbars...</source>
+        <translation>Generando Barras de Herramientas para Plugins...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4155"/>
+        <source>&amp;User Tools</source>
+        <translation>Herramientas de &amp;Usuario</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4227"/>
+        <source>No User Tools Configured</source>
+        <translation>No se han Configurado Herramientas de Usuario</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7043"/>
+        <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
+        <translation>La información de versiones no se puede descargar porque está &lt;b&gt;sin línea&lt;/b&gt;. Por favor, póngase en línea e inténtelo de nuevo.</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2464"/>
+        <source>Hex Editor</source>
+        <translation>Editor Hexadecimal</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2464"/>
+        <source>&amp;Hex Editor...</source>
+        <translation>Editor &amp;Hexadecimal...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2469"/>
+        <source>Start the eric6 Hex Editor</source>
+        <translation>Iniciar el Editor Hexadecimal de eric6</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2471"/>
+        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 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 eric6 para visionado o edición de archivos binarios.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2712"/>
+        <source>Clear private data</source>
+        <translation>Limpiar Datos Privados</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2714"/>
+        <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="1670"/>
+        <source>Save session...</source>
+        <translation>Guardar sesión...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1675"/>
+        <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="6592"/>
+        <source>Load session</source>
+        <translation>Cargar sesión</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1683"/>
+        <source>Load session...</source>
+        <translation>Cargar sesión...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1688"/>
+        <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="6592"/>
+        <source>eric6 Session Files (*.e5s)</source>
+        <translation>Archivos de Sesión de eric6 (*.e5s)</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6643"/>
+        <source>Crash Session found!</source>
+        <translation>¡Se ha hallado una sesión perdida!</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6643"/>
+        <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="676"/>
+        <source>Cleaning Plugins Download Area...</source>
+        <translation>Limpiar Área de Descarga de Plugins...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="668"/>
+        <source>Initializing Plugins...</source>
+        <translation>Inicializando Plugins...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7178"/>
+        <source>Update Check</source>
+        <translation>Comprobación Actualización</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7178"/>
+        <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
+        <translation>Ha instalado eric directamente a partir del código fuente. No es posible comprobar la disponibilidad de una actuación.</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7168"/>
+        <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
+        <translation>Ésta es una snapshot release the eric6. Una release estable más reciente podría estar disponible.</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2047"/>
+        <source>Code Documentation Viewer</source>
+        <translation>Visor de Documentación de Código</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2870"/>
+        <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&apos;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="2886"/>
+        <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&apos;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="2944"/>
+        <source>PySide2 Documentation</source>
+        <translation>Documentación de PySide2</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2944"/>
+        <source>PySide&amp;2 Documentation</source>
+        <translation>Documentación de PySide&amp;2</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2948"/>
+        <source>Open PySide2 Documentation</source>
+        <translation>Abrir Documentación de PySide2</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2950"/>
+        <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&apos;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="5826"/>
+        <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="2820"/>
+        <source>Virtualenv Manager</source>
+        <translation>Gestor de Virtualenv</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2814"/>
+        <source>&amp;Virtualenv Manager...</source>
+        <translation>Gestor de &amp;Virtualenv...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2822"/>
+        <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Gestor de Virtualenv&lt;/b&gt;&lt;p&gt;Abre un diálogo para gestionar los entornos virtuales Python definidos.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2837"/>
+        <source>Virtualenv Configurator</source>
+        <translation>Configurador de Virtualenv</translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="2831"/>
-        <source>Qt&amp;5 Documentation</source>
-        <translation>Documentación de Qt&amp;5</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2835"/>
-        <source>Open Qt5 Documentation</source>
-        <translation>Abrir Documentación de Qt5</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2639"/>
-        <source>Manage SSL Certificates</source>
-        <translation>Gestionar Certificados SSL</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2639"/>
-        <source>Manage SSL Certificates...</source>
-        <translation>Gestionar Certificados SSL...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2644"/>
-        <source>Manage the saved SSL certificates</source>
-        <translation>Gestionar los certificados SSL guardados</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2646"/>
-        <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="2655"/>
-        <source>Edit Message Filters</source>
-        <translation>Editar Filtros de Mensajes</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2655"/>
-        <source>Edit Message Filters...</source>
-        <translation>Editar Filtros de Mensajes...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2660"/>
-        <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="2662"/>
-        <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="2846"/>
-        <source>PyQt5 Documentation</source>
-        <translation>Documentación de PyQt5</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2846"/>
-        <source>PyQt&amp;5 Documentation</source>
-        <translation>Documentación de PyQt&amp;5</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2850"/>
-        <source>Open PyQt5 Documentation</source>
-        <translation>Abrir Documentación de PyQt5</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5687"/>
-        <source>&lt;p&gt;The PyQt5 documentation starting point has not been configured.&lt;/p&gt;</source>
-        <translation>&lt;P&gt;El punto de entrada de documentación de PyQt5 no ha sido configurado.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2873"/>
-        <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="6989"/>
-        <source>%v/%m</source>
-        <translation>%v/%m</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2174"/>
-        <source>Show Error Log</source>
-        <translation>Mostrar Registro de Errores</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2170"/>
-        <source>Show Error &amp;Log...</source>
-        <translation>Mostrar &amp;Registro de Errores...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2175"/>
-        <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="6993"/>
-        <source>Version Check</source>
-        <translation>Verificación de Versión</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1668"/>
-        <source>Open a new eric6 instance</source>
-        <translation>Abre una nueva instancia de eric6</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1670"/>
-        <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric6 IDE.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Nueva Ventana&lt;/b&gt;&lt;p&gt;Abre una nueva instancia del IDE eric6.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2113"/>
-        <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric6 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 search 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 eric6. Esta ventana mostrará archivos de ayuda HTML y ayuda de las colecciones de ayuda de Qt. Tiene la capacidad de navegar a hiperenlaces, establecer marcadores, imprimir la ayuda visualizada y algunas otras características.&lt;/p&gt;&lt;p&gt;Si se invoca con una palabra seleccionada, esta palabra se busca en la colección de ayuda de Qt.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2148"/>
-        <source>&lt;b&gt;Check for Updates...&lt;/b&gt;&lt;p&gt;Checks the internet for updates of eric6.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Buscar actualizaciones...&lt;/b&gt;&lt;p&gt;Busca actualizaciones de eric6 en internet.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2161"/>
-        <source>&lt;b&gt;Show downloadable versions...&lt;/b&gt;&lt;p&gt;Shows the eric6 versions available for download from the internet.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Mostrar versiones descargables...&lt;/b&gt;&lt;p&gt;Muestra las versiones de eric6 disponibles para descarga de internet.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2445"/>
-        <source>eric6 Web Browser</source>
-        <translation>Navegador Web de eric6</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2445"/>
-        <source>eric6 &amp;Web Browser...</source>
-        <translation>Navegador &amp;Web de eric6...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2450"/>
-        <source>Start the eric6 Web Browser</source>
-        <translation>Iniciar el Navegador Web de eric6</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2452"/>
-        <source>&lt;b&gt;eric6 Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric6 Web Browser.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Navegador Web de eric6&lt;/b&gt;&lt;p&gt;Navegar por Internet con el Navegador Web de eric6.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2466"/>
-        <source>Start the eric6 Icon Editor</source>
-        <translation>Iniciar el Editor de Iconos de eric6</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2468"/>
-        <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 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 eric6 para editar iconos sencillos.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2554"/>
-        <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 eric6.&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 eric6.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2895"/>
-        <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 eric6 installation directory.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Documentación de API de Eric&lt;/b&gt;&lt;p&gt;Muestra 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 eric6.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7156"/>
-        <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric6 is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
-        <translation>La actualización para &lt;b&gt;{0}&lt;/b&gt; de eric6 está disponible en &lt;b&gt;{1}&lt;/b&gt;. ¿Le gustaría obtenerla?</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7168"/>
-        <source>Eric6 is up to date</source>
-        <translation>Eric6 está actualizado</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7168"/>
-        <source>You are using the latest version of eric6</source>
-        <translation>Está utilizando la última versión de eric6</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7251"/>
-        <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
-        <translation>Eric6 todavía no está configurado. El diálogo de configuración va a ser iniciado.</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="672"/>
-        <source>Generating Plugins Toolbars...</source>
-        <translation>Generando Barras de Herramientas para Plugins...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4121"/>
-        <source>&amp;User Tools</source>
-        <translation>Herramientas de &amp;Usuario</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4193"/>
-        <source>No User Tools Configured</source>
-        <translation>No se han Configurado Herramientas de Usuario</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7009"/>
-        <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
-        <translation>La información de versiones no se puede descargar porque está &lt;b&gt;sin línea&lt;/b&gt;. Por favor, póngase en línea e inténtelo de nuevo.</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2430"/>
-        <source>Hex Editor</source>
-        <translation>Editor Hexadecimal</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2430"/>
-        <source>&amp;Hex Editor...</source>
-        <translation>Editor &amp;Hexadecimal...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2435"/>
-        <source>Start the eric6 Hex Editor</source>
-        <translation>Iniciar el Editor Hexadecimal de eric6</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2437"/>
-        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 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 eric6 para visionado o edición de archivos binarios.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2678"/>
-        <source>Clear private data</source>
-        <translation>Limpiar Datos Privados</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2680"/>
-        <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="1636"/>
-        <source>Save session...</source>
-        <translation>Guardar sesión...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1641"/>
-        <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="6558"/>
-        <source>Load session</source>
-        <translation>Cargar sesión</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
-        <source>Load session...</source>
-        <translation>Cargar sesión...</translation>
+        <source>Virtualenv &amp;Configurator...</source>
+        <translation>Configurador de &amp;Virtualenv...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2839"/>
+        <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Configurador de Virtualenv&lt;/b&gt;&lt;p&gt;Abre un diálogo para introducir todos los parámetros necesarios para crear un entorno virtual de Python utilizando virtualenv o pyvenv.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3182"/>
+        <source>Left Side</source>
+        <translation>Lado Izquierdo</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3194"/>
+        <source>Bottom Side</source>
+        <translation>Lado Inferior</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3201"/>
+        <source>Right Side</source>
+        <translation>Lado Derecho</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3221"/>
+        <source>Plug-ins</source>
+        <translation>Plugins</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1654"/>
+        <source>Restart</source>
+        <translation>Reiniciar</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1654"/>
-        <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="6558"/>
-        <source>eric6 Session Files (*.e5s)</source>
-        <translation>Archivos de Sesión de eric6 (*.e5s)</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6609"/>
-        <source>Crash Session found!</source>
-        <translation>¡Se ha hallado una sesión perdida!</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6609"/>
-        <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="675"/>
-        <source>Cleaning Plugins Download Area...</source>
-        <translation>Limpiar Área de Descarga de Plugins...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="667"/>
-        <source>Initializing Plugins...</source>
-        <translation>Inicializando Plugins...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7144"/>
-        <source>Update Check</source>
-        <translation>Comprobación Actualización</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7144"/>
-        <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
-        <translation>Ha instalado eric directamente a partir del código fuente. No es posible comprobar la disponibilidad de una actuación.</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7134"/>
-        <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
-        <translation>Ésta es una snapshot release the eric6. Una release estable más reciente podría estar disponible.</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2013"/>
-        <source>Code Documentation Viewer</source>
-        <translation>Visor de Documentación de Código</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2836"/>
-        <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&apos;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="2852"/>
-        <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&apos;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="2910"/>
-        <source>PySide2 Documentation</source>
-        <translation>Documentación de PySide2</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2910"/>
-        <source>PySide&amp;2 Documentation</source>
-        <translation>Documentación de PySide&amp;2</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2914"/>
-        <source>Open PySide2 Documentation</source>
-        <translation>Abrir Documentación de PySide2</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2916"/>
-        <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&apos;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="5792"/>
-        <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="2786"/>
-        <source>Virtualenv Manager</source>
-        <translation>Gestor de Virtualenv</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2780"/>
-        <source>&amp;Virtualenv Manager...</source>
-        <translation>Gestor de &amp;Virtualenv...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2788"/>
-        <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Gestor de Virtualenv&lt;/b&gt;&lt;p&gt;Abre un diálogo para gestionar los entornos virtuales Python definidos.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2803"/>
-        <source>Virtualenv Configurator</source>
-        <translation>Configurador de Virtualenv</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2797"/>
-        <source>Virtualenv &amp;Configurator...</source>
-        <translation>Configurador de &amp;Virtualenv...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2805"/>
-        <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Configurador de Virtualenv&lt;/b&gt;&lt;p&gt;Abre un diálogo para introducir todos los parámetros necesarios para crear un entorno virtual de Python utilizando virtualenv o pyvenv.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3148"/>
-        <source>Left Side</source>
-        <translation>Lado Izquierdo</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3160"/>
-        <source>Bottom Side</source>
-        <translation>Lado Inferior</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3167"/>
-        <source>Right Side</source>
-        <translation>Lado Derecho</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3187"/>
-        <source>Plug-ins</source>
-        <translation>Plugins</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1620"/>
-        <source>Restart</source>
-        <translation>Reiniciar</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1620"/>
         <source>Ctrl+Shift+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Shift+Q</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1626"/>
+        <location filename="../UI/UserInterface.py" line="1660"/>
         <source>Restart the IDE</source>
         <translation>Reiniciar la IDE</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1627"/>
+        <location filename="../UI/UserInterface.py" line="1661"/>
         <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="5966"/>
+        <location filename="../UI/UserInterface.py" line="6000"/>
         <source>Start Web Browser</source>
         <translation>Iniciar Navegador Web</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5905"/>
+        <location filename="../UI/UserInterface.py" line="5939"/>
         <source>The eric6 web browser could not be started.</source>
         <translation>El navegador web de eric 6 no se ha podido iniciar.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5966"/>
+        <location filename="../UI/UserInterface.py" line="6000"/>
         <source>&lt;p&gt;The eric6 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 eric6 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="2051"/>
+        <location filename="../UI/UserInterface.py" line="2085"/>
         <source>Conda</source>
         <translation>Conda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2033"/>
+        <location filename="../UI/UserInterface.py" line="2067"/>
         <source>PyPI</source>
         <translation>PyPI</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3498"/>
+        <location filename="../UI/UserInterface.py" line="3532"/>
         <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="2069"/>
+        <location filename="../UI/UserInterface.py" line="2103"/>
         <source>MicroPython</source>
         <translation>MicroPython</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>Ctrl+Alt+Shift+I</source>
         <translation>Ctrl+Alt+Shift+I</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2013"/>
+        <location filename="../UI/UserInterface.py" line="2047"/>
         <source>Ctrl+Alt+Shift+D</source>
         <translation>Ctrl+Alt+Shift+D</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2019"/>
+        <location filename="../UI/UserInterface.py" line="2053"/>
         <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="2022"/>
+        <location filename="../UI/UserInterface.py" line="2056"/>
         <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="2033"/>
+        <location filename="../UI/UserInterface.py" line="2067"/>
         <source>Ctrl+Alt+Shift+P</source>
         <translation>Ctrl+Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2039"/>
+        <location filename="../UI/UserInterface.py" line="2073"/>
         <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="2041"/>
-        <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="2051"/>
-        <source>Ctrl+Alt+Shift+C</source>
-        <translation>Ctrl+Alt+Shift+C</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2057"/>
-        <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="2059"/>
-        <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="2069"/>
-        <source>Ctrl+Alt+Shift+M</source>
-        <translation>Ctrl+Alt+Shift+M</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2075"/>
+        <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="2085"/>
+        <source>Ctrl+Alt+Shift+C</source>
+        <translation>Ctrl+Alt+Shift+C</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2091"/>
+        <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="2093"/>
+        <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="2103"/>
+        <source>Ctrl+Alt+Shift+M</source>
+        <translation>Ctrl+Alt+Shift+M</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2109"/>
         <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="2077"/>
+        <location filename="../UI/UserInterface.py" line="2111"/>
         <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="3145"/>
+        <location filename="../UI/UserInterface.py" line="3179"/>
         <source>Central Park</source>
         <translation>Central Park</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3672"/>
+        <location filename="../UI/UserInterface.py" line="3706"/>
         <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="5009"/>
+        <location filename="../UI/UserInterface.py" line="5043"/>
         <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="5079"/>
+        <location filename="../UI/UserInterface.py" line="5113"/>
         <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="5123"/>
+        <location filename="../UI/UserInterface.py" line="5157"/>
         <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="2182"/>
+        <location filename="../UI/UserInterface.py" line="2216"/>
         <source>Show Install Info</source>
         <translation>Mostrar Información de Instalación</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2182"/>
+        <location filename="../UI/UserInterface.py" line="2216"/>
         <source>Show Install &amp;Info...</source>
         <translation>Mostrar &amp;Información de Instalación...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2186"/>
+        <location filename="../UI/UserInterface.py" line="2220"/>
         <source>Show Installation Information</source>
         <translation>Mostrar Información de Instalación</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2188"/>
+        <location filename="../UI/UserInterface.py" line="2222"/>
         <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>
@@ -81865,6 +81894,21 @@
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Visor Desensamblado Python&lt;/b&gt;&lt;p&gt;Abre una vista de árbol del desensamblado del archivo actual de código Python.&lt;/p&gt;</translation>
     </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="744"/>
+        <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the shell window. A dialog is shown to enter the search text and options for the search.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="765"/>
+        <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="786"/>
+        <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
@@ -82333,32 +82377,32 @@
         <translation>Actualizar</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="323"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="333"/>
         <source>&lt;virtualenv did not finish within 5s.&gt;</source>
         <translation>&lt;virtualenv no ha terminado en 5s.&gt;</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="341"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="351"/>
         <source>&lt;No suitable virtualenv found.&gt;</source>
         <translation>&lt;No se ha encontrado un virtualenv adecuado.&gt;</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="343"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="353"/>
         <source>virtualenv Version: {0}</source>
         <translation>Versión de virtualenv : {0}</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="377"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="387"/>
         <source>&lt;pyvenv did not finish within 5s.&gt;</source>
         <translation>&lt;pyvenv no ha terminado en 5s.&gt;</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="397"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="407"/>
         <source>&lt;No suitable pyvenv found.&gt;</source>
         <translation>&lt;No se ha encontrado un pyvenv adecuado.&gt;</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="399"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="409"/>
         <source>pyvenv Version: {0}</source>
         <translation>Versión de pyvenv : {0}</translation>
     </message>
@@ -82493,7 +82537,7 @@
         <translation>Archivos de Texto (*.txt);;Todos los Archivos (*)</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="411"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="421"/>
         <source>conda Version: {0}</source>
         <translation>Versión de conda: {0}</translation>
     </message>
@@ -85071,7 +85115,7 @@
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserView.py" line="676"/>
-        <source>Open Link in New Tab	Ctrl+LMB</source>
+        <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source>
         <translation>Abrir enlace en nueva pestaña Tab\tCtrl+LMB (botón izquierdo del ratón)</translation>
     </message>
     <message>
--- a/eric6/i18n/eric6_fr.ts	Wed Nov 11 17:51:36 2020 +0100
+++ b/eric6/i18n/eric6_fr.ts	Sat Nov 14 11:50:43 2020 +0100
@@ -40527,52 +40527,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="71"/>
+        <location filename="../UI/InstallInfoDialog.py" line="70"/>
         <source>Yes</source>
         <translation type="unfinished">Oui</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="71"/>
+        <location filename="../UI/InstallInfoDialog.py" line="70"/>
         <source>No</source>
         <translation type="unfinished">Non</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="75"/>
+        <location filename="../UI/InstallInfoDialog.py" line="74"/>
         <source>&apos;eric-ide&apos; was installed from PyPI using the pip command.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="81"/>
+        <location filename="../UI/InstallInfoDialog.py" line="80"/>
         <source>The information shown in this dialog was guessed at the first start of eric.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="99"/>
+        <location filename="../UI/InstallInfoDialog.py" line="98"/>
         <source>Load Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="99"/>
+        <location filename="../UI/InstallInfoDialog.py" line="98"/>
         <source>&lt;p&gt;The file containing the install information could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="151"/>
+        <location filename="../UI/InstallInfoDialog.py" line="150"/>
         <source>Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="151"/>
+        <location filename="../UI/InstallInfoDialog.py" line="150"/>
         <source>The install information was edited. Unsaved changes will be lost. Save first?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="188"/>
+        <location filename="../UI/InstallInfoDialog.py" line="187"/>
         <source>Save Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="188"/>
+        <location filename="../UI/InstallInfoDialog.py" line="187"/>
         <source>&lt;p&gt;The file containing the install information could not be written.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -40582,17 +40582,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="61"/>
+        <location filename="../UI/InstallInfoDialog.py" line="60"/>
         <source>Installed as Administrator:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="63"/>
+        <location filename="../UI/InstallInfoDialog.py" line="62"/>
         <source>Installed with sudo:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="93"/>
+        <location filename="../UI/InstallInfoDialog.py" line="92"/>
         <source>unknown</source>
         <translation type="unfinished">inconnu</translation>
     </message>
@@ -40602,32 +40602,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="87"/>
+        <location filename="../UI/InstallInfoDialog.py" line="86"/>
         <source>The installation information was provided by the user.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="39"/>
+        <location filename="../UI/InstallInfoDialog.py" line="38"/>
         <source>Delete Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="255"/>
+        <location filename="../UI/InstallInfoDialog.py" line="254"/>
         <source>Upgrade Instructions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="201"/>
+        <location filename="../UI/InstallInfoDialog.py" line="200"/>
         <source>Delete Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="201"/>
+        <location filename="../UI/InstallInfoDialog.py" line="200"/>
         <source>Do you really want to delete the installation information? It will be recreated at the next start.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="228"/>
+        <location filename="../UI/InstallInfoDialog.py" line="227"/>
         <source>Perform the following step(s) with Administrator privileges.
 </source>
         <translation type="unfinished"></translation>
@@ -50329,12 +50329,12 @@
         <translation>Erreurs</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="143"/>
+        <location filename="../PipInterface/PipDialog.py" line="146"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="143"/>
+        <location filename="../PipInterface/PipDialog.py" line="146"/>
         <source>The process {0} could not be started.</source>
         <translation>Le processus {0} ne peut être démarré.</translation>
     </message>
@@ -51041,7 +51041,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="910"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="911"/>
         <source>Search PyPI</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51061,102 +51061,102 @@
         <translation>Erreur : {0}</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="872"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="873"/>
         <source>Show Package Details</source>
         <translation>Montrer les détails du package</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="872"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="873"/>
         <source>Select the package version:</source>
         <translation>Sélectionner la version du package :</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="910"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="911"/>
         <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="926"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="927"/>
         <source>Install Pip</source>
         <translation>Installer pip</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="929"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="930"/>
         <source>Install Pip to User-Site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="932"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="933"/>
         <source>Repair Pip</source>
         <translation>Réparer Pip</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1046"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1050"/>
         <source>Install Packages</source>
         <translation>Installer des packages</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="939"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="940"/>
         <source>Install Local Package</source>
         <translation>Installer un package local</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="943"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
         <source>Install Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="946"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="947"/>
         <source>Uninstall Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="949"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="950"/>
         <source>Generate Requirements...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="967"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="968"/>
         <source>Edit User Configuration...</source>
         <translation>Éditer la configuration utilisateur...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="970"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="971"/>
         <source>Edit Environment Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="975"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="976"/>
         <source>Configure...</source>
         <translation>Configuration...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1158"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1166"/>
         <source>Edit Configuration</source>
         <translation>Éditer la configuration</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1158"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1166"/>
         <source>No valid configuration path determined. Aborting</source>
         <translation>Pas de chemin de configuration déterminé. Annulation</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="953"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="954"/>
         <source>Show Cache Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="956"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="957"/>
         <source>Show Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="960"/>
         <source>Remove Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="962"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="963"/>
         <source>Purge Cache...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -64630,229 +64630,259 @@
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="242"/>
         <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected language.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Redémarrer&lt;/b&gt;&lt;p&gt;Redémarrer le shell avec le langage sélectionné.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="249"/>
+        <translation type="obsolete">&lt;b&gt;Redémarrer&lt;/b&gt;&lt;p&gt;Redémarrer le shell avec le langage sélectionné.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="250"/>
         <source>Restart and Clear</source>
         <translation>Redémarrer et effacer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="254"/>
+        <location filename="../QScintilla/ShellWindow.py" line="255"/>
         <source>Clear the window and restart the shell</source>
         <translation>Effacer la fenêtre et redémarrer le shell</translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="256"/>
         <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected language.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Redémarrer et effacer&lt;/b&gt;&lt;p&gt;Nettoyer la fenêtre shell et redémarrer le shell avec la langage sélectionné.&lt;/p&gt;</translation>
+        <translation type="obsolete">&lt;b&gt;Redémarrer et effacer&lt;/b&gt;&lt;p&gt;Nettoyer la fenêtre shell et redémarrer le shell avec la langage sélectionné.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="885"/>
+        <source>Show History</source>
+        <translation>Montrer l&apos;historique</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="885"/>
+        <source>&amp;Show History...</source>
+        <translation>Montrer l&apos;hi&amp;storique...</translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="891"/>
-        <source>Show History</source>
-        <translation>Montrer l&apos;historique</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="891"/>
-        <source>&amp;Show History...</source>
-        <translation>Montrer l&apos;hi&amp;storique...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="897"/>
         <source>Show the shell history in a dialog</source>
         <translation>Montrer l&apos;historique du shell dans une fenêtre</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="895"/>
+        <source>Clear History</source>
+        <translation>Effacer l&apos;historique</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="895"/>
+        <source>&amp;Clear History...</source>
+        <translation>Effa&amp;cer l&apos;historique...</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="901"/>
-        <source>Clear History</source>
-        <translation>Effacer l&apos;historique</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="901"/>
-        <source>&amp;Clear History...</source>
-        <translation>Effa&amp;cer l&apos;historique...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="907"/>
         <source>Clear the shell history</source>
         <translation>Nettoyer l&apos;historique shell</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="911"/>
+        <location filename="../QScintilla/ShellWindow.py" line="905"/>
         <source>Select History Entry</source>
         <translation>Sélectionner l&apos;entrée de l&apos;historique</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="911"/>
+        <location filename="../QScintilla/ShellWindow.py" line="905"/>
         <source>Select History &amp;Entry</source>
         <translation>Sélectionner l&apos;&amp;entrée de l&apos;historique</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="916"/>
+        <location filename="../QScintilla/ShellWindow.py" line="910"/>
         <source>Select an entry of the shell history</source>
         <translation>Sélectionner une entrée de l&apos;historique shell</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
+        <source>About</source>
+        <translation>À propos</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
+        <source>&amp;About</source>
+        <translation>&amp;À propos</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="922"/>
+        <source>Display information about this software</source>
+        <translation>Affiche les informations concernant le logiciel</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="924"/>
-        <source>About</source>
-        <translation>À propos</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="924"/>
-        <source>&amp;About</source>
-        <translation>&amp;À propos</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="928"/>
-        <source>Display information about this software</source>
-        <translation>Affiche les informations concernant le logiciel</translation>
+        <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;À propos de&lt;/b&gt;&lt;p&gt;Affiche certaines informations concernant le logiciel.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="930"/>
-        <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;À propos de&lt;/b&gt;&lt;p&gt;Affiche certaines informations concernant le logiciel.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="936"/>
         <source>About Qt</source>
         <translation>À propos de Qt</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="930"/>
+        <source>About &amp;Qt</source>
+        <translation>À propos de &amp;Qt</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <source>Display information about the Qt toolkit</source>
+        <translation>Affiche les informations concernant Qt</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="936"/>
-        <source>About &amp;Qt</source>
-        <translation>À propos de &amp;Qt</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="940"/>
-        <source>Display information about the Qt toolkit</source>
-        <translation>Affiche les informations concernant Qt</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="942"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation>&lt;b&gt;À propos de Qt&lt;/b&gt;&lt;p&gt;Affiche les informations concernant Qt&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
         <source>What&apos;s This?</source>
         <translation>Qu&apos;est-ce que c&apos;est ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Qu&apos;est-ce que c&apos;est?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="955"/>
+        <location filename="../QScintilla/ShellWindow.py" line="949"/>
         <source>Context sensitive help</source>
         <translation>Aide contextuelle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="956"/>
+        <location filename="../QScintilla/ShellWindow.py" line="950"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;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&apos;aide contextuelle&lt;/b&gt;&lt;p&gt;Dans le mode &quot;Qu&apos;est-ce que c&apos;est?&quot;, la souris est affichée avec un point d&apos;interrogation, et on peut cliquer sur les éléments de  l&apos;interface pour obtenir une courte description de l&apos;élément. Cette fonction peut être obtenue avec le bouton d&apos;aide contextuelle de la barre principale.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1100"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1094"/>
         <source>About eric6 Shell Window</source>
         <translation>À propos de la fenêtre shell eric6</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1100"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1094"/>
         <source>The eric6 Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1128"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1122"/>
         <source>&amp;File</source>
         <translation>&amp;Fichier</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1137"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1131"/>
         <source>&amp;Edit</source>
         <translation>&amp;Edition</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1148"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1142"/>
         <source>&amp;View</source>
         <translation>&amp;Affichage</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1155"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1149"/>
         <source>Histor&amp;y</source>
         <translation>&amp;Historique</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1156"/>
+        <source>&amp;Start</source>
+        <translation>&amp;Lancer</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1162"/>
-        <source>&amp;Start</source>
-        <translation>&amp;Lancer</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1168"/>
         <source>&amp;Help</source>
         <translation>A&amp;ide</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1201"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1195"/>
         <source>File</source>
         <translation>Fichier</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1210"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1204"/>
         <source>Edit</source>
         <translation>Édition</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1211"/>
+        <source>Find</source>
+        <translation>Chercher</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1217"/>
-        <source>Find</source>
-        <translation>Chercher</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1223"/>
         <source>View</source>
         <translation>Affichage</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1224"/>
+        <source>History</source>
+        <translation>Historique</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1230"/>
-        <source>History</source>
-        <translation>Historique</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1236"/>
         <source>Help</source>
         <translation>Aide</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1257"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1251"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Cette zone de la barre de statut permet de zoomer le shell.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="585"/>
+        <location filename="../QScintilla/ShellWindow.py" line="579"/>
         <source>Move forward one history entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="595"/>
+        <location filename="../QScintilla/ShellWindow.py" line="589"/>
         <source>Move back one history entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1036"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1030"/>
         <source>eric6 Shell</source>
         <translation>Shell eric6</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1034"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1028"/>
         <source>eric6 Shell [{0}]</source>
         <translation>Shell eric6 [{0}]</translation>
     </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="242"/>
+        <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected environment.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="257"/>
+        <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected environment.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="284"/>
+        <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text to the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished">&lt;b&gt;Couper&lt;/b&gt;&lt;p&gt;Couper le texte sélectionné vers le presse papier.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="302"/>
+        <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished">&lt;b&gt;Copier&lt;/b&gt;&lt;p&gt;Copie le texte sélectionné dans le presse-papier.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="320"/>
+        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="337"/>
+        <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>Shelve</name>
@@ -77209,383 +77239,383 @@
 <context>
     <name>UserInterface</name>
     <message>
-        <location filename="../UI/UserInterface.py" line="277"/>
+        <location filename="../UI/UserInterface.py" line="278"/>
         <source>Generating Main User Interface...</source>
         <translation>Création de l&apos;interface utilisateur...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1802"/>
+        <location filename="../UI/UserInterface.py" line="1836"/>
         <source>Log-Viewer</source>
         <translation>Fenêtre de log</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="327"/>
+        <location filename="../UI/UserInterface.py" line="328"/>
         <source>Setting up connections...</source>
         <translation>Définition des connexions...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="627"/>
+        <location filename="../UI/UserInterface.py" line="628"/>
         <source>Initializing Actions...</source>
         <translation>Initialisation des actions...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="629"/>
+        <location filename="../UI/UserInterface.py" line="630"/>
         <source>Initializing Menus...</source>
         <translation>Initialisation des menus...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="631"/>
+        <location filename="../UI/UserInterface.py" line="632"/>
         <source>Initializing Toolbars...</source>
         <translation>Initialisation des barres d&apos;outils...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="633"/>
+        <location filename="../UI/UserInterface.py" line="634"/>
         <source>Initializing Statusbar...</source>
         <translation>Initialisation de la barre d&apos;état...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="584"/>
+        <location filename="../UI/UserInterface.py" line="585"/>
         <source>Initializing Tools...</source>
         <translation>Initialisation des outils...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1603"/>
+        <location filename="../UI/UserInterface.py" line="1637"/>
         <source>Quit</source>
         <translation>Quitter</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1603"/>
+        <location filename="../UI/UserInterface.py" line="1637"/>
         <source>&amp;Quit</source>
         <translation>&amp;Quitter</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1609"/>
+        <location filename="../UI/UserInterface.py" line="1643"/>
         <source>Quit the IDE</source>
         <translation>Quitter l&apos;IDE</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1610"/>
+        <location filename="../UI/UserInterface.py" line="1644"/>
         <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&apos;IDE&lt;/b&gt;&lt;p&gt;Cette commande fait quitter l&apos;IDE. Toutes les modifications non-enregistrées devraient d&apos;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="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>What&apos;s This?</source>
         <translation>Qu&apos;est-ce que c&apos;est ?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Qu&apos;est-ce que c&apos;est?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2093"/>
+        <location filename="../UI/UserInterface.py" line="2127"/>
         <source>Context sensitive help</source>
         <translation>Aide contextuelle</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2094"/>
+        <location filename="../UI/UserInterface.py" line="2128"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;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&apos;aide contextuelle&lt;/b&gt;&lt;p&gt;Dans le mode &quot;Qu&apos;est-ce que c&apos;est?&quot;, la souris est affichée avec un point d&apos;interrogation, et on peut cliquer sur les éléments de  l&apos;interface pour obtenir une courte description de l&apos;élément. Cette fonction peut être obtenue avec le bouton d&apos;aide contextuelle de la barre principale.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>Helpviewer</source>
         <translation>Visionneur d&apos;aide</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>&amp;Helpviewer...</source>
         <translation>Visionneur d&apos;&amp;aide...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2111"/>
+        <location filename="../UI/UserInterface.py" line="2145"/>
         <source>Open the helpviewer window</source>
         <translation>Ouvre le visualiseur d&apos;aide</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2131"/>
+        <location filename="../UI/UserInterface.py" line="2165"/>
         <source>Show Versions</source>
         <translation>Afficher les versions</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2131"/>
+        <location filename="../UI/UserInterface.py" line="2165"/>
         <source>Show &amp;Versions</source>
         <translation>Afficher les &amp;versions</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2135"/>
+        <location filename="../UI/UserInterface.py" line="2169"/>
         <source>Display version information</source>
         <translation>Affiche les informations sur les versions</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2137"/>
+        <location filename="../UI/UserInterface.py" line="2171"/>
         <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="3745"/>
+        <location filename="../UI/UserInterface.py" line="3779"/>
         <source>Report Bug</source>
         <translation>Rapport de bogue</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2196"/>
+        <location filename="../UI/UserInterface.py" line="2230"/>
         <source>Report &amp;Bug...</source>
         <translation>Rapport de &amp;bogue...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2200"/>
+        <location filename="../UI/UserInterface.py" line="2234"/>
         <source>Report a bug</source>
         <translation>Envoyer un rapport de bogue</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2201"/>
+        <location filename="../UI/UserInterface.py" line="2235"/>
         <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="3279"/>
+        <location filename="../UI/UserInterface.py" line="3313"/>
         <source>Unittest</source>
         <translation>Tests unitaires</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2223"/>
+        <location filename="../UI/UserInterface.py" line="2257"/>
         <source>&amp;Unittest...</source>
         <translation>&amp;Tests unitaires...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2228"/>
+        <location filename="../UI/UserInterface.py" line="2262"/>
         <source>Start unittest dialog</source>
         <translation>Ouvre la fenêtre Unitest</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2490"/>
+        <location filename="../UI/UserInterface.py" line="2524"/>
         <source>Preferences</source>
         <translation>Préférences</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2490"/>
+        <location filename="../UI/UserInterface.py" line="2524"/>
         <source>&amp;Preferences...</source>
         <translation>&amp;Préférences...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2495"/>
+        <location filename="../UI/UserInterface.py" line="2529"/>
         <source>Set the prefered configuration</source>
         <translation>Édition des préférences</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2497"/>
+        <location filename="../UI/UserInterface.py" line="2531"/>
         <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="2595"/>
+        <location filename="../UI/UserInterface.py" line="2629"/>
         <source>Keyboard Shortcuts</source>
         <translation>Raccourcis clavier</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2595"/>
-        <source>Keyboard &amp;Shortcuts...</source>
-        <translation>&amp;Raccourcis claviers...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2600"/>
-        <source>Set the keyboard shortcuts</source>
-        <translation>Définition des raccourcis clavier</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2602"/>
-        <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&apos;application.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6217"/>
-        <source>Export Keyboard Shortcuts</source>
-        <translation>Exporter les raccourcis clavier</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2610"/>
-        <source>&amp;Export Keyboard Shortcuts...</source>
-        <translation>&amp;Exporter les raccourcis claviers...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2615"/>
-        <source>Export the keyboard shortcuts</source>
-        <translation>Exporte les raccourcis claviers</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2617"/>
-        <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&apos;application.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6241"/>
-        <source>Import Keyboard Shortcuts</source>
-        <translation>Importer des raccourcis clavier</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2624"/>
-        <source>&amp;Import Keyboard Shortcuts...</source>
-        <translation>&amp;Importer des raccourcis clavier...</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2629"/>
+        <source>Keyboard &amp;Shortcuts...</source>
+        <translation>&amp;Raccourcis claviers...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2634"/>
+        <source>Set the keyboard shortcuts</source>
+        <translation>Définition des raccourcis clavier</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2636"/>
+        <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&apos;application.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6251"/>
+        <source>Export Keyboard Shortcuts</source>
+        <translation>Exporter les raccourcis clavier</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2644"/>
+        <source>&amp;Export Keyboard Shortcuts...</source>
+        <translation>&amp;Exporter les raccourcis claviers...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2649"/>
+        <source>Export the keyboard shortcuts</source>
+        <translation>Exporte les raccourcis claviers</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2651"/>
+        <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&apos;application.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6275"/>
+        <source>Import Keyboard Shortcuts</source>
+        <translation>Importer des raccourcis clavier</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2658"/>
+        <source>&amp;Import Keyboard Shortcuts...</source>
+        <translation>&amp;Importer des raccourcis clavier...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2663"/>
         <source>Import the keyboard shortcuts</source>
         <translation>Importe des raccourcis clavier</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2631"/>
+        <location filename="../UI/UserInterface.py" line="2665"/>
         <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&apos;application.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3018"/>
+        <location filename="../UI/UserInterface.py" line="3052"/>
         <source>E&amp;xtras</source>
         <translation>E&amp;xtras</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3132"/>
+        <location filename="../UI/UserInterface.py" line="3166"/>
         <source>&amp;Window</source>
         <translation>&amp;Fenêtre</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3207"/>
+        <location filename="../UI/UserInterface.py" line="3241"/>
         <source>&amp;Help</source>
         <translation>A&amp;ide</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3278"/>
+        <location filename="../UI/UserInterface.py" line="3312"/>
         <source>Tools</source>
         <translation>Outils</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5147"/>
+        <location filename="../UI/UserInterface.py" line="5181"/>
         <source>Help</source>
         <translation>Aide</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3280"/>
+        <location filename="../UI/UserInterface.py" line="3314"/>
         <source>Settings</source>
         <translation>Configuration</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3193"/>
+        <location filename="../UI/UserInterface.py" line="3227"/>
         <source>&amp;Toolbars</source>
         <translation>&amp;Barres d&apos;Outils</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5275"/>
+        <location filename="../UI/UserInterface.py" line="5309"/>
         <source>Problem</source>
         <translation>Problème</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5470"/>
+        <location filename="../UI/UserInterface.py" line="5504"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="660"/>
+        <location filename="../UI/UserInterface.py" line="661"/>
         <source>Initializing Single Application Server...</source>
         <translation>Initialisation du serveur d&apos;application...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2229"/>
+        <location filename="../UI/UserInterface.py" line="2263"/>
         <source>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Perform unit tests. The dialog gives you the ability to select and run a unittest suite.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tests unitaires&lt;/b&gt;&lt;p&gt;Effectue les tests d&apos;unitaires. Cette fenêtre permet de sélectionner et de lancer une suite de tests unitaires.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2271"/>
         <source>Unittest Restart</source>
         <translation>Relancer les tests unitaires</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2271"/>
         <source>&amp;Restart Unittest...</source>
         <translation>&amp;Relancer les tests unitaires...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2242"/>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>Restart last unittest</source>
         <translation>Relancer le dernier test unitaire</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2243"/>
+        <location filename="../UI/UserInterface.py" line="2277"/>
         <source>&lt;b&gt;Restart Unittest&lt;/b&gt;&lt;p&gt;Restart the unittest performed last.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Relancer le dernier test unitaire&lt;/b&gt;
 &lt;p&gt;Relance le dernier test unitaire effectué.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2267"/>
+        <location filename="../UI/UserInterface.py" line="2301"/>
         <source>Unittest Script</source>
         <translation>Script de tests unitaires</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2267"/>
+        <location filename="../UI/UserInterface.py" line="2301"/>
         <source>Unittest &amp;Script...</source>
         <translation>&amp;Script de tests unitaires...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2272"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Run unittest with current script</source>
         <translation>Lance les tests unitaires sur le script courant</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2274"/>
+        <location filename="../UI/UserInterface.py" line="2308"/>
         <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Script de tests unitaires&lt;/b&gt;&lt;p&gt;Lance les tests unitaires sur le script en cours.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2282"/>
+        <location filename="../UI/UserInterface.py" line="2316"/>
         <source>Unittest Project</source>
         <translation>Projet de tests unitaires</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2282"/>
+        <location filename="../UI/UserInterface.py" line="2316"/>
         <source>Unittest &amp;Project...</source>
         <translation>&amp;Projet de tests unitaires...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2287"/>
+        <location filename="../UI/UserInterface.py" line="2321"/>
         <source>Run unittest with current project</source>
         <translation>Lance les tests unitaires sur le projet courant</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2289"/>
+        <location filename="../UI/UserInterface.py" line="2323"/>
         <source>&lt;b&gt;Unittest Project&lt;/b&gt;&lt;p&gt;Run unittest with current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Projet de tests unitaires&lt;/b&gt;&lt;p&gt;Lance les tests unitaires sur le projet en cours.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2377"/>
+        <location filename="../UI/UserInterface.py" line="2411"/>
         <source>Compare Files</source>
         <translation>Comparaison de fichiers</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2377"/>
+        <location filename="../UI/UserInterface.py" line="2411"/>
         <source>&amp;Compare Files...</source>
         <translation>&amp;Comparaison de fichiers...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2395"/>
+        <location filename="../UI/UserInterface.py" line="2429"/>
         <source>Compare two files</source>
         <translation>Compare deux fichiers</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2383"/>
+        <location filename="../UI/UserInterface.py" line="2417"/>
         <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="2390"/>
+        <location filename="../UI/UserInterface.py" line="2424"/>
         <source>Compare Files side by side</source>
         <translation>Comparaison de fichiers côte à côte</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2396"/>
+        <location filename="../UI/UserInterface.py" line="2430"/>
         <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="3074"/>
+        <location filename="../UI/UserInterface.py" line="3108"/>
         <source>&amp;Unittest</source>
         <translation>Tests &amp;unitaires</translation>
     </message>
@@ -77595,222 +77625,222 @@
         <translation type="obsolete">Il n&apos;y a pas de script principal défini dans le projet en cours. Abandon</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6804"/>
+        <location filename="../UI/UserInterface.py" line="6838"/>
         <source>Drop Error</source>
         <translation>Erreur de suppression</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
+        <location filename="../UI/UserInterface.py" line="1819"/>
         <source>File-Browser</source>
         <translation>Navigateur de fichiers</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1681"/>
+        <location filename="../UI/UserInterface.py" line="1715"/>
         <source>Edit Profile</source>
         <translation>Profil d&apos;Edition</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1687"/>
+        <location filename="../UI/UserInterface.py" line="1721"/>
         <source>Activate the edit view profile</source>
         <translation>Active la fenêtre d&apos;édition des profils Edition/Débogage</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1689"/>
+        <location filename="../UI/UserInterface.py" line="1723"/>
         <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Edition des profils&lt;/b&gt;&lt;p&gt;Active la fenêtre d&apos;é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="1698"/>
+        <location filename="../UI/UserInterface.py" line="1732"/>
         <source>Debug Profile</source>
         <translation>Profil Débogage</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1704"/>
+        <location filename="../UI/UserInterface.py" line="1738"/>
         <source>Activate the debug view profile</source>
         <translation>Active le profil Débogage</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1706"/>
+        <location filename="../UI/UserInterface.py" line="1740"/>
         <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; 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 &quot;Edition des profils&quot;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2563"/>
+        <location filename="../UI/UserInterface.py" line="2597"/>
         <source>View Profiles</source>
         <translation>Profils de visualisation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2563"/>
+        <location filename="../UI/UserInterface.py" line="2597"/>
         <source>&amp;View Profiles...</source>
         <translation>Profils de &amp;Visualisation...</translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="2602"/>
+        <source>Configure view profiles</source>
+        <translation>Configuration des profils de visualisation</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2604"/>
+        <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&apos;é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="2384"/>
+        <source>UI Previewer</source>
+        <translation>Visionneur d&apos;UI</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2384"/>
+        <source>&amp;UI Previewer...</source>
+        <translation>Visionneur d&apos;&amp;UI...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2389"/>
+        <source>Start the UI Previewer</source>
+        <translation>Démarre le Visionneur d&apos;UI</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2390"/>
+        <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&apos;UI&lt;/b&gt;&lt;p&gt;Démarre le visualiseur d&apos;UI.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2397"/>
+        <source>Translations Previewer</source>
+        <translation>Visionneur de traductions</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2397"/>
+        <source>&amp;Translations Previewer...</source>
+        <translation>Visionneur de &amp;Traductions...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2402"/>
+        <source>Start the Translations Previewer</source>
+        <translation>Démarre le visionneur de traductions</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2404"/>
+        <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="1802"/>
+        <source>Shell</source>
+        <translation>Shell</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1802"/>
+        <source>&amp;Shell</source>
+        <translation>&amp;Shell</translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="2568"/>
-        <source>Configure view profiles</source>
-        <translation>Configuration des profils de visualisation</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2570"/>
-        <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&apos;é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="2350"/>
-        <source>UI Previewer</source>
-        <translation>Visionneur d&apos;UI</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2350"/>
-        <source>&amp;UI Previewer...</source>
-        <translation>Visionneur d&apos;&amp;UI...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2355"/>
-        <source>Start the UI Previewer</source>
-        <translation>Démarre le Visionneur d&apos;UI</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2356"/>
-        <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&apos;UI&lt;/b&gt;&lt;p&gt;Démarre le visualiseur d&apos;UI.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2363"/>
-        <source>Translations Previewer</source>
-        <translation>Visionneur de traductions</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2363"/>
-        <source>&amp;Translations Previewer...</source>
-        <translation>Visionneur de &amp;Traductions...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2368"/>
-        <source>Start the Translations Previewer</source>
-        <translation>Démarre le visionneur de traductions</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2370"/>
-        <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="1768"/>
-        <source>Shell</source>
-        <translation>Shell</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
-        <source>&amp;Shell</source>
-        <translation>&amp;Shell</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2534"/>
         <source>Reload APIs</source>
         <translation>Recharger les APIs</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2534"/>
+        <location filename="../UI/UserInterface.py" line="2568"/>
         <source>Reload &amp;APIs</source>
         <translation>Recharger les &amp;APIs</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2538"/>
+        <location filename="../UI/UserInterface.py" line="2572"/>
         <source>Reload the API information</source>
         <translation>Recharger les informations des API</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2540"/>
+        <location filename="../UI/UserInterface.py" line="2574"/>
         <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="1820"/>
+        <location filename="../UI/UserInterface.py" line="1854"/>
         <source>Task-Viewer</source>
         <translation>Visualisueur de tâches</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6411"/>
+        <location filename="../UI/UserInterface.py" line="6445"/>
         <source>Save tasks</source>
         <translation>Enregistrement des tâches</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6440"/>
+        <location filename="../UI/UserInterface.py" line="6474"/>
         <source>Read tasks</source>
         <translation>Lecture des tâches</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5147"/>
+        <location filename="../UI/UserInterface.py" line="5181"/>
         <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
         <translation>Aucun visualiseur personalisé n&apos;est sélectionné. Prière d&apos;en spécifier un dans les préférences.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5809"/>
+        <location filename="../UI/UserInterface.py" line="5843"/>
         <source>Documentation Missing</source>
         <translation>Documentation Manquante</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
+        <location filename="../UI/UserInterface.py" line="3779"/>
         <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
         <translation>L&apos;adresse mail ou l&apos;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="1839"/>
+        <location filename="../UI/UserInterface.py" line="1873"/>
         <source>Template-Viewer</source>
         <translation>Gestionnaire de gabarits</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1715"/>
+        <location filename="../UI/UserInterface.py" line="1749"/>
         <source>Alt+Shift+P</source>
         <translation>Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1784"/>
         <source>Alt+Shift+D</source>
         <translation>Alt+Shift+D</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
-        <source>Alt+Shift+S</source>
-        <translation>Alt+Shift+S</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
-        <source>Alt+Shift+F</source>
-        <translation>Alt+Shift+F</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
-        <source>Alt+Shift+T</source>
-        <translation>Alt+Shift+T</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1732"/>
-        <source>Alt+Shift+M</source>
-        <translation>Alt+Shift+M</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2689"/>
-        <source>Activate current editor</source>
-        <translation>Activer l&apos;éditeur courant</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2689"/>
-        <source>Alt+Shift+E</source>
-        <translation>Alt+Shift+E</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2699"/>
-        <source>Ctrl+Alt+Tab</source>
-        <translation>Ctrl+Alt+Tab</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2708"/>
-        <source>Shift+Ctrl+Alt+Tab</source>
-        <translation>Shift+Ctrl+Alt+Tab</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1802"/>
+        <source>Alt+Shift+S</source>
+        <translation>Alt+Shift+S</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1819"/>
+        <source>Alt+Shift+F</source>
+        <translation>Alt+Shift+F</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1854"/>
+        <source>Alt+Shift+T</source>
+        <translation>Alt+Shift+T</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1766"/>
+        <source>Alt+Shift+M</source>
+        <translation>Alt+Shift+M</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2723"/>
+        <source>Activate current editor</source>
+        <translation>Activer l&apos;éditeur courant</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2723"/>
+        <source>Alt+Shift+E</source>
+        <translation>Alt+Shift+E</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2733"/>
+        <source>Ctrl+Alt+Tab</source>
+        <translation>Ctrl+Alt+Tab</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2742"/>
+        <source>Shift+Ctrl+Alt+Tab</source>
+        <translation>Shift+Ctrl+Alt+Tab</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1836"/>
         <source>Alt+Shift+G</source>
         <translation>Alt+Shift+G</translation>
     </message>
@@ -77830,68 +77860,68 @@
         <translation type="obsolete">Lance la Documentation Qt4</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2889"/>
+        <location filename="../UI/UserInterface.py" line="2923"/>
         <source>Eric API Documentation</source>
         <translation>Documentation pour les API Eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2889"/>
+        <location filename="../UI/UserInterface.py" line="2923"/>
         <source>&amp;Eric API Documentation</source>
         <translation>Documentation pour les API &amp;Eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2893"/>
+        <location filename="../UI/UserInterface.py" line="2927"/>
         <source>Open Eric API Documentation</source>
         <translation>Ouvre la documentation sur les APIs Eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5181"/>
+        <location filename="../UI/UserInterface.py" line="5215"/>
         <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&apos;aide.&lt;br&gt;Assurez-vous qu&apos;il est bien ici &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="594"/>
+        <location filename="../UI/UserInterface.py" line="595"/>
         <source>Registering Objects...</source>
         <translation>Enregistrement des objets...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1715"/>
+        <location filename="../UI/UserInterface.py" line="1749"/>
         <source>Project-Viewer</source>
         <translation>Gestionnaire de projet</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1784"/>
         <source>Debug-Viewer</source>
         <translation>Gestionnaire de débogage</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1603"/>
+        <location filename="../UI/UserInterface.py" line="1637"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1715"/>
+        <location filename="../UI/UserInterface.py" line="1749"/>
         <source>&amp;Project-Viewer</source>
         <translation>Gestionnaire de &amp;projet</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>Shift+F1</source>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>F1</source>
         <translation>F1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2147"/>
+        <location filename="../UI/UserInterface.py" line="2181"/>
         <source>Check for Updates</source>
         <translation>Rechercher des mises à jour</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2144"/>
+        <location filename="../UI/UserInterface.py" line="2178"/>
         <source>Check for &amp;Updates...</source>
         <translation>Rechercher des &amp;mises à jour...</translation>
     </message>
@@ -77906,27 +77936,27 @@
         <translation type="obsolete">Lance la documentation PyQt4</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3091"/>
+        <location filename="../UI/UserInterface.py" line="3125"/>
         <source>Select Tool Group</source>
         <translation>Sélection d&apos;un groupe d&apos;outils</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3102"/>
+        <location filename="../UI/UserInterface.py" line="3136"/>
         <source>Se&amp;ttings</source>
         <translation>&amp;Configuration</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3282"/>
+        <location filename="../UI/UserInterface.py" line="3316"/>
         <source>Profiles</source>
         <translation>Profils</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4101"/>
+        <location filename="../UI/UserInterface.py" line="4135"/>
         <source>&amp;Builtin Tools</source>
         <translation>Outils &amp;internes</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5792"/>
+        <location filename="../UI/UserInterface.py" line="5826"/>
         <source>Documentation</source>
         <translation>Documentation</translation>
     </message>
@@ -77936,12 +77966,12 @@
         <translation type="obsolete">&lt;p&gt;L&apos;emplacement de la documentation PyQt4 n&apos;a pas été configuré.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7175"/>
+        <location filename="../UI/UserInterface.py" line="7209"/>
         <source>Error during updates check</source>
         <translation>Erreur durant la recherche de mises à jour</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7156"/>
+        <location filename="../UI/UserInterface.py" line="7190"/>
         <source>Update available</source>
         <translation>Mise à jour disponible</translation>
     </message>
@@ -77951,1597 +77981,1597 @@
         <translation type="obsolete">&lt;h3&gt;Numéros de version&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7214"/>
+        <location filename="../UI/UserInterface.py" line="7248"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6009"/>
+        <location filename="../UI/UserInterface.py" line="6043"/>
         <source>Open Browser</source>
         <translation>Ouverture du navigateur</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6009"/>
+        <location filename="../UI/UserInterface.py" line="6043"/>
         <source>Could not start a web browser</source>
         <translation>Impossible de lancer le navigateur web</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4146"/>
+        <location filename="../UI/UserInterface.py" line="4180"/>
         <source>Configure Tool Groups ...</source>
         <translation>Configuration des groupes d&apos;outils...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4150"/>
+        <location filename="../UI/UserInterface.py" line="4184"/>
         <source>Configure current Tool Group ...</source>
         <translation>Configuration du groupe d&apos;outils courant...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2552"/>
-        <source>Show external tools</source>
-        <translation>Afficher les outils externes</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2547"/>
-        <source>Show external &amp;tools</source>
-        <translation>Afficher les &amp;outils externes</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6989"/>
-        <source>&amp;Cancel</source>
-        <translation>&amp;Annuler</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7175"/>
-        <source>Could not perform updates check.</source>
-        <translation>Impossible de vérifier les mises à jour.</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7251"/>
-        <source>First time usage</source>
-        <translation>Première utilisation</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="270"/>
-        <source>Initializing Plugin Manager...</source>
-        <translation>Initialisation du gestionnaire de plugins...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3055"/>
-        <source>P&amp;lugins</source>
-        <translation>P&amp;lugins</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3283"/>
-        <source>Plugins</source>
-        <translation>Plugins</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2726"/>
-        <source>Plugin Infos</source>
-        <translation>Infos Plugins</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2730"/>
-        <source>Show Plugin Infos</source>
-        <translation>Affiche les infos sur les plugins</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2731"/>
-        <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="2726"/>
-        <source>&amp;Plugin Infos...</source>
-        <translation>Infos &amp;Plugins...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4118"/>
-        <source>&amp;Plugin Tools</source>
-        <translation>Outils &amp;plugins</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2757"/>
-        <source>Uninstall Plugin</source>
-        <translation>Désinstaller un plugin</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2752"/>
-        <source>&amp;Uninstall Plugin...</source>
-        <translation>&amp;Désinstaller un plugin...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2758"/>
-        <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="670"/>
-        <source>Activating Plugins...</source>
-        <translation>Activation des plugins...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3028"/>
-        <source>Wi&amp;zards</source>
-        <translation>As&amp;sistants</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4267"/>
-        <source>&amp;Show all</source>
-        <translation>Tout &amp;afficher</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4269"/>
-        <source>&amp;Hide all</source>
-        <translation>Tout &amp;masquer</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2155"/>
-        <source>Show downloadable versions</source>
-        <translation>Afficher les versions téléchargeables</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2155"/>
-        <source>Show &amp;downloadable versions...</source>
-        <translation>Afficher les versions &amp;téléchargeables...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2159"/>
-        <source>Show the versions available for download</source>
-        <translation>Affiche les versions disponibles pour le téléchargement</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7199"/>
-        <source>&lt;h3&gt;Available versions&lt;/h3&gt;&lt;table&gt;</source>
-        <translation>&lt;h3&gt;Versions disponibles&lt;/h3&gt;&lt;table&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2765"/>
-        <source>Plugin Repository</source>
-        <translation>Référentiel de plugins</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2765"/>
-        <source>Plugin &amp;Repository...</source>
-        <translation>&amp;Référentiel de plugins...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2770"/>
-        <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="2772"/>
-        <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="2744"/>
-        <source>Install Plugins</source>
-        <translation>Installation de plugins</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2739"/>
-        <source>&amp;Install Plugins...</source>
-        <translation>&amp;Installation de plugins...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2745"/>
-        <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="2422"/>
-        <source>Mini Editor</source>
-        <translation>Mini-éditeur</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2417"/>
-        <source>Mini &amp;Editor...</source>
-        <translation>Mini édit&amp;eur...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2423"/>
-        <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="2580"/>
-        <source>Toolbars</source>
-        <translation>Barres d&apos;outils</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2580"/>
-        <source>Tool&amp;bars...</source>
-        <translation>&amp;Barres d&apos;outils...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2585"/>
-        <source>Configure toolbars</source>
-        <translation>Configuration des barres d&apos;outils</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2586"/>
+        <source>Show external tools</source>
+        <translation>Afficher les outils externes</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2581"/>
+        <source>Show external &amp;tools</source>
+        <translation>Afficher les &amp;outils externes</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7023"/>
+        <source>&amp;Cancel</source>
+        <translation>&amp;Annuler</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7209"/>
+        <source>Could not perform updates check.</source>
+        <translation>Impossible de vérifier les mises à jour.</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7285"/>
+        <source>First time usage</source>
+        <translation>Première utilisation</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="271"/>
+        <source>Initializing Plugin Manager...</source>
+        <translation>Initialisation du gestionnaire de plugins...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3089"/>
+        <source>P&amp;lugins</source>
+        <translation>P&amp;lugins</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3317"/>
+        <source>Plugins</source>
+        <translation>Plugins</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2760"/>
+        <source>Plugin Infos</source>
+        <translation>Infos Plugins</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2764"/>
+        <source>Show Plugin Infos</source>
+        <translation>Affiche les infos sur les plugins</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2765"/>
+        <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="2760"/>
+        <source>&amp;Plugin Infos...</source>
+        <translation>Infos &amp;Plugins...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4152"/>
+        <source>&amp;Plugin Tools</source>
+        <translation>Outils &amp;plugins</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2791"/>
+        <source>Uninstall Plugin</source>
+        <translation>Désinstaller un plugin</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2786"/>
+        <source>&amp;Uninstall Plugin...</source>
+        <translation>&amp;Désinstaller un plugin...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2792"/>
+        <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="671"/>
+        <source>Activating Plugins...</source>
+        <translation>Activation des plugins...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3062"/>
+        <source>Wi&amp;zards</source>
+        <translation>As&amp;sistants</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4301"/>
+        <source>&amp;Show all</source>
+        <translation>Tout &amp;afficher</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4303"/>
+        <source>&amp;Hide all</source>
+        <translation>Tout &amp;masquer</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2189"/>
+        <source>Show downloadable versions</source>
+        <translation>Afficher les versions téléchargeables</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2189"/>
+        <source>Show &amp;downloadable versions...</source>
+        <translation>Afficher les versions &amp;téléchargeables...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2193"/>
+        <source>Show the versions available for download</source>
+        <translation>Affiche les versions disponibles pour le téléchargement</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7233"/>
+        <source>&lt;h3&gt;Available versions&lt;/h3&gt;&lt;table&gt;</source>
+        <translation>&lt;h3&gt;Versions disponibles&lt;/h3&gt;&lt;table&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2799"/>
+        <source>Plugin Repository</source>
+        <translation>Référentiel de plugins</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2799"/>
+        <source>Plugin &amp;Repository...</source>
+        <translation>&amp;Référentiel de plugins...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2804"/>
+        <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="2806"/>
+        <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="2778"/>
+        <source>Install Plugins</source>
+        <translation>Installation de plugins</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2773"/>
+        <source>&amp;Install Plugins...</source>
+        <translation>&amp;Installation de plugins...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2779"/>
+        <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="2456"/>
+        <source>Mini Editor</source>
+        <translation>Mini-éditeur</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2451"/>
+        <source>Mini &amp;Editor...</source>
+        <translation>Mini édit&amp;eur...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2457"/>
+        <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="2614"/>
+        <source>Toolbars</source>
+        <translation>Barres d&apos;outils</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2614"/>
+        <source>Tool&amp;bars...</source>
+        <translation>&amp;Barres d&apos;outils...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2619"/>
+        <source>Configure toolbars</source>
+        <translation>Configuration des barres d&apos;outils</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2620"/>
         <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&apos;outils&lt;/b&gt;&lt;p&gt;Configuration des barres d&apos;outils. Avec cette fenêtre vous pouvez modifier les actions des différentes barres affichées et créer  vos propres barres d&apos;outils&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="686"/>
+        <location filename="../UI/UserInterface.py" line="687"/>
         <source>Restoring Toolbarmanager...</source>
         <translation>Restauration des barres d&apos;outils...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1732"/>
+        <location filename="../UI/UserInterface.py" line="1766"/>
         <source>Multiproject-Viewer</source>
         <translation>Gestionnaire de multi-projets</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1732"/>
+        <location filename="../UI/UserInterface.py" line="1766"/>
         <source>&amp;Multiproject-Viewer</source>
         <translation>Gestionnaire de &amp;multi-projet</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5415"/>
+        <location filename="../UI/UserInterface.py" line="5449"/>
         <source>External Tools</source>
         <translation>Outils externes</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6536"/>
+        <location filename="../UI/UserInterface.py" line="6570"/>
         <source>Save session</source>
         <translation>Enregistrer la session</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6520"/>
+        <location filename="../UI/UserInterface.py" line="6554"/>
         <source>Read session</source>
         <translation>Chargement de session</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3459"/>
+        <location filename="../UI/UserInterface.py" line="3493"/>
         <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&apos;état affiche l&apos;encodage des éditeurs.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3473"/>
+        <location filename="../UI/UserInterface.py" line="3507"/>
         <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&apos;état affiche les droits d&apos;écriture des fichiers en cours.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2208"/>
+        <location filename="../UI/UserInterface.py" line="2242"/>
         <source>Request Feature</source>
         <translation>Suggestion d&apos;amélioration</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2208"/>
+        <location filename="../UI/UserInterface.py" line="2242"/>
         <source>Request &amp;Feature...</source>
         <translation>Suggestion d&apos;&amp;amélioration...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2212"/>
+        <location filename="../UI/UserInterface.py" line="2246"/>
         <source>Send a feature request</source>
         <translation>Envoyer une suggestion d&apos;amélioration</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2214"/>
+        <location filename="../UI/UserInterface.py" line="2248"/>
         <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&apos;amélioration...&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre permettant d&apos;envoyer une demande d&apos;amélioration.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3452"/>
+        <location filename="../UI/UserInterface.py" line="3486"/>
         <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&apos;état affiche le langage de l&apos;éditeur actif.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3480"/>
+        <location filename="../UI/UserInterface.py" line="3514"/>
         <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&apos;état affiche le numéro de ligne de l&apos;éditeur actif.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3487"/>
+        <location filename="../UI/UserInterface.py" line="3521"/>
         <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&apos;état affiche la position du curseur.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1882"/>
+        <location filename="../UI/UserInterface.py" line="1916"/>
         <source>Horizontal Toolbox</source>
         <translation>Barre horizontale</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
+        <location filename="../UI/UserInterface.py" line="1873"/>
         <source>Alt+Shift+A</source>
         <translation>Alt+Shift+A</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1882"/>
+        <location filename="../UI/UserInterface.py" line="1916"/>
         <source>&amp;Horizontal Toolbox</source>
         <translation>Barre &amp;horizontale</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1886"/>
+        <location filename="../UI/UserInterface.py" line="1920"/>
         <source>Toggle the Horizontal Toolbox window</source>
         <translation>Afficher/Masquer la barre d&apos;outils horizontale</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1888"/>
+        <location filename="../UI/UserInterface.py" line="1922"/>
         <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&apos;outils horizontale&lt;/b&gt;&lt;p&gt;Affiche ou masque la barre d&apos;outils horizontale, selon.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4065"/>
+        <location filename="../UI/UserInterface.py" line="4099"/>
         <source>Restart application</source>
         <translation>Redémarrage de l&apos;application</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4065"/>
+        <location filename="../UI/UserInterface.py" line="4099"/>
         <source>The application needs to be restarted. Do it now?</source>
         <translation>L&apos;application a bersoin d&apos;être relancée. Relancer maintenant ?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3064"/>
+        <location filename="../UI/UserInterface.py" line="3098"/>
         <source>Configure...</source>
         <translation>Configuration...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3466"/>
+        <location filename="../UI/UserInterface.py" line="3500"/>
         <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&apos;état affiche le type de fin de lignes utilisé pour les éditeurs.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2717"/>
+        <location filename="../UI/UserInterface.py" line="2751"/>
         <source>Switch between tabs</source>
         <translation>Intervertir les onglets</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2717"/>
+        <location filename="../UI/UserInterface.py" line="2751"/>
         <source>Ctrl+1</source>
         <translation>Ctrl+1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2506"/>
+        <location filename="../UI/UserInterface.py" line="2540"/>
         <source>Export Preferences</source>
         <translation>Exporte les préférences</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2506"/>
+        <location filename="../UI/UserInterface.py" line="2540"/>
         <source>E&amp;xport Preferences...</source>
         <translation>E&amp;xporter les préférences...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2511"/>
+        <location filename="../UI/UserInterface.py" line="2545"/>
         <source>Export the current configuration</source>
         <translation>Exporte la configuration courante</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2513"/>
+        <location filename="../UI/UserInterface.py" line="2547"/>
         <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="2520"/>
+        <location filename="../UI/UserInterface.py" line="2554"/>
         <source>Import Preferences</source>
         <translation>Importe les préférences</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2520"/>
+        <location filename="../UI/UserInterface.py" line="2554"/>
         <source>I&amp;mport Preferences...</source>
         <translation>I&amp;mporter les préférences...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2525"/>
+        <location filename="../UI/UserInterface.py" line="2559"/>
         <source>Import a previously exported configuration</source>
         <translation>Importe les préférences d&apos;un fichier précédemment exporté</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2527"/>
+        <location filename="../UI/UserInterface.py" line="2561"/>
         <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&apos;un fichier précédemment exporté.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2699"/>
+        <location filename="../UI/UserInterface.py" line="2733"/>
         <source>Show next</source>
         <translation>Afficher le suivant</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2708"/>
+        <location filename="../UI/UserInterface.py" line="2742"/>
         <source>Show previous</source>
         <translation>Afficher le précédent</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1896"/>
+        <location filename="../UI/UserInterface.py" line="1930"/>
         <source>Left Sidebar</source>
         <translation>Barre latérale de gauche</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1896"/>
+        <location filename="../UI/UserInterface.py" line="1930"/>
         <source>&amp;Left Sidebar</source>
         <translation>Barre latérale de &amp;gauche</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1900"/>
+        <location filename="../UI/UserInterface.py" line="1934"/>
         <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="1901"/>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <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="1923"/>
+        <location filename="../UI/UserInterface.py" line="1957"/>
         <source>Bottom Sidebar</source>
         <translation>Barre du bas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1923"/>
+        <location filename="../UI/UserInterface.py" line="1957"/>
         <source>&amp;Bottom Sidebar</source>
         <translation>&amp;Barre du bas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1927"/>
+        <location filename="../UI/UserInterface.py" line="1961"/>
         <source>Toggle the bottom sidebar window</source>
         <translation>Affiche/Masque la barre du bas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1929"/>
+        <location filename="../UI/UserInterface.py" line="1963"/>
         <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="1750"/>
+        <location filename="../UI/UserInterface.py" line="1784"/>
         <source>&amp;Debug-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2404"/>
+        <location filename="../UI/UserInterface.py" line="2438"/>
         <source>SQL Browser</source>
         <translation>Navigateur SQL</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2404"/>
+        <location filename="../UI/UserInterface.py" line="2438"/>
         <source>SQL &amp;Browser...</source>
         <translation>&amp;Navigateur SQL...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2409"/>
+        <location filename="../UI/UserInterface.py" line="2443"/>
         <source>Browse a SQL database</source>
         <translation>Parcourir une base de données SQL</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2410"/>
+        <location filename="../UI/UserInterface.py" line="2444"/>
         <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="2461"/>
+        <location filename="../UI/UserInterface.py" line="2495"/>
         <source>Icon Editor</source>
         <translation>Éditeur d&apos;icone</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2461"/>
+        <location filename="../UI/UserInterface.py" line="2495"/>
         <source>&amp;Icon Editor...</source>
         <translation>Éditeur d&apos;&amp;icone...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1569"/>
+        <location filename="../UI/UserInterface.py" line="1603"/>
         <source>{0} - Passive Mode</source>
         <translation>{0} - Mode passif</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1576"/>
+        <location filename="../UI/UserInterface.py" line="1610"/>
         <source>{0} - {1} - Passive Mode</source>
         <translation>{0} - {1} - Mode Passif</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1580"/>
+        <location filename="../UI/UserInterface.py" line="1614"/>
         <source>{0} - {1} - {2} - Passive Mode</source>
         <translation>{0} - {1} - {2} - Mode Passif</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3563"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>External Tools/{0}</source>
         <translation>Outils externe/{0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5275"/>
+        <location filename="../UI/UserInterface.py" line="5309"/>
         <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&apos;existe pas ou est de longeur nulle.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5000"/>
+        <location filename="../UI/UserInterface.py" line="5034"/>
         <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&apos;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="5070"/>
+        <location filename="../UI/UserInterface.py" line="5104"/>
         <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&apos;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="5114"/>
+        <location filename="../UI/UserInterface.py" line="5148"/>
         <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&apos;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="5161"/>
+        <location filename="../UI/UserInterface.py" line="5195"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5231"/>
+        <location filename="../UI/UserInterface.py" line="5265"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5288"/>
+        <location filename="../UI/UserInterface.py" line="5322"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5311"/>
+        <location filename="../UI/UserInterface.py" line="5345"/>
         <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&apos;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="5406"/>
+        <location filename="../UI/UserInterface.py" line="5440"/>
         <source>No tool entry found for external tool &apos;{0}&apos; in tool group &apos;{1}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5415"/>
+        <location filename="../UI/UserInterface.py" line="5449"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5454"/>
+        <location filename="../UI/UserInterface.py" line="5488"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation>Démarrage du processus &apos;{0} {1}&apos;.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5470"/>
+        <location filename="../UI/UserInterface.py" line="5504"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5548"/>
+        <location filename="../UI/UserInterface.py" line="5582"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5809"/>
+        <location filename="../UI/UserInterface.py" line="5843"/>
         <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6411"/>
+        <location filename="../UI/UserInterface.py" line="6445"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier tâche &lt;b&gt;{0}&lt;/b&gt; ne peut être écrit.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6440"/>
-        <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="6474"/>
+        <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="6508"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier de session &lt;b&gt;{0}&lt;/b&gt; ne peut être écrit.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6520"/>
+        <location filename="../UI/UserInterface.py" line="6554"/>
         <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="6804"/>
+        <location filename="../UI/UserInterface.py" line="6838"/>
         <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&apos;est pas un fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6998"/>
+        <location filename="../UI/UserInterface.py" line="7032"/>
         <source>Trying host {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1122"/>
+        <location filename="../UI/UserInterface.py" line="1123"/>
         <source>Cooperation</source>
         <translation>Coopération</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Alt+Shift+O</source>
         <translation>Alt+Shift+O</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1178"/>
+        <location filename="../UI/UserInterface.py" line="1179"/>
         <source>Symbols</source>
         <translation>Symboles</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>Alt+Shift+Y</source>
         <translation>Alt+Shift+Y</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1187"/>
+        <location filename="../UI/UserInterface.py" line="1188"/>
         <source>Numbers</source>
         <translation>Nombres</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Alt+Shift+B</source>
         <translation>Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6241"/>
+        <location filename="../UI/UserInterface.py" line="6275"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2867"/>
+        <location filename="../UI/UserInterface.py" line="2901"/>
         <source>Python 3 Documentation</source>
         <translation>Documentation Python 3</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2867"/>
+        <location filename="../UI/UserInterface.py" line="2901"/>
         <source>Python &amp;3 Documentation</source>
         <translation>Documentation Python &amp;3</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2871"/>
+        <location filename="../UI/UserInterface.py" line="2905"/>
         <source>Open Python 3 Documentation</source>
         <translation>Ouvrir la Documentation Python 3</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7064"/>
+        <location filename="../UI/UserInterface.py" line="7098"/>
         <source>Error getting versions information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7057"/>
+        <location filename="../UI/UserInterface.py" line="7091"/>
         <source>The versions information could not be downloaded. Please go online and try again.</source>
         <translation>Les informations de versions ne peuvent être téléchargées. Veuillez aller en ligne et réessayer.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7064"/>
+        <location filename="../UI/UserInterface.py" line="7098"/>
         <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source>
         <translation>Les informations de versions ne peuvent être téléchargées depuis 7 jours. Veuillez aller en ligne et réessayer.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="695"/>
+        <location filename="../UI/UserInterface.py" line="696"/>
         <source>Setting View Profile...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="708"/>
+        <location filename="../UI/UserInterface.py" line="709"/>
         <source>Reading Tasks...</source>
         <translation>Lecture en cours des tâches...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="713"/>
+        <location filename="../UI/UserInterface.py" line="714"/>
         <source>Reading Templates...</source>
         <translation>Lecture en cours des gabarits...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="718"/>
+        <location filename="../UI/UserInterface.py" line="719"/>
         <source>Starting Debugger...</source>
         <translation>Démarrage du débuggeur...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>New Window</source>
         <translation>Nouvelle fenêtre</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>New &amp;Window</source>
         <translation>&amp;Nouvelle fenêtre</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation>Ctrl+Shift+N</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2251"/>
+        <location filename="../UI/UserInterface.py" line="2285"/>
         <source>Unittest Rerun Failed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2251"/>
+        <location filename="../UI/UserInterface.py" line="2285"/>
         <source>Rerun Failed Tests...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2256"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Rerun failed tests of the last run</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2258"/>
+        <location filename="../UI/UserInterface.py" line="2292"/>
         <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last unittest run.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2390"/>
+        <location filename="../UI/UserInterface.py" line="2424"/>
         <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="2475"/>
+        <location filename="../UI/UserInterface.py" line="2509"/>
         <source>Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2475"/>
+        <location filename="../UI/UserInterface.py" line="2509"/>
         <source>&amp;Snapshot...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2480"/>
+        <location filename="../UI/UserInterface.py" line="2514"/>
         <source>Take snapshots of a screen region</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2482"/>
+        <location filename="../UI/UserInterface.py" line="2516"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5383"/>
+        <location filename="../UI/UserInterface.py" line="5417"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7270"/>
+        <location filename="../UI/UserInterface.py" line="7304"/>
         <source>Select Workspace Directory</source>
         <translation>Sélectionner le répertoire de travail</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
+        <location filename="../UI/UserInterface.py" line="1891"/>
         <source>Left Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1869"/>
+        <location filename="../UI/UserInterface.py" line="1903"/>
         <source>Right Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>IRC</source>
         <translation>IRC</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1721"/>
+        <location filename="../UI/UserInterface.py" line="1755"/>
         <source>Switch the input focus to the Project-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1723"/>
+        <location filename="../UI/UserInterface.py" line="1757"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1738"/>
+        <location filename="../UI/UserInterface.py" line="1772"/>
         <source>Switch the input focus to the Multiproject-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1740"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1756"/>
-        <source>Switch the input focus to the Debug-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1758"/>
-        <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"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1774"/>
-        <source>Switch the input focus to the Shell window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1776"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
-        <source>&amp;File-Browser</source>
-        <translation>Navigateur de &amp;fichier</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1791"/>
-        <source>Switch the input focus to the File-Browser window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1793"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1802"/>
-        <source>Lo&amp;g-Viewer</source>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1790"/>
+        <source>Switch the input focus to the Debug-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1792"/>
+        <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"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1808"/>
-        <source>Switch the input focus to the Log-Viewer window.</source>
+        <source>Switch the input focus to the Shell window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1810"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1819"/>
+        <source>&amp;File-Browser</source>
+        <translation>Navigateur de &amp;fichier</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1825"/>
+        <source>Switch the input focus to the File-Browser window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1827"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1836"/>
+        <source>Lo&amp;g-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1842"/>
+        <source>Switch the input focus to the Log-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1844"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
+        <location filename="../UI/UserInterface.py" line="1854"/>
         <source>&amp;Task-Viewer</source>
         <translation>Visionneur de &amp;tâches</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1826"/>
-        <source>Switch the input focus to the Task-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1828"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
-        <source>Templ&amp;ate-Viewer</source>
-        <translation>Visionneur de g&amp;abarits</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1845"/>
-        <source>Switch the input focus to the Template-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1847"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
-        <source>&amp;Left Toolbox</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1860"/>
-        <source>Toggle the Left Toolbox window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1861"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1869"/>
-        <source>&amp;Right Toolbox</source>
+        <source>Switch the input focus to the Task-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1862"/>
+        <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"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1873"/>
+        <source>Templ&amp;ate-Viewer</source>
+        <translation>Visionneur de g&amp;abarits</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1879"/>
+        <source>Switch the input focus to the Template-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1881"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1891"/>
+        <source>&amp;Left Toolbox</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1894"/>
+        <source>Toggle the Left Toolbox window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1895"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1903"/>
+        <source>&amp;Right Toolbox</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1907"/>
         <source>Toggle the Right Toolbox window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1874"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1909"/>
+        <location filename="../UI/UserInterface.py" line="1943"/>
         <source>Right Sidebar</source>
         <translation type="unfinished">Barre latérale de droite</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1909"/>
+        <location filename="../UI/UserInterface.py" line="1943"/>
         <source>&amp;Right Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1913"/>
+        <location filename="../UI/UserInterface.py" line="1947"/>
         <source>Toggle the right sidebar window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1915"/>
+        <location filename="../UI/UserInterface.py" line="1949"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Cooperation-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Co&amp;operation-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1944"/>
+        <location filename="../UI/UserInterface.py" line="1978"/>
         <source>Switch the input focus to the Cooperation-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1946"/>
+        <location filename="../UI/UserInterface.py" line="1980"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>&amp;IRC</source>
         <translation>&amp;IRC</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1963"/>
+        <location filename="../UI/UserInterface.py" line="1997"/>
         <source>Switch the input focus to the IRC window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1965"/>
+        <location filename="../UI/UserInterface.py" line="1999"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>Symbols-Viewer</source>
         <translation>Visionneur de symbole</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>S&amp;ymbols-Viewer</source>
         <translation>Visionneur de s&amp;ymbole</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1981"/>
+        <location filename="../UI/UserInterface.py" line="2015"/>
         <source>Switch the input focus to the Symbols-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1983"/>
+        <location filename="../UI/UserInterface.py" line="2017"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Numbers-Viewer</source>
         <translation>Visionneur de nombres</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Num&amp;bers-Viewer</source>
         <translation>Visionneur de nom&amp;bres</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2000"/>
+        <location filename="../UI/UserInterface.py" line="2034"/>
         <source>Switch the input focus to the Numbers-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2002"/>
+        <location filename="../UI/UserInterface.py" line="2036"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2309"/>
+        <location filename="../UI/UserInterface.py" line="2343"/>
         <source>Qt-Designer</source>
         <translation>Qt-Designer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2309"/>
+        <location filename="../UI/UserInterface.py" line="2343"/>
         <source>Qt-&amp;Designer...</source>
         <translation>Qt-&amp;Designer...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2314"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Start Qt-Designer</source>
         <translation>Démarrer Qt-Designer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2315"/>
+        <location filename="../UI/UserInterface.py" line="2349"/>
         <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="2335"/>
+        <location filename="../UI/UserInterface.py" line="2369"/>
         <source>Qt-Linguist</source>
         <translation>Qt-Linguist</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2335"/>
+        <location filename="../UI/UserInterface.py" line="2369"/>
         <source>Qt-&amp;Linguist...</source>
         <translation>Qt-&amp;Linguist...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2340"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Start Qt-Linguist</source>
         <translation>Démarrer Qt-Linguist</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2341"/>
+        <location filename="../UI/UserInterface.py" line="2375"/>
         <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="2831"/>
+        <location filename="../UI/UserInterface.py" line="2865"/>
         <source>Qt5 Documentation</source>
         <translation>Documentation Qt5</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2831"/>
+        <location filename="../UI/UserInterface.py" line="2865"/>
         <source>Qt&amp;5 Documentation</source>
         <translation>Documentation Qt&amp;5</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2835"/>
+        <location filename="../UI/UserInterface.py" line="2869"/>
         <source>Open Qt5 Documentation</source>
         <translation>Lance la Documentation Qt5</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3141"/>
+        <location filename="../UI/UserInterface.py" line="3175"/>
         <source>&amp;Windows</source>
         <translation>&amp;Fenêtres</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2639"/>
+        <location filename="../UI/UserInterface.py" line="2673"/>
         <source>Manage SSL Certificates</source>
         <translation>Gestion des certificats SSL</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2639"/>
+        <location filename="../UI/UserInterface.py" line="2673"/>
         <source>Manage SSL Certificates...</source>
         <translation>Gestion des certificats SSL...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2644"/>
-        <source>Manage the saved SSL certificates</source>
-        <translation>Gestion des certificats SSL enregistrés</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2646"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2655"/>
-        <source>Edit Message Filters</source>
-        <translation>Éditer les filtres de message</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2655"/>
-        <source>Edit Message Filters...</source>
-        <translation>Éditer les filtres de message...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2660"/>
-        <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="2662"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2846"/>
-        <source>PyQt5 Documentation</source>
-        <translation>Documentation PyQt5</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2846"/>
-        <source>PyQt&amp;5 Documentation</source>
-        <translation>Documentation PyQt&amp;5</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2850"/>
-        <source>Open PyQt5 Documentation</source>
-        <translation>Lance la documentation PyQt5</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5687"/>
-        <source>&lt;p&gt;The PyQt5 documentation starting point has not been configured.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;L&apos;emplacement de la documentation PyQt5 n&apos;a pas été configuré.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2873"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6989"/>
-        <source>%v/%m</source>
-        <translation>%v/%m</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2174"/>
-        <source>Show Error Log</source>
-        <translation>Montrer l&apos;historique d&apos;erreur</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2170"/>
-        <source>Show Error &amp;Log...</source>
-        <translation>Montrer &amp;l&apos;historique d&apos;erreur...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2175"/>
-        <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&apos;historique d&apos;erreur...&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre avec les messages d&apos;erreur les plus récents.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6993"/>
-        <source>Version Check</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1668"/>
-        <source>Open a new eric6 instance</source>
-        <translation>Ouvrir une nouvelle instance eric6</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1670"/>
-        <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric6 IDE.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Nouvelle fenêtre&lt;/b&gt;&lt;p&gt;Ceci ouvre une nouvelle instance de l&apos;IDE eric6.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2113"/>
-        <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric6 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 search in the Qt help collection.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2148"/>
-        <source>&lt;b&gt;Check for Updates...&lt;/b&gt;&lt;p&gt;Checks the internet for updates of eric6.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Rechercher des mises à jour...&lt;/b&gt;&lt;p&gt;Recherche des mises à jour pour eric6 sur internet.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2161"/>
-        <source>&lt;b&gt;Show downloadable versions...&lt;/b&gt;&lt;p&gt;Shows the eric6 versions available for download from the internet.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Affiche les versions téléchargeables...&lt;/b&gt;&lt;p&gt;Affiche les versions d&apos;eric6 disponibles sur internet.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2445"/>
-        <source>eric6 Web Browser</source>
-        <translation>Navigateur web eric6</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2445"/>
-        <source>eric6 &amp;Web Browser...</source>
-        <translation>Navigateur &amp;web eric6...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2450"/>
-        <source>Start the eric6 Web Browser</source>
-        <translation>Démarrer le navigateur web eric6</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2452"/>
-        <source>&lt;b&gt;eric6 Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric6 Web Browser.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Navigateur web eric6&lt;/b&gt;&lt;p&gt;Parcourir internet avec le navigateur web eric6.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2466"/>
-        <source>Start the eric6 Icon Editor</source>
-        <translation>Démarrer l&quot;éditeur d&apos;icone eric6</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2468"/>
-        <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Icon Editor for editing simple icons.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Éditeur d&apos;icone&lt;/b&gt;&lt;p&gt;Démarre l&apos;éditeur d&apos;icone eric6 pour éditer de simples icones.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2554"/>
-        <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 eric6.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Afficher les outils externes&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre permettant de connaitre les chemins et versions des outils externes utilisés par eric6&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2895"/>
-        <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 eric6 installation directory.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Documentation de l&apos;API Eric&lt;/b&gt;&lt;p&gt;Affiche la do. The location for the documentation is the Documentation/Source subdirectory of the eric6 installation directory.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7156"/>
-        <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric6 is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
-        <translation>La mise à jour vers la version &lt;b&gt;{0}&lt;/b&gt; d&apos;eric6 est disponible à &lt;b&gt;{1}&lt;/b&gt;. Voulez vous l&apos;obtenir ?</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7168"/>
-        <source>Eric6 is up to date</source>
-        <translation>Eric6 est à jour</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7168"/>
-        <source>You are using the latest version of eric6</source>
-        <translation>Vous utilisez la dernière version d&apos;eric6</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7251"/>
-        <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
-        <translation>eric6 n&apos;a pas encore été configuré. La fenêtre de configuration va être ouverte.</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="672"/>
-        <source>Generating Plugins Toolbars...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4121"/>
-        <source>&amp;User Tools</source>
-        <translation>Outils &amp;utilisateurs</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4193"/>
-        <source>No User Tools Configured</source>
-        <translation>Pas d&apos;outils utilisateurs configuré</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7009"/>
-        <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
-        <translation>Les informations de versions ne peuvent être téléchargés car vous êtes &lt;b&gt;hors ligne&lt;/b&gt;. Veuillez aller en ligne et réessayer.</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2430"/>
-        <source>Hex Editor</source>
-        <translation>Hex Editor</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2430"/>
-        <source>&amp;Hex Editor...</source>
-        <translation>&amp;Hex Editor...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2435"/>
-        <source>Start the eric6 Hex Editor</source>
-        <translation>Démarrer l&apos;Hex Editor d&apos;eric6</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2437"/>
-        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Démarre l&apos;Hex Editor d&apos;eric6 pour voir et modifier des fichiers binaires.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2678"/>
-        <source>Clear private data</source>
-        <translation>Nettoyer les données privées</translation>
+        <source>Manage the saved SSL certificates</source>
+        <translation>Gestion des certificats SSL enregistrés</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2680"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1636"/>
-        <source>Save session...</source>
-        <translation>Enregistrer session...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1641"/>
-        <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&apos;ouvre pour sélectionner le nom de fichier.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6558"/>
-        <source>Load session</source>
-        <translation>Charger la session</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
-        <source>Load session...</source>
-        <translation>Charger la session...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1654"/>
-        <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&apos;ouvre pour sélectionner le fichier.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6558"/>
-        <source>eric6 Session Files (*.e5s)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6609"/>
-        <source>Crash Session found!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6609"/>
-        <source>A session file of a crashed session was found. Shall this session be restored?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="675"/>
-        <source>Cleaning Plugins Download Area...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="667"/>
-        <source>Initializing Plugins...</source>
-        <translation>Initialisation en cours des plugins...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7144"/>
-        <source>Update Check</source>
-        <translation>Vérification de mise à jour</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7144"/>
-        <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7134"/>
-        <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2013"/>
-        <source>Code Documentation Viewer</source>
-        <translation type="unfinished">Visionneur de documentation du code</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2836"/>
-        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2852"/>
-        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2910"/>
-        <source>PySide2 Documentation</source>
-        <translation>Documentation PySide2</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2910"/>
-        <source>PySide&amp;2 Documentation</source>
-        <translation>Documentation PySide&amp;2</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2914"/>
-        <source>Open PySide2 Documentation</source>
-        <translation>Ouvrir la Documentation PySide2</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2916"/>
-        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5792"/>
-        <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2786"/>
-        <source>Virtualenv Manager</source>
-        <translation>Gestionnaire Virtualenv</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2780"/>
-        <source>&amp;Virtualenv Manager...</source>
-        <translation>Gestionnaire &amp;Virtualenv...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2788"/>
-        <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Gestionnaire Virtualenv&lt;/b&gt;&lt;p&gt;Ceci ouvre une fenêtre pour gérer les environnement virtuels Python définis.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2803"/>
-        <source>Virtualenv Configurator</source>
-        <translation>Configurateur Virtualenv</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2797"/>
-        <source>Virtualenv &amp;Configurator...</source>
-        <translation>&amp;Configurateur Virtualenv...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2805"/>
-        <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3148"/>
-        <source>Left Side</source>
-        <translation>Coté gauche</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3160"/>
-        <source>Bottom Side</source>
-        <translation>Coté bas</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3167"/>
-        <source>Right Side</source>
-        <translation>Coté droit</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3187"/>
-        <source>Plug-ins</source>
-        <translation>Plugins</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1620"/>
-        <source>Restart</source>
-        <translation>Redémarrer</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1620"/>
-        <source>Ctrl+Shift+Q</source>
-        <comment>File|Quit</comment>
-        <translation>Ctrl+Shift+Q</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1626"/>
-        <source>Restart the IDE</source>
-        <translation>Rédémarrer l&apos;IDE</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1627"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5966"/>
-        <source>Start Web Browser</source>
-        <translation>Démarrer le navigateur web</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5905"/>
-        <source>The eric6 web browser could not be started.</source>
-        <translation>Le navigateur web eric6 n&apos;a pas pu être démarré.</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5966"/>
-        <source>&lt;p&gt;The eric6 web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Le navigateur web eric6 n&apos;est pas démarré.&lt;/p&gt;&lt;p&gt;Raison : {0}&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
-        <source>Conda</source>
-        <translation>Conda</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2033"/>
-        <source>PyPI</source>
-        <translation>PyPI</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3498"/>
-        <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&apos;état permet de zoomer l&apos;éditeur courant ou le shell.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2069"/>
-        <source>MicroPython</source>
-        <translation>MicroPython</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
-        <source>Ctrl+Alt+Shift+I</source>
-        <translation>Ctrl+Alt+Shift+I</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2013"/>
-        <source>Ctrl+Alt+Shift+D</source>
-        <translation>Ctrl+Alt+Shift+D</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2019"/>
-        <source>Switch the input focus to the Code Documentation Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2022"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2033"/>
-        <source>Ctrl+Alt+Shift+P</source>
-        <translation>Ctrl+Alt+Shift+P</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2039"/>
-        <source>Switch the input focus to the PyPI window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2041"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
-        <source>Ctrl+Alt+Shift+C</source>
-        <translation>Ctrl+Alt+Shift+C</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2057"/>
-        <source>Switch the input focus to the Conda window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2059"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2069"/>
-        <source>Ctrl+Alt+Shift+M</source>
-        <translation>Ctrl+Alt+Shift+M</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2075"/>
-        <source>Switch the input focus to the MicroPython window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2077"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3145"/>
-        <source>Central Park</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3672"/>
-        <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="5009"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5079"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5123"/>
-        <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>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2689"/>
+        <source>Edit Message Filters</source>
+        <translation>Éditer les filtres de message</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2689"/>
+        <source>Edit Message Filters...</source>
+        <translation>Éditer les filtres de message...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2694"/>
+        <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="2696"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2880"/>
+        <source>PyQt5 Documentation</source>
+        <translation>Documentation PyQt5</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2880"/>
+        <source>PyQt&amp;5 Documentation</source>
+        <translation>Documentation PyQt&amp;5</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2884"/>
+        <source>Open PyQt5 Documentation</source>
+        <translation>Lance la documentation PyQt5</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5721"/>
+        <source>&lt;p&gt;The PyQt5 documentation starting point has not been configured.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;L&apos;emplacement de la documentation PyQt5 n&apos;a pas été configuré.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2907"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7023"/>
+        <source>%v/%m</source>
+        <translation>%v/%m</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2208"/>
+        <source>Show Error Log</source>
+        <translation>Montrer l&apos;historique d&apos;erreur</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2204"/>
+        <source>Show Error &amp;Log...</source>
+        <translation>Montrer &amp;l&apos;historique d&apos;erreur...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2209"/>
+        <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&apos;historique d&apos;erreur...&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre avec les messages d&apos;erreur les plus récents.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7027"/>
+        <source>Version Check</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1702"/>
+        <source>Open a new eric6 instance</source>
+        <translation>Ouvrir une nouvelle instance eric6</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1704"/>
+        <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric6 IDE.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Nouvelle fenêtre&lt;/b&gt;&lt;p&gt;Ceci ouvre une nouvelle instance de l&apos;IDE eric6.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2147"/>
+        <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric6 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 search in the Qt help collection.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2182"/>
+        <source>&lt;b&gt;Check for Updates...&lt;/b&gt;&lt;p&gt;Checks the internet for updates of eric6.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Rechercher des mises à jour...&lt;/b&gt;&lt;p&gt;Recherche des mises à jour pour eric6 sur internet.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2195"/>
+        <source>&lt;b&gt;Show downloadable versions...&lt;/b&gt;&lt;p&gt;Shows the eric6 versions available for download from the internet.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Affiche les versions téléchargeables...&lt;/b&gt;&lt;p&gt;Affiche les versions d&apos;eric6 disponibles sur internet.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2479"/>
+        <source>eric6 Web Browser</source>
+        <translation>Navigateur web eric6</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2479"/>
+        <source>eric6 &amp;Web Browser...</source>
+        <translation>Navigateur &amp;web eric6...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2484"/>
+        <source>Start the eric6 Web Browser</source>
+        <translation>Démarrer le navigateur web eric6</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2486"/>
+        <source>&lt;b&gt;eric6 Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric6 Web Browser.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Navigateur web eric6&lt;/b&gt;&lt;p&gt;Parcourir internet avec le navigateur web eric6.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2500"/>
+        <source>Start the eric6 Icon Editor</source>
+        <translation>Démarrer l&quot;éditeur d&apos;icone eric6</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2502"/>
+        <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Icon Editor for editing simple icons.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Éditeur d&apos;icone&lt;/b&gt;&lt;p&gt;Démarre l&apos;éditeur d&apos;icone eric6 pour éditer de simples icones.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2588"/>
+        <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 eric6.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Afficher les outils externes&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre permettant de connaitre les chemins et versions des outils externes utilisés par eric6&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2929"/>
+        <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 eric6 installation directory.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Documentation de l&apos;API Eric&lt;/b&gt;&lt;p&gt;Affiche la do. The location for the documentation is the Documentation/Source subdirectory of the eric6 installation directory.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7190"/>
+        <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric6 is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
+        <translation>La mise à jour vers la version &lt;b&gt;{0}&lt;/b&gt; d&apos;eric6 est disponible à &lt;b&gt;{1}&lt;/b&gt;. Voulez vous l&apos;obtenir ?</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7202"/>
+        <source>Eric6 is up to date</source>
+        <translation>Eric6 est à jour</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7202"/>
+        <source>You are using the latest version of eric6</source>
+        <translation>Vous utilisez la dernière version d&apos;eric6</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7285"/>
+        <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
+        <translation>eric6 n&apos;a pas encore été configuré. La fenêtre de configuration va être ouverte.</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="673"/>
+        <source>Generating Plugins Toolbars...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4155"/>
+        <source>&amp;User Tools</source>
+        <translation>Outils &amp;utilisateurs</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4227"/>
+        <source>No User Tools Configured</source>
+        <translation>Pas d&apos;outils utilisateurs configuré</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7043"/>
+        <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
+        <translation>Les informations de versions ne peuvent être téléchargés car vous êtes &lt;b&gt;hors ligne&lt;/b&gt;. Veuillez aller en ligne et réessayer.</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2464"/>
+        <source>Hex Editor</source>
+        <translation>Hex Editor</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2464"/>
+        <source>&amp;Hex Editor...</source>
+        <translation>&amp;Hex Editor...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2469"/>
+        <source>Start the eric6 Hex Editor</source>
+        <translation>Démarrer l&apos;Hex Editor d&apos;eric6</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2471"/>
+        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Démarre l&apos;Hex Editor d&apos;eric6 pour voir et modifier des fichiers binaires.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2712"/>
+        <source>Clear private data</source>
+        <translation>Nettoyer les données privées</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2714"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1670"/>
+        <source>Save session...</source>
+        <translation>Enregistrer session...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1675"/>
+        <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&apos;ouvre pour sélectionner le nom de fichier.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6592"/>
+        <source>Load session</source>
+        <translation>Charger la session</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1683"/>
+        <source>Load session...</source>
+        <translation>Charger la session...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1688"/>
+        <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&apos;ouvre pour sélectionner le fichier.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6592"/>
+        <source>eric6 Session Files (*.e5s)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6643"/>
+        <source>Crash Session found!</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6643"/>
+        <source>A session file of a crashed session was found. Shall this session be restored?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="676"/>
+        <source>Cleaning Plugins Download Area...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="668"/>
+        <source>Initializing Plugins...</source>
+        <translation>Initialisation en cours des plugins...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7178"/>
+        <source>Update Check</source>
+        <translation>Vérification de mise à jour</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7178"/>
+        <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7168"/>
+        <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2047"/>
+        <source>Code Documentation Viewer</source>
+        <translation type="unfinished">Visionneur de documentation du code</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2870"/>
+        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2886"/>
+        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2944"/>
+        <source>PySide2 Documentation</source>
+        <translation>Documentation PySide2</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2944"/>
+        <source>PySide&amp;2 Documentation</source>
+        <translation>Documentation PySide&amp;2</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2948"/>
+        <source>Open PySide2 Documentation</source>
+        <translation>Ouvrir la Documentation PySide2</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2950"/>
+        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5826"/>
+        <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2820"/>
+        <source>Virtualenv Manager</source>
+        <translation>Gestionnaire Virtualenv</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2814"/>
+        <source>&amp;Virtualenv Manager...</source>
+        <translation>Gestionnaire &amp;Virtualenv...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2822"/>
+        <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Gestionnaire Virtualenv&lt;/b&gt;&lt;p&gt;Ceci ouvre une fenêtre pour gérer les environnement virtuels Python définis.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2837"/>
+        <source>Virtualenv Configurator</source>
+        <translation>Configurateur Virtualenv</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2831"/>
+        <source>Virtualenv &amp;Configurator...</source>
+        <translation>&amp;Configurateur Virtualenv...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2839"/>
+        <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3182"/>
+        <source>Left Side</source>
+        <translation>Coté gauche</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3194"/>
+        <source>Bottom Side</source>
+        <translation>Coté bas</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3201"/>
+        <source>Right Side</source>
+        <translation>Coté droit</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3221"/>
+        <source>Plug-ins</source>
+        <translation>Plugins</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1654"/>
+        <source>Restart</source>
+        <translation>Redémarrer</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1654"/>
+        <source>Ctrl+Shift+Q</source>
+        <comment>File|Quit</comment>
+        <translation>Ctrl+Shift+Q</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1660"/>
+        <source>Restart the IDE</source>
+        <translation>Rédémarrer l&apos;IDE</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1661"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6000"/>
+        <source>Start Web Browser</source>
+        <translation>Démarrer le navigateur web</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5939"/>
+        <source>The eric6 web browser could not be started.</source>
+        <translation>Le navigateur web eric6 n&apos;a pas pu être démarré.</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6000"/>
+        <source>&lt;p&gt;The eric6 web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Le navigateur web eric6 n&apos;est pas démarré.&lt;/p&gt;&lt;p&gt;Raison : {0}&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2085"/>
+        <source>Conda</source>
+        <translation>Conda</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2067"/>
+        <source>PyPI</source>
+        <translation>PyPI</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3532"/>
+        <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&apos;état permet de zoomer l&apos;éditeur courant ou le shell.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2103"/>
+        <source>MicroPython</source>
+        <translation>MicroPython</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1991"/>
+        <source>Ctrl+Alt+Shift+I</source>
+        <translation>Ctrl+Alt+Shift+I</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2047"/>
+        <source>Ctrl+Alt+Shift+D</source>
+        <translation>Ctrl+Alt+Shift+D</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2053"/>
+        <source>Switch the input focus to the Code Documentation Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2056"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2067"/>
+        <source>Ctrl+Alt+Shift+P</source>
+        <translation>Ctrl+Alt+Shift+P</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2073"/>
+        <source>Switch the input focus to the PyPI window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2075"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2085"/>
+        <source>Ctrl+Alt+Shift+C</source>
+        <translation>Ctrl+Alt+Shift+C</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2091"/>
+        <source>Switch the input focus to the Conda window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2093"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2103"/>
+        <source>Ctrl+Alt+Shift+M</source>
+        <translation>Ctrl+Alt+Shift+M</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2109"/>
+        <source>Switch the input focus to the MicroPython window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2111"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3179"/>
+        <source>Central Park</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3706"/>
+        <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="5043"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5113"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5157"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2216"/>
         <source>Show Install Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2182"/>
+        <location filename="../UI/UserInterface.py" line="2216"/>
         <source>Show Install &amp;Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2186"/>
+        <location filename="../UI/UserInterface.py" line="2220"/>
         <source>Show Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2188"/>
+        <location filename="../UI/UserInterface.py" line="2222"/>
         <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"></translation>
     </message>
@@ -83997,6 +84027,21 @@
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="744"/>
+        <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the shell window. A dialog is shown to enter the search text and options for the search.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="765"/>
+        <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="786"/>
+        <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
@@ -84464,32 +84509,32 @@
         <translation>Interpréteur Python</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="323"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="333"/>
         <source>&lt;virtualenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="341"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="351"/>
         <source>&lt;No suitable virtualenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="343"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="353"/>
         <source>virtualenv Version: {0}</source>
         <translation>Version virtualenv : {0}</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="377"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="387"/>
         <source>&lt;pyvenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="397"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="407"/>
         <source>&lt;No suitable pyvenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="399"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="409"/>
         <source>pyvenv Version: {0}</source>
         <translation>Version pyvenv : {0}</translation>
     </message>
@@ -84624,7 +84669,7 @@
         <translation>Fichiers texte (*.txt);;Tous les fichiers (*)</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="411"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="421"/>
         <source>conda Version: {0}</source>
         <translation>Version conda : {0}</translation>
     </message>
--- a/eric6/i18n/eric6_it.ts	Wed Nov 11 17:51:36 2020 +0100
+++ b/eric6/i18n/eric6_it.ts	Sat Nov 14 11:50:43 2020 +0100
@@ -42747,52 +42747,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="71"/>
+        <location filename="../UI/InstallInfoDialog.py" line="70"/>
         <source>Yes</source>
         <translation type="unfinished">Si</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="71"/>
+        <location filename="../UI/InstallInfoDialog.py" line="70"/>
         <source>No</source>
         <translation type="unfinished">No</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="75"/>
+        <location filename="../UI/InstallInfoDialog.py" line="74"/>
         <source>&apos;eric-ide&apos; was installed from PyPI using the pip command.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="81"/>
+        <location filename="../UI/InstallInfoDialog.py" line="80"/>
         <source>The information shown in this dialog was guessed at the first start of eric.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="99"/>
+        <location filename="../UI/InstallInfoDialog.py" line="98"/>
         <source>Load Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="99"/>
+        <location filename="../UI/InstallInfoDialog.py" line="98"/>
         <source>&lt;p&gt;The file containing the install information could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="151"/>
+        <location filename="../UI/InstallInfoDialog.py" line="150"/>
         <source>Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="151"/>
+        <location filename="../UI/InstallInfoDialog.py" line="150"/>
         <source>The install information was edited. Unsaved changes will be lost. Save first?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="188"/>
+        <location filename="../UI/InstallInfoDialog.py" line="187"/>
         <source>Save Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="188"/>
+        <location filename="../UI/InstallInfoDialog.py" line="187"/>
         <source>&lt;p&gt;The file containing the install information could not be written.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -42802,17 +42802,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="61"/>
+        <location filename="../UI/InstallInfoDialog.py" line="60"/>
         <source>Installed as Administrator:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="63"/>
+        <location filename="../UI/InstallInfoDialog.py" line="62"/>
         <source>Installed with sudo:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="93"/>
+        <location filename="../UI/InstallInfoDialog.py" line="92"/>
         <source>unknown</source>
         <translation type="unfinished"></translation>
     </message>
@@ -42822,32 +42822,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="87"/>
+        <location filename="../UI/InstallInfoDialog.py" line="86"/>
         <source>The installation information was provided by the user.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="39"/>
+        <location filename="../UI/InstallInfoDialog.py" line="38"/>
         <source>Delete Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="255"/>
+        <location filename="../UI/InstallInfoDialog.py" line="254"/>
         <source>Upgrade Instructions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="201"/>
+        <location filename="../UI/InstallInfoDialog.py" line="200"/>
         <source>Delete Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="201"/>
+        <location filename="../UI/InstallInfoDialog.py" line="200"/>
         <source>Do you really want to delete the installation information? It will be recreated at the next start.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="228"/>
+        <location filename="../UI/InstallInfoDialog.py" line="227"/>
         <source>Perform the following step(s) with Administrator privileges.
 </source>
         <translation type="unfinished"></translation>
@@ -52719,12 +52719,12 @@
         <translation type="unfinished">Errori</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="143"/>
+        <location filename="../PipInterface/PipDialog.py" line="146"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="143"/>
+        <location filename="../PipInterface/PipDialog.py" line="146"/>
         <source>The process {0} could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53431,7 +53431,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="910"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="911"/>
         <source>Search PyPI</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53451,102 +53451,102 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="872"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="873"/>
         <source>Show Package Details</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="872"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="873"/>
         <source>Select the package version:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="910"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="911"/>
         <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="926"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="927"/>
         <source>Install Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="929"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="930"/>
         <source>Install Pip to User-Site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="932"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="933"/>
         <source>Repair Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1046"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1050"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="939"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="940"/>
         <source>Install Local Package</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="943"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
         <source>Install Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="946"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="947"/>
         <source>Uninstall Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="949"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="950"/>
         <source>Generate Requirements...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="967"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="968"/>
         <source>Edit User Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="970"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="971"/>
         <source>Edit Environment Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="975"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="976"/>
         <source>Configure...</source>
         <translation type="unfinished">Configura...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1158"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1166"/>
         <source>Edit Configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1158"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1166"/>
         <source>No valid configuration path determined. Aborting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="953"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="954"/>
         <source>Show Cache Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="956"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="957"/>
         <source>Show Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="960"/>
         <source>Remove Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="962"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="963"/>
         <source>Purge Cache...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67406,231 +67406,251 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="242"/>
-        <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected language.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="249"/>
+        <location filename="../QScintilla/ShellWindow.py" line="250"/>
         <source>Restart and Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="254"/>
+        <location filename="../QScintilla/ShellWindow.py" line="255"/>
         <source>Clear the window and restart the shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="256"/>
-        <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected language.&lt;/p&gt;</source>
+        <location filename="../QScintilla/ShellWindow.py" line="885"/>
+        <source>Show History</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="885"/>
+        <source>&amp;Show History...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="891"/>
-        <source>Show History</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="891"/>
-        <source>&amp;Show History...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="897"/>
         <source>Show the shell history in a dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="895"/>
+        <source>Clear History</source>
+        <translation type="unfinished">Pulisci la history</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="895"/>
+        <source>&amp;Clear History...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="901"/>
-        <source>Clear History</source>
-        <translation type="unfinished">Pulisci la history</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="901"/>
-        <source>&amp;Clear History...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="907"/>
         <source>Clear the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="911"/>
+        <location filename="../QScintilla/ShellWindow.py" line="905"/>
         <source>Select History Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="911"/>
+        <location filename="../QScintilla/ShellWindow.py" line="905"/>
         <source>Select History &amp;Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="916"/>
+        <location filename="../QScintilla/ShellWindow.py" line="910"/>
         <source>Select an entry of the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
+        <source>About</source>
+        <translation type="unfinished">About</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
+        <source>&amp;About</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="922"/>
+        <source>Display information about this software</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="924"/>
-        <source>About</source>
-        <translation type="unfinished">About</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="924"/>
-        <source>&amp;About</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="928"/>
-        <source>Display information about this software</source>
+        <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
+        <translation type="unfinished">&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Mostra alcune informazioni su questo software.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="930"/>
+        <source>About Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="930"/>
-        <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
-        <translation type="unfinished">&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Mostra alcune informazioni su questo software.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="936"/>
-        <source>About Qt</source>
+        <source>About &amp;Qt</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <source>Display information about the Qt toolkit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="936"/>
-        <source>About &amp;Qt</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="940"/>
-        <source>Display information about the Qt toolkit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="942"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished">Cos&apos;è questo ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished">C&amp;os&apos;è Questo ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished">Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="955"/>
+        <location filename="../QScintilla/ShellWindow.py" line="949"/>
         <source>Context sensitive help</source>
         <translation type="unfinished">Help sensibile al contesto</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="956"/>
+        <location filename="../QScintilla/ShellWindow.py" line="950"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1100"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1094"/>
         <source>About eric6 Shell Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1100"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1094"/>
         <source>The eric6 Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1128"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1122"/>
         <source>&amp;File</source>
         <translation type="unfinished">&amp;File</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1137"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1131"/>
         <source>&amp;Edit</source>
         <translation type="unfinished">&amp;Edita</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1148"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1142"/>
         <source>&amp;View</source>
         <translation type="unfinished">&amp;Visualizza</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1155"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1149"/>
         <source>Histor&amp;y</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1156"/>
+        <source>&amp;Start</source>
+        <translation type="unfinished">&amp;Avvia</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1162"/>
-        <source>&amp;Start</source>
-        <translation type="unfinished">&amp;Avvia</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1168"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1201"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1195"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1210"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1204"/>
         <source>Edit</source>
         <translation type="unfinished">Modifica</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1211"/>
+        <source>Find</source>
+        <translation type="unfinished">Trova</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1217"/>
-        <source>Find</source>
-        <translation type="unfinished">Trova</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1223"/>
         <source>View</source>
         <translation type="unfinished">Visualizza</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1224"/>
+        <source>History</source>
+        <translation type="unfinished">Cronologia</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1230"/>
-        <source>History</source>
-        <translation type="unfinished">Cronologia</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1236"/>
         <source>Help</source>
         <translation type="unfinished">Aiuto</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1257"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1251"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="585"/>
+        <location filename="../QScintilla/ShellWindow.py" line="579"/>
         <source>Move forward one history entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="595"/>
+        <location filename="../QScintilla/ShellWindow.py" line="589"/>
         <source>Move back one history entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1036"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1030"/>
         <source>eric6 Shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1034"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1028"/>
         <source>eric6 Shell [{0}]</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="242"/>
+        <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected environment.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="257"/>
+        <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected environment.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="284"/>
+        <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text to the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="302"/>
+        <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished">&lt;b&gt;Copia&lt;/b&gt;&lt;p&gt;Copia il testo selezionato nella clipboard.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="320"/>
+        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="337"/>
+        <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>Shelve</name>
@@ -80028,382 +80048,382 @@
 <context>
     <name>UserInterface</name>
     <message>
-        <location filename="../UI/UserInterface.py" line="277"/>
+        <location filename="../UI/UserInterface.py" line="278"/>
         <source>Generating Main User Interface...</source>
         <translation>Generazione interfaccia utente principale...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1802"/>
+        <location filename="../UI/UserInterface.py" line="1836"/>
         <source>Log-Viewer</source>
         <translation>Log-Viewer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="327"/>
+        <location filename="../UI/UserInterface.py" line="328"/>
         <source>Setting up connections...</source>
         <translation>Impostazione connessioni...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="627"/>
+        <location filename="../UI/UserInterface.py" line="628"/>
         <source>Initializing Actions...</source>
         <translation>Inizializzazione Azioni...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="629"/>
+        <location filename="../UI/UserInterface.py" line="630"/>
         <source>Initializing Menus...</source>
         <translation>Inizializzazione Menù...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="631"/>
+        <location filename="../UI/UserInterface.py" line="632"/>
         <source>Initializing Toolbars...</source>
         <translation>Inizializzazione barre degli strumenti...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="633"/>
+        <location filename="../UI/UserInterface.py" line="634"/>
         <source>Initializing Statusbar...</source>
         <translation>Inizializzazione barra di stato...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="584"/>
+        <location filename="../UI/UserInterface.py" line="585"/>
         <source>Initializing Tools...</source>
         <translation>Inizializzazione strumenti...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1603"/>
+        <location filename="../UI/UserInterface.py" line="1637"/>
         <source>Quit</source>
         <translation>Esci</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1603"/>
+        <location filename="../UI/UserInterface.py" line="1637"/>
         <source>&amp;Quit</source>
         <translation>&amp;Esci</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1609"/>
+        <location filename="../UI/UserInterface.py" line="1643"/>
         <source>Quit the IDE</source>
         <translation>Esci dall&apos;IDE</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1610"/>
+        <location filename="../UI/UserInterface.py" line="1644"/>
         <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&apos;IDE&lt;/b&gt;&lt;p&gt;Esci dall&apos;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="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>What&apos;s This?</source>
         <translation>Cos&apos;è questo ?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>&amp;What&apos;s This?</source>
         <translation>C&amp;os&apos;è Questo ?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2093"/>
+        <location filename="../UI/UserInterface.py" line="2127"/>
         <source>Context sensitive help</source>
         <translation>Help sensibile al contesto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2094"/>
+        <location filename="../UI/UserInterface.py" line="2128"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;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&apos;è Questo, il cursore del mouse mostra una freccia con un punto interrogativo e puoi premere sugli elementi dell&apos;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="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>Helpviewer</source>
         <translation>Visualizzatore Help</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>&amp;Helpviewer...</source>
         <translation>Visualizzatore &amp;Help...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2111"/>
+        <location filename="../UI/UserInterface.py" line="2145"/>
         <source>Open the helpviewer window</source>
         <translation>Apri il visualizzatore di help</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2131"/>
+        <location filename="../UI/UserInterface.py" line="2165"/>
         <source>Show Versions</source>
         <translation>Mostra versione</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2131"/>
+        <location filename="../UI/UserInterface.py" line="2165"/>
         <source>Show &amp;Versions</source>
         <translation>Mostra &amp;Versione</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2135"/>
+        <location filename="../UI/UserInterface.py" line="2169"/>
         <source>Display version information</source>
         <translation>Mostra informazioni sulla versione</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2137"/>
+        <location filename="../UI/UserInterface.py" line="2171"/>
         <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="3745"/>
+        <location filename="../UI/UserInterface.py" line="3779"/>
         <source>Report Bug</source>
         <translation>Segnala Bug</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2196"/>
+        <location filename="../UI/UserInterface.py" line="2230"/>
         <source>Report &amp;Bug...</source>
         <translation>Segnala &amp;Bug...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2200"/>
+        <location filename="../UI/UserInterface.py" line="2234"/>
         <source>Report a bug</source>
         <translation>Segnala un bug</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2201"/>
+        <location filename="../UI/UserInterface.py" line="2235"/>
         <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="3279"/>
+        <location filename="../UI/UserInterface.py" line="3313"/>
         <source>Unittest</source>
         <translation>Unittest</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2223"/>
+        <location filename="../UI/UserInterface.py" line="2257"/>
         <source>&amp;Unittest...</source>
         <translation>&amp;Unittest...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2228"/>
+        <location filename="../UI/UserInterface.py" line="2262"/>
         <source>Start unittest dialog</source>
         <translation>Avvia dialogo unittest</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2490"/>
+        <location filename="../UI/UserInterface.py" line="2524"/>
         <source>Preferences</source>
         <translation>Preferenze</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2490"/>
+        <location filename="../UI/UserInterface.py" line="2524"/>
         <source>&amp;Preferences...</source>
         <translation>&amp;Preferenze...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2495"/>
+        <location filename="../UI/UserInterface.py" line="2529"/>
         <source>Set the prefered configuration</source>
         <translation>Imposta la configurazione preferita</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2497"/>
+        <location filename="../UI/UserInterface.py" line="2531"/>
         <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&apos;applicazione ai valori preferiti&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2595"/>
+        <location filename="../UI/UserInterface.py" line="2629"/>
         <source>Keyboard Shortcuts</source>
         <translation>Scorciatoie da tastiera</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2595"/>
-        <source>Keyboard &amp;Shortcuts...</source>
-        <translation>&amp;Scorciatoie da tastiera...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2600"/>
-        <source>Set the keyboard shortcuts</source>
-        <translation>Imposta le scorciatoie da tastiera</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2602"/>
-        <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&apos;applicazione con i valori personalizzati.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6217"/>
-        <source>Export Keyboard Shortcuts</source>
-        <translation>Esporta scorciatoie da tastiera</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2610"/>
-        <source>&amp;Export Keyboard Shortcuts...</source>
-        <translation>&amp;Esporta scorciatoie da tastiera...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2615"/>
-        <source>Export the keyboard shortcuts</source>
-        <translation>Esporta le scorciatoie da tastiera</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2617"/>
-        <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&apos;applicazione.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6241"/>
-        <source>Import Keyboard Shortcuts</source>
-        <translation>Importa scorciatoie da tastiera</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2624"/>
-        <source>&amp;Import Keyboard Shortcuts...</source>
-        <translation>&amp;Importa scorciatoie da tastiera...</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2629"/>
+        <source>Keyboard &amp;Shortcuts...</source>
+        <translation>&amp;Scorciatoie da tastiera...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2634"/>
+        <source>Set the keyboard shortcuts</source>
+        <translation>Imposta le scorciatoie da tastiera</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2636"/>
+        <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&apos;applicazione con i valori personalizzati.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6251"/>
+        <source>Export Keyboard Shortcuts</source>
+        <translation>Esporta scorciatoie da tastiera</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2644"/>
+        <source>&amp;Export Keyboard Shortcuts...</source>
+        <translation>&amp;Esporta scorciatoie da tastiera...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2649"/>
+        <source>Export the keyboard shortcuts</source>
+        <translation>Esporta le scorciatoie da tastiera</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2651"/>
+        <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&apos;applicazione.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6275"/>
+        <source>Import Keyboard Shortcuts</source>
+        <translation>Importa scorciatoie da tastiera</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2658"/>
+        <source>&amp;Import Keyboard Shortcuts...</source>
+        <translation>&amp;Importa scorciatoie da tastiera...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2663"/>
         <source>Import the keyboard shortcuts</source>
         <translation>Importa le scorciatoie da tastiera</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2631"/>
+        <location filename="../UI/UserInterface.py" line="2665"/>
         <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&apos;applicazione.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3018"/>
+        <location filename="../UI/UserInterface.py" line="3052"/>
         <source>E&amp;xtras</source>
         <translation>E&amp;xtra</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3132"/>
+        <location filename="../UI/UserInterface.py" line="3166"/>
         <source>&amp;Window</source>
         <translation>&amp;Finestre</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3207"/>
+        <location filename="../UI/UserInterface.py" line="3241"/>
         <source>&amp;Help</source>
         <translation>&amp;Help</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3278"/>
+        <location filename="../UI/UserInterface.py" line="3312"/>
         <source>Tools</source>
         <translation>Strumenti</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5147"/>
+        <location filename="../UI/UserInterface.py" line="5181"/>
         <source>Help</source>
         <translation>Aiuto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3280"/>
+        <location filename="../UI/UserInterface.py" line="3314"/>
         <source>Settings</source>
         <translation>Impostazioni</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3193"/>
+        <location filename="../UI/UserInterface.py" line="3227"/>
         <source>&amp;Toolbars</source>
         <translation>&amp;Toolbar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5275"/>
+        <location filename="../UI/UserInterface.py" line="5309"/>
         <source>Problem</source>
         <translation>Problema</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5470"/>
+        <location filename="../UI/UserInterface.py" line="5504"/>
         <source>Process Generation Error</source>
         <translation>Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="660"/>
+        <location filename="../UI/UserInterface.py" line="661"/>
         <source>Initializing Single Application Server...</source>
         <translation>Inizializzazione Single Application Server...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2229"/>
+        <location filename="../UI/UserInterface.py" line="2263"/>
         <source>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Perform unit tests. The dialog gives you the ability to select and run a unittest suite.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Unittes&lt;/b&gt;&lt;p&gt;Esegui unit test. Il dialogo offre la possibilità di selezionare ed eseguire uno unittest.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2271"/>
         <source>Unittest Restart</source>
         <translation>Riavvia Unittest</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2271"/>
         <source>&amp;Restart Unittest...</source>
         <translation>&amp;Riavvia Unittest...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2242"/>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>Restart last unittest</source>
         <translation>Riavvia l&apos;ultima unittest</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2243"/>
+        <location filename="../UI/UserInterface.py" line="2277"/>
         <source>&lt;b&gt;Restart Unittest&lt;/b&gt;&lt;p&gt;Restart the unittest performed last.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Riavvia Unittest&lt;/b&gt;&lt;p&gt;Riavvia l&apos;ultima unittest eseguita.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2267"/>
+        <location filename="../UI/UserInterface.py" line="2301"/>
         <source>Unittest Script</source>
         <translation>Script unittest</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2267"/>
+        <location filename="../UI/UserInterface.py" line="2301"/>
         <source>Unittest &amp;Script...</source>
         <translation>&amp;Script Unittest...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2272"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Run unittest with current script</source>
         <translation>Esegui unittest con lo script corrente</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2274"/>
+        <location filename="../UI/UserInterface.py" line="2308"/>
         <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Script Unittest&lt;/b&gt;&lt;p&gt;Esegui unittest con lo script corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2282"/>
+        <location filename="../UI/UserInterface.py" line="2316"/>
         <source>Unittest Project</source>
         <translation>Progetto Unittest</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2282"/>
+        <location filename="../UI/UserInterface.py" line="2316"/>
         <source>Unittest &amp;Project...</source>
         <translation>&amp;Progetto Unittest...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2287"/>
+        <location filename="../UI/UserInterface.py" line="2321"/>
         <source>Run unittest with current project</source>
         <translation>Esegui unittest con il progetto corrente</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2289"/>
+        <location filename="../UI/UserInterface.py" line="2323"/>
         <source>&lt;b&gt;Unittest Project&lt;/b&gt;&lt;p&gt;Run unittest with current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Progetto Unittest&lt;/b&gt;&lt;p&gt;Esegui unittest con il progetto corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2377"/>
+        <location filename="../UI/UserInterface.py" line="2411"/>
         <source>Compare Files</source>
         <translation>Confronta file</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2377"/>
+        <location filename="../UI/UserInterface.py" line="2411"/>
         <source>&amp;Compare Files...</source>
         <translation>&amp;Confronta file...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2395"/>
+        <location filename="../UI/UserInterface.py" line="2429"/>
         <source>Compare two files</source>
         <translation>Confronta due file</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2383"/>
+        <location filename="../UI/UserInterface.py" line="2417"/>
         <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="2390"/>
+        <location filename="../UI/UserInterface.py" line="2424"/>
         <source>Compare Files side by side</source>
         <translation>Confronta file affiancati</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2396"/>
+        <location filename="../UI/UserInterface.py" line="2430"/>
         <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="3074"/>
+        <location filename="../UI/UserInterface.py" line="3108"/>
         <source>&amp;Unittest</source>
         <translation>&amp;Unittest</translation>
     </message>
@@ -80413,222 +80433,222 @@
         <translation type="obsolete">Non c&apos;è uno script principale definito per il progetto. Esco</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6804"/>
+        <location filename="../UI/UserInterface.py" line="6838"/>
         <source>Drop Error</source>
         <translation>Errore Drop</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
+        <location filename="../UI/UserInterface.py" line="1819"/>
         <source>File-Browser</source>
         <translation>File Browser</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1681"/>
+        <location filename="../UI/UserInterface.py" line="1715"/>
         <source>Edit Profile</source>
         <translation>Modifica profilo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1687"/>
+        <location filename="../UI/UserInterface.py" line="1721"/>
         <source>Activate the edit view profile</source>
         <translation>Attiva il profilo della vista di editing</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1689"/>
+        <location filename="../UI/UserInterface.py" line="1723"/>
         <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Profilo di edit&lt;/p&gt;&lt;p&gt;Attiva il &quot;Profilo di Edit&quot;. Le finestre da mostrare, se il profilo è attivo, possono essere configurate con il dialogo &quot;Configura Profili.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1698"/>
+        <location filename="../UI/UserInterface.py" line="1732"/>
         <source>Debug Profile</source>
         <translation>Profilo Debug</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1704"/>
+        <location filename="../UI/UserInterface.py" line="1738"/>
         <source>Activate the debug view profile</source>
         <translation>Attiva profilo Debug</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1706"/>
+        <location filename="../UI/UserInterface.py" line="1740"/>
         <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Profilo di debug&lt;/p&gt;&lt;p&gt;Attiva il &quot;Profilo di Debug&quot;. Le finestre da mostrare, se il profilo è attivo, possono essere configurate con il dialogo &quot;Configura Profili.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2563"/>
+        <location filename="../UI/UserInterface.py" line="2597"/>
         <source>View Profiles</source>
         <translation>Vista Profili</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2563"/>
+        <location filename="../UI/UserInterface.py" line="2597"/>
         <source>&amp;View Profiles...</source>
         <translation>&amp;Vista profili...</translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="2602"/>
+        <source>Configure view profiles</source>
+        <translation>Configura i profili</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2604"/>
+        <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="2384"/>
+        <source>UI Previewer</source>
+        <translation>Anteprima UI</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2384"/>
+        <source>&amp;UI Previewer...</source>
+        <translation>Antreprima &amp;UI...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2389"/>
+        <source>Start the UI Previewer</source>
+        <translation>Avvia UI Previewer</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2390"/>
+        <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="2397"/>
+        <source>Translations Previewer</source>
+        <translation>Anteprima traduzioni</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2397"/>
+        <source>&amp;Translations Previewer...</source>
+        <translation>Anteprima &amp;Traduzioni...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2402"/>
+        <source>Start the Translations Previewer</source>
+        <translation>Avvia l&apos;anteprima delle traduzioni</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2404"/>
+        <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&apos;anteprima delle traduzioni.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1802"/>
+        <source>Shell</source>
+        <translation>Shell</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1802"/>
+        <source>&amp;Shell</source>
+        <translation>&amp;Shell</translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="2568"/>
-        <source>Configure view profiles</source>
-        <translation>Configura i profili</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2570"/>
-        <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="2350"/>
-        <source>UI Previewer</source>
-        <translation>Anteprima UI</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2350"/>
-        <source>&amp;UI Previewer...</source>
-        <translation>Antreprima &amp;UI...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2355"/>
-        <source>Start the UI Previewer</source>
-        <translation>Avvia UI Previewer</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2356"/>
-        <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="2363"/>
-        <source>Translations Previewer</source>
-        <translation>Anteprima traduzioni</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2363"/>
-        <source>&amp;Translations Previewer...</source>
-        <translation>Anteprima &amp;Traduzioni...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2368"/>
-        <source>Start the Translations Previewer</source>
-        <translation>Avvia l&apos;anteprima delle traduzioni</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2370"/>
-        <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&apos;anteprima delle traduzioni.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
-        <source>Shell</source>
-        <translation>Shell</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
-        <source>&amp;Shell</source>
-        <translation>&amp;Shell</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2534"/>
         <source>Reload APIs</source>
         <translation>Ricarica APIs</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2534"/>
+        <location filename="../UI/UserInterface.py" line="2568"/>
         <source>Reload &amp;APIs</source>
         <translation>Ricarica &amp;APIs</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2538"/>
+        <location filename="../UI/UserInterface.py" line="2572"/>
         <source>Reload the API information</source>
         <translation>Ricarica le informazioni delle API</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2540"/>
+        <location filename="../UI/UserInterface.py" line="2574"/>
         <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="1820"/>
+        <location filename="../UI/UserInterface.py" line="1854"/>
         <source>Task-Viewer</source>
         <translation>Task-Viewer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6411"/>
+        <location filename="../UI/UserInterface.py" line="6445"/>
         <source>Save tasks</source>
         <translation>Salva task</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6440"/>
+        <location filename="../UI/UserInterface.py" line="6474"/>
         <source>Read tasks</source>
         <translation>Leggi task</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5147"/>
+        <location filename="../UI/UserInterface.py" line="5181"/>
         <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="5809"/>
+        <location filename="../UI/UserInterface.py" line="5843"/>
         <source>Documentation Missing</source>
         <translation>Documentazione mancante</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
+        <location filename="../UI/UserInterface.py" line="3779"/>
         <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
         <translation>L&apos;indirizzo di posta o il server si posta sono vuoti. Per cortesia configura le opzioni per l&apos;Email nel dialogo delle preferenze.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
+        <location filename="../UI/UserInterface.py" line="1873"/>
         <source>Template-Viewer</source>
         <translation>Templates-Viewer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1715"/>
+        <location filename="../UI/UserInterface.py" line="1749"/>
         <source>Alt+Shift+P</source>
         <translation>Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1784"/>
         <source>Alt+Shift+D</source>
         <translation>Alt+Shift+D</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
-        <source>Alt+Shift+S</source>
-        <translation>Alt+Shift+S</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
-        <source>Alt+Shift+F</source>
-        <translation>Alt+Shift+M</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
-        <source>Alt+Shift+T</source>
-        <translation>Alt+Shift+T</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1732"/>
-        <source>Alt+Shift+M</source>
-        <translation>Alt+Shift+M</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2689"/>
-        <source>Activate current editor</source>
-        <translation>Attiva editor corrente</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2689"/>
-        <source>Alt+Shift+E</source>
-        <translation>Alt+Shift+E</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2699"/>
-        <source>Ctrl+Alt+Tab</source>
-        <translation>Ctrl+Alt+Tab</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2708"/>
-        <source>Shift+Ctrl+Alt+Tab</source>
-        <translation>Shift+Ctrl+Alt+Tab</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1802"/>
+        <source>Alt+Shift+S</source>
+        <translation>Alt+Shift+S</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1819"/>
+        <source>Alt+Shift+F</source>
+        <translation>Alt+Shift+M</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1854"/>
+        <source>Alt+Shift+T</source>
+        <translation>Alt+Shift+T</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1766"/>
+        <source>Alt+Shift+M</source>
+        <translation>Alt+Shift+M</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2723"/>
+        <source>Activate current editor</source>
+        <translation>Attiva editor corrente</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2723"/>
+        <source>Alt+Shift+E</source>
+        <translation>Alt+Shift+E</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2733"/>
+        <source>Ctrl+Alt+Tab</source>
+        <translation>Ctrl+Alt+Tab</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2742"/>
+        <source>Shift+Ctrl+Alt+Tab</source>
+        <translation>Shift+Ctrl+Alt+Tab</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1836"/>
         <source>Alt+Shift+G</source>
         <translation>Alt+Shift+G</translation>
     </message>
@@ -80648,68 +80668,68 @@
         <translation type="obsolete">Apri documentazione su Qt4</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2889"/>
+        <location filename="../UI/UserInterface.py" line="2923"/>
         <source>Eric API Documentation</source>
         <translation>Documentazione API di Eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2889"/>
+        <location filename="../UI/UserInterface.py" line="2923"/>
         <source>&amp;Eric API Documentation</source>
         <translation>Documentazione API di &amp;Eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2893"/>
+        <location filename="../UI/UserInterface.py" line="2927"/>
         <source>Open Eric API Documentation</source>
         <translation>Apri documentazione API di Eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5181"/>
+        <location filename="../UI/UserInterface.py" line="5215"/>
         <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="594"/>
+        <location filename="../UI/UserInterface.py" line="595"/>
         <source>Registering Objects...</source>
         <translation>Registrazione Oggetti...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1715"/>
+        <location filename="../UI/UserInterface.py" line="1749"/>
         <source>Project-Viewer</source>
         <translation>Project-Viewer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1784"/>
         <source>Debug-Viewer</source>
         <translation>Debug-Viewer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1603"/>
+        <location filename="../UI/UserInterface.py" line="1637"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1715"/>
+        <location filename="../UI/UserInterface.py" line="1749"/>
         <source>&amp;Project-Viewer</source>
         <translation>&amp;Project-Viewer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>Shift+F1</source>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>F1</source>
         <translation>F1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2147"/>
+        <location filename="../UI/UserInterface.py" line="2181"/>
         <source>Check for Updates</source>
         <translation>Controlla per aggiornamenti</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2144"/>
+        <location filename="../UI/UserInterface.py" line="2178"/>
         <source>Check for &amp;Updates...</source>
         <translation>Controlla per &amp;Aggiornamenti...</translation>
     </message>
@@ -80724,27 +80744,27 @@
         <translation type="obsolete">Apri documentazione su PyQt4</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3091"/>
+        <location filename="../UI/UserInterface.py" line="3125"/>
         <source>Select Tool Group</source>
         <translation>Seleziona Tool Group</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3102"/>
+        <location filename="../UI/UserInterface.py" line="3136"/>
         <source>Se&amp;ttings</source>
         <translation>Impos&amp;tazioni</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3282"/>
+        <location filename="../UI/UserInterface.py" line="3316"/>
         <source>Profiles</source>
         <translation>Profili</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4101"/>
+        <location filename="../UI/UserInterface.py" line="4135"/>
         <source>&amp;Builtin Tools</source>
         <translation>Tool &amp;Builtin</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5792"/>
+        <location filename="../UI/UserInterface.py" line="5826"/>
         <source>Documentation</source>
         <translation>Documentazione</translation>
     </message>
@@ -80754,12 +80774,12 @@
         <translation type="obsolete">&lt;p&gt;L&apos;inizio della documentazione di PySide non è stato configurato.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7175"/>
+        <location filename="../UI/UserInterface.py" line="7209"/>
         <source>Error during updates check</source>
         <translation>Errore nel controllo per gli update</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7156"/>
+        <location filename="../UI/UserInterface.py" line="7190"/>
         <source>Update available</source>
         <translation>Aggiornamento disponibile</translation>
     </message>
@@ -80769,462 +80789,462 @@
         <translation type="obsolete">&lt;h3&gt;Numeri di versione&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7214"/>
+        <location filename="../UI/UserInterface.py" line="7248"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4146"/>
+        <location filename="../UI/UserInterface.py" line="4180"/>
         <source>Configure Tool Groups ...</source>
         <translation>Configura Tools Groups...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4150"/>
+        <location filename="../UI/UserInterface.py" line="4184"/>
         <source>Configure current Tool Group ...</source>
         <translation>Configura Tools Groups correnti...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2552"/>
-        <source>Show external tools</source>
-        <translation>Mostra tool esterni</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2547"/>
-        <source>Show external &amp;tools</source>
-        <translation>Mostra toll &amp;esterni</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6989"/>
-        <source>&amp;Cancel</source>
-        <translation>&amp;Cancella</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7175"/>
-        <source>Could not perform updates check.</source>
-        <translation>Non posso controllare per gli update.</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7251"/>
-        <source>First time usage</source>
-        <translation>Primo avvio</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="270"/>
-        <source>Initializing Plugin Manager...</source>
-        <translation>Inizializzazione Gestore Plugin...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3055"/>
-        <source>P&amp;lugins</source>
-        <translation>P&amp;lugins</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3283"/>
-        <source>Plugins</source>
-        <translation>Plugins</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2726"/>
-        <source>Plugin Infos</source>
-        <translation>Informazioni su Plugin</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2730"/>
-        <source>Show Plugin Infos</source>
-        <translation>Mostra informazioni sui Plugin</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2731"/>
-        <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="2726"/>
-        <source>&amp;Plugin Infos...</source>
-        <translation>Informazioni su &amp;Plugin...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4118"/>
-        <source>&amp;Plugin Tools</source>
-        <translation>Informazioni sui &amp;Plugin Tools</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2757"/>
-        <source>Uninstall Plugin</source>
-        <translation>Disinstalla Plugin</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2752"/>
-        <source>&amp;Uninstall Plugin...</source>
-        <translation>Disinstalla Pl&amp;ugin...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2758"/>
-        <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="670"/>
-        <source>Activating Plugins...</source>
-        <translation>Attivazione Plugin...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3028"/>
-        <source>Wi&amp;zards</source>
-        <translation>Wi&amp;zards</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4267"/>
-        <source>&amp;Show all</source>
-        <translation>Mo&amp;stra tutti</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4269"/>
-        <source>&amp;Hide all</source>
-        <translation>Nascondi &amp;tutti</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2155"/>
-        <source>Show downloadable versions</source>
-        <translation>Mostra versioni scaricabili</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2155"/>
-        <source>Show &amp;downloadable versions...</source>
-        <translation>Mostra &amp;versioni scaricabili...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2159"/>
-        <source>Show the versions available for download</source>
-        <translation>Mostra le versioni disponibili per il download</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7199"/>
-        <source>&lt;h3&gt;Available versions&lt;/h3&gt;&lt;table&gt;</source>
-        <translation>&lt;h3&gt;Versioni disponibili&lt;/h3&gt;&lt;table&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2765"/>
-        <source>Plugin Repository</source>
-        <translation>Repository Plugin</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2765"/>
-        <source>Plugin &amp;Repository...</source>
-        <translation>&amp;Repository Plugin...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2770"/>
-        <source>Show Plugins available for download</source>
-        <translation>Mostra Plugin disponibili per il download</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2772"/>
-        <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="2744"/>
-        <source>Install Plugins</source>
-        <translation>Installa Plugin</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2739"/>
-        <source>&amp;Install Plugins...</source>
-        <translation>&amp;Installa Plugin...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2745"/>
-        <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="2422"/>
-        <source>Mini Editor</source>
-        <translation>Mini Editor</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2417"/>
-        <source>Mini &amp;Editor...</source>
-        <translation>Mini &amp;Editor...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2423"/>
-        <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="2580"/>
-        <source>Toolbars</source>
-        <translation>Toolbars</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2580"/>
-        <source>Tool&amp;bars...</source>
-        <translation>Tool&amp;bars...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2585"/>
-        <source>Configure toolbars</source>
-        <translation>Configura toolbars</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2586"/>
+        <source>Show external tools</source>
+        <translation>Mostra tool esterni</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2581"/>
+        <source>Show external &amp;tools</source>
+        <translation>Mostra toll &amp;esterni</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7023"/>
+        <source>&amp;Cancel</source>
+        <translation>&amp;Cancella</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7209"/>
+        <source>Could not perform updates check.</source>
+        <translation>Non posso controllare per gli update.</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7285"/>
+        <source>First time usage</source>
+        <translation>Primo avvio</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="271"/>
+        <source>Initializing Plugin Manager...</source>
+        <translation>Inizializzazione Gestore Plugin...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3089"/>
+        <source>P&amp;lugins</source>
+        <translation>P&amp;lugins</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3317"/>
+        <source>Plugins</source>
+        <translation>Plugins</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2760"/>
+        <source>Plugin Infos</source>
+        <translation>Informazioni su Plugin</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2764"/>
+        <source>Show Plugin Infos</source>
+        <translation>Mostra informazioni sui Plugin</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2765"/>
+        <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="2760"/>
+        <source>&amp;Plugin Infos...</source>
+        <translation>Informazioni su &amp;Plugin...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4152"/>
+        <source>&amp;Plugin Tools</source>
+        <translation>Informazioni sui &amp;Plugin Tools</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2791"/>
+        <source>Uninstall Plugin</source>
+        <translation>Disinstalla Plugin</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2786"/>
+        <source>&amp;Uninstall Plugin...</source>
+        <translation>Disinstalla Pl&amp;ugin...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2792"/>
+        <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="671"/>
+        <source>Activating Plugins...</source>
+        <translation>Attivazione Plugin...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3062"/>
+        <source>Wi&amp;zards</source>
+        <translation>Wi&amp;zards</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4301"/>
+        <source>&amp;Show all</source>
+        <translation>Mo&amp;stra tutti</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4303"/>
+        <source>&amp;Hide all</source>
+        <translation>Nascondi &amp;tutti</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2189"/>
+        <source>Show downloadable versions</source>
+        <translation>Mostra versioni scaricabili</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2189"/>
+        <source>Show &amp;downloadable versions...</source>
+        <translation>Mostra &amp;versioni scaricabili...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2193"/>
+        <source>Show the versions available for download</source>
+        <translation>Mostra le versioni disponibili per il download</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7233"/>
+        <source>&lt;h3&gt;Available versions&lt;/h3&gt;&lt;table&gt;</source>
+        <translation>&lt;h3&gt;Versioni disponibili&lt;/h3&gt;&lt;table&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2799"/>
+        <source>Plugin Repository</source>
+        <translation>Repository Plugin</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2799"/>
+        <source>Plugin &amp;Repository...</source>
+        <translation>&amp;Repository Plugin...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2804"/>
+        <source>Show Plugins available for download</source>
+        <translation>Mostra Plugin disponibili per il download</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2806"/>
+        <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="2778"/>
+        <source>Install Plugins</source>
+        <translation>Installa Plugin</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2773"/>
+        <source>&amp;Install Plugins...</source>
+        <translation>&amp;Installa Plugin...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2779"/>
+        <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="2456"/>
+        <source>Mini Editor</source>
+        <translation>Mini Editor</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2451"/>
+        <source>Mini &amp;Editor...</source>
+        <translation>Mini &amp;Editor...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2457"/>
+        <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="2614"/>
+        <source>Toolbars</source>
+        <translation>Toolbars</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2614"/>
+        <source>Tool&amp;bars...</source>
+        <translation>Tool&amp;bars...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2619"/>
+        <source>Configure toolbars</source>
+        <translation>Configura toolbars</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2620"/>
         <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="686"/>
+        <location filename="../UI/UserInterface.py" line="687"/>
         <source>Restoring Toolbarmanager...</source>
         <translation>Ripristino toolbarmanager...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1732"/>
+        <location filename="../UI/UserInterface.py" line="1766"/>
         <source>Multiproject-Viewer</source>
         <translation>Multiproject-Viewer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1732"/>
+        <location filename="../UI/UserInterface.py" line="1766"/>
         <source>&amp;Multiproject-Viewer</source>
         <translation>&amp;Multiproject-Viewer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5415"/>
+        <location filename="../UI/UserInterface.py" line="5449"/>
         <source>External Tools</source>
         <translation>Tool esterni</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6536"/>
+        <location filename="../UI/UserInterface.py" line="6570"/>
         <source>Save session</source>
         <translation>Salva sessione</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6520"/>
+        <location filename="../UI/UserInterface.py" line="6554"/>
         <source>Read session</source>
         <translation>Leggi sessione</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3459"/>
+        <location filename="../UI/UserInterface.py" line="3493"/>
         <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&apos;encoding usato dall&apos;editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3473"/>
+        <location filename="../UI/UserInterface.py" line="3507"/>
         <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="2208"/>
+        <location filename="../UI/UserInterface.py" line="2242"/>
         <source>Request Feature</source>
         <translation>Richiedi funzionalità</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2208"/>
+        <location filename="../UI/UserInterface.py" line="2242"/>
         <source>Request &amp;Feature...</source>
         <translation>Richiedi &amp;funzionalità...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2212"/>
+        <location filename="../UI/UserInterface.py" line="2246"/>
         <source>Send a feature request</source>
         <translation>Invia una richiesta di funzionalità</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2214"/>
+        <location filename="../UI/UserInterface.py" line="2248"/>
         <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="3452"/>
+        <location filename="../UI/UserInterface.py" line="3486"/>
         <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&apos;editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3480"/>
+        <location filename="../UI/UserInterface.py" line="3514"/>
         <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="3487"/>
+        <location filename="../UI/UserInterface.py" line="3521"/>
         <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="1882"/>
+        <location filename="../UI/UserInterface.py" line="1916"/>
         <source>Horizontal Toolbox</source>
         <translation>Barra dei comandi orizzontale</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
+        <location filename="../UI/UserInterface.py" line="1873"/>
         <source>Alt+Shift+A</source>
         <translation>Alt+Shift+A</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1882"/>
+        <location filename="../UI/UserInterface.py" line="1916"/>
         <source>&amp;Horizontal Toolbox</source>
         <translation>Toolbox &amp;Orizzontale</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1886"/>
+        <location filename="../UI/UserInterface.py" line="1920"/>
         <source>Toggle the Horizontal Toolbox window</source>
         <translation>Abilita/Disabilita una finestra la toolbox orizzontale</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1888"/>
+        <location filename="../UI/UserInterface.py" line="1922"/>
         <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="4065"/>
+        <location filename="../UI/UserInterface.py" line="4099"/>
         <source>Restart application</source>
         <translation>Riavvia applicazione</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4065"/>
+        <location filename="../UI/UserInterface.py" line="4099"/>
         <source>The application needs to be restarted. Do it now?</source>
         <translation>L&apos;applicazione necessita di un riavvio. Farlo ora ?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3064"/>
+        <location filename="../UI/UserInterface.py" line="3098"/>
         <source>Configure...</source>
         <translation>Configura...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3466"/>
+        <location filename="../UI/UserInterface.py" line="3500"/>
         <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&apos;eol usato dall&apos;editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2717"/>
+        <location filename="../UI/UserInterface.py" line="2751"/>
         <source>Switch between tabs</source>
         <translation>Cicla tra le linguette</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2717"/>
+        <location filename="../UI/UserInterface.py" line="2751"/>
         <source>Ctrl+1</source>
         <translation>Ctrl+1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2506"/>
+        <location filename="../UI/UserInterface.py" line="2540"/>
         <source>Export Preferences</source>
         <translation>Esporta preferenze</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2506"/>
+        <location filename="../UI/UserInterface.py" line="2540"/>
         <source>E&amp;xport Preferences...</source>
         <translation>E&amp;sporta preferenze...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2511"/>
+        <location filename="../UI/UserInterface.py" line="2545"/>
         <source>Export the current configuration</source>
         <translation>Esporta la configurazione attuale</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2513"/>
+        <location filename="../UI/UserInterface.py" line="2547"/>
         <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="2520"/>
+        <location filename="../UI/UserInterface.py" line="2554"/>
         <source>Import Preferences</source>
         <translation>Importa preferenze</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2520"/>
+        <location filename="../UI/UserInterface.py" line="2554"/>
         <source>I&amp;mport Preferences...</source>
         <translation>I&amp;mporta preferenze...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2525"/>
+        <location filename="../UI/UserInterface.py" line="2559"/>
         <source>Import a previously exported configuration</source>
         <translation>Importa una configurazione precedentemente esportata</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2527"/>
+        <location filename="../UI/UserInterface.py" line="2561"/>
         <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="2699"/>
+        <location filename="../UI/UserInterface.py" line="2733"/>
         <source>Show next</source>
         <translation>Mostra successivo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2708"/>
+        <location filename="../UI/UserInterface.py" line="2742"/>
         <source>Show previous</source>
         <translation>Mostra precedente</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1896"/>
+        <location filename="../UI/UserInterface.py" line="1930"/>
         <source>Left Sidebar</source>
         <translation>Barra laterale sinistra</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1896"/>
+        <location filename="../UI/UserInterface.py" line="1930"/>
         <source>&amp;Left Sidebar</source>
         <translation>Barra &amp;laterale sinistra</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1900"/>
+        <location filename="../UI/UserInterface.py" line="1934"/>
         <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="1901"/>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <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="1923"/>
+        <location filename="../UI/UserInterface.py" line="1957"/>
         <source>Bottom Sidebar</source>
         <translation>Barra in basso</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1923"/>
+        <location filename="../UI/UserInterface.py" line="1957"/>
         <source>&amp;Bottom Sidebar</source>
         <translation>Barra in &amp;basso</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1927"/>
+        <location filename="../UI/UserInterface.py" line="1961"/>
         <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="1929"/>
+        <location filename="../UI/UserInterface.py" line="1963"/>
         <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="1750"/>
+        <location filename="../UI/UserInterface.py" line="1784"/>
         <source>&amp;Debug-Viewer</source>
         <translation>&amp;Debug-Viewer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2404"/>
+        <location filename="../UI/UserInterface.py" line="2438"/>
         <source>SQL Browser</source>
         <translation>SQL Browser</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2404"/>
+        <location filename="../UI/UserInterface.py" line="2438"/>
         <source>SQL &amp;Browser...</source>
         <translation>SQL &amp;Browser...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2409"/>
+        <location filename="../UI/UserInterface.py" line="2443"/>
         <source>Browse a SQL database</source>
         <translation>Naviga un database SQL</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2410"/>
+        <location filename="../UI/UserInterface.py" line="2444"/>
         <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="2461"/>
+        <location filename="../UI/UserInterface.py" line="2495"/>
         <source>Icon Editor</source>
         <translation>Editor di icone</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2461"/>
+        <location filename="../UI/UserInterface.py" line="2495"/>
         <source>&amp;Icon Editor...</source>
         <translation>Editor di &amp;icone...</translation>
     </message>
@@ -81249,175 +81269,175 @@
         <translation type="obsolete">Apri documentazione PySide</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1569"/>
+        <location filename="../UI/UserInterface.py" line="1603"/>
         <source>{0} - Passive Mode</source>
         <translation>{0} - Passive Debug Mode</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1576"/>
+        <location filename="../UI/UserInterface.py" line="1610"/>
         <source>{0} - {1} - Passive Mode</source>
         <translation>{0} -{1} Passive Debug Mode</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1580"/>
+        <location filename="../UI/UserInterface.py" line="1614"/>
         <source>{0} - {1} - {2} - Passive Mode</source>
         <translation>{0} -{1} - {2} - Passive Debug Mode</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3563"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>External Tools/{0}</source>
         <translation>Tool Esterni/{0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5275"/>
+        <location filename="../UI/UserInterface.py" line="5309"/>
         <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="5000"/>
+        <location filename="../UI/UserInterface.py" line="5034"/>
         <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="5070"/>
+        <location filename="../UI/UserInterface.py" line="5104"/>
         <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="5114"/>
+        <location filename="../UI/UserInterface.py" line="5148"/>
         <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="5161"/>
+        <location filename="../UI/UserInterface.py" line="5195"/>
         <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="5231"/>
+        <location filename="../UI/UserInterface.py" line="5265"/>
         <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="5288"/>
+        <location filename="../UI/UserInterface.py" line="5322"/>
         <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&apos;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="5311"/>
+        <location filename="../UI/UserInterface.py" line="5345"/>
         <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="5406"/>
+        <location filename="../UI/UserInterface.py" line="5440"/>
         <source>No tool entry found for external tool &apos;{0}&apos; in tool group &apos;{1}&apos;.</source>
         <translation>Nessun elemento per il tool esterno &apos;{0}&apos; trovato nel gruppo &apos;{1}&apos;.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5415"/>
+        <location filename="../UI/UserInterface.py" line="5449"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation>Nessun gruppo &apos;{0}&apos; trovato.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5454"/>
+        <location filename="../UI/UserInterface.py" line="5488"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation>Avvio processo &apos;{0} {1}&apos;.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5470"/>
+        <location filename="../UI/UserInterface.py" line="5504"/>
         <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&apos;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="5548"/>
+        <location filename="../UI/UserInterface.py" line="5582"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation>Il processo &apos;{0}&apos; è terminato.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5809"/>
+        <location filename="../UI/UserInterface.py" line="5843"/>
         <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
         <translation>&lt;p&gt;L&apos;inizio della documentazione &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; non viene trovato.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6411"/>
+        <location filename="../UI/UserInterface.py" line="6445"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file task &lt;b&gt;{0}&lt;/b&gt; non può essere scritto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6440"/>
-        <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="6474"/>
+        <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="6508"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file sessione &lt;b&gt;{0}&lt;/b&gt; non può essere scritto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6520"/>
+        <location filename="../UI/UserInterface.py" line="6554"/>
         <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="6804"/>
+        <location filename="../UI/UserInterface.py" line="6838"/>
         <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="6998"/>
+        <location filename="../UI/UserInterface.py" line="7032"/>
         <source>Trying host {0}</source>
         <translation>Tento su host {0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1122"/>
+        <location filename="../UI/UserInterface.py" line="1123"/>
         <source>Cooperation</source>
         <translation>Cooperazione</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Alt+Shift+O</source>
         <translation>Alt+Shift+O</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1178"/>
+        <location filename="../UI/UserInterface.py" line="1179"/>
         <source>Symbols</source>
         <translation>Simboli</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>Alt+Shift+Y</source>
         <translation>Alt+Shift+Y</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1187"/>
+        <location filename="../UI/UserInterface.py" line="1188"/>
         <source>Numbers</source>
         <translation>Numeri</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Alt+Shift+B</source>
         <translation>Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6241"/>
+        <location filename="../UI/UserInterface.py" line="6275"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation>File scorciatoi tastiera (*.e4k)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2867"/>
+        <location filename="../UI/UserInterface.py" line="2901"/>
         <source>Python 3 Documentation</source>
         <translation>Documentazione Python 3</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2867"/>
+        <location filename="../UI/UserInterface.py" line="2901"/>
         <source>Python &amp;3 Documentation</source>
         <translation>Documentazione Python &amp;3</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2871"/>
+        <location filename="../UI/UserInterface.py" line="2905"/>
         <source>Open Python 3 Documentation</source>
         <translation>Apri documentazione Python 3</translation>
     </message>
@@ -81442,573 +81462,573 @@
         <translation type="obsolete">&lt;b&gt;Documentazione Python 2&lt;/b&gt;&lt;p&gt;Mostra la documentazione Python 2. Se non è configurata una directory per la documentazione, viene assunto che la posizione della documentazione sia nella directory doc nella locazione dell&apos;eseguibile Python 2 su Windows e &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; su Unix. Imposta PYTHONDOCDIR2 nel tuo ambiente per sovrascrivere questi valori.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7064"/>
+        <location filename="../UI/UserInterface.py" line="7098"/>
         <source>Error getting versions information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7057"/>
+        <location filename="../UI/UserInterface.py" line="7091"/>
         <source>The versions information could not be downloaded. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6009"/>
+        <location filename="../UI/UserInterface.py" line="6043"/>
         <source>Open Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6009"/>
+        <location filename="../UI/UserInterface.py" line="6043"/>
         <source>Could not start a web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7064"/>
+        <location filename="../UI/UserInterface.py" line="7098"/>
         <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="695"/>
+        <location filename="../UI/UserInterface.py" line="696"/>
         <source>Setting View Profile...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="708"/>
+        <location filename="../UI/UserInterface.py" line="709"/>
         <source>Reading Tasks...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="713"/>
+        <location filename="../UI/UserInterface.py" line="714"/>
         <source>Reading Templates...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="718"/>
+        <location filename="../UI/UserInterface.py" line="719"/>
         <source>Starting Debugger...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>New Window</source>
         <translation type="unfinished">Nuova finestra</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>New &amp;Window</source>
         <translation type="unfinished">Nuova &amp;Finestra</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2251"/>
+        <location filename="../UI/UserInterface.py" line="2285"/>
         <source>Unittest Rerun Failed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2251"/>
+        <location filename="../UI/UserInterface.py" line="2285"/>
         <source>Rerun Failed Tests...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2256"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Rerun failed tests of the last run</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2258"/>
+        <location filename="../UI/UserInterface.py" line="2292"/>
         <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last unittest run.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2390"/>
+        <location filename="../UI/UserInterface.py" line="2424"/>
         <source>Compare &amp;Files side by side...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2475"/>
+        <location filename="../UI/UserInterface.py" line="2509"/>
         <source>Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2475"/>
+        <location filename="../UI/UserInterface.py" line="2509"/>
         <source>&amp;Snapshot...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2480"/>
+        <location filename="../UI/UserInterface.py" line="2514"/>
         <source>Take snapshots of a screen region</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2482"/>
+        <location filename="../UI/UserInterface.py" line="2516"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5383"/>
+        <location filename="../UI/UserInterface.py" line="5417"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7270"/>
+        <location filename="../UI/UserInterface.py" line="7304"/>
         <source>Select Workspace Directory</source>
         <translation type="unfinished">Seleziona cartella di lavoro</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
+        <location filename="../UI/UserInterface.py" line="1891"/>
         <source>Left Toolbox</source>
         <translation type="unfinished">Barra degli strumenti sinistra</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1869"/>
+        <location filename="../UI/UserInterface.py" line="1903"/>
         <source>Right Toolbox</source>
         <translation type="unfinished">Barra degli strumenti destra</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1721"/>
+        <location filename="../UI/UserInterface.py" line="1755"/>
         <source>Switch the input focus to the Project-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1723"/>
+        <location filename="../UI/UserInterface.py" line="1757"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1738"/>
+        <location filename="../UI/UserInterface.py" line="1772"/>
         <source>Switch the input focus to the Multiproject-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1740"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1756"/>
-        <source>Switch the input focus to the Debug-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1758"/>
-        <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"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1774"/>
-        <source>Switch the input focus to the Shell window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1776"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
-        <source>&amp;File-Browser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1791"/>
-        <source>Switch the input focus to the File-Browser window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1793"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1802"/>
-        <source>Lo&amp;g-Viewer</source>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1790"/>
+        <source>Switch the input focus to the Debug-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1792"/>
+        <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"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1808"/>
-        <source>Switch the input focus to the Log-Viewer window.</source>
+        <source>Switch the input focus to the Shell window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1810"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1819"/>
+        <source>&amp;File-Browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1825"/>
+        <source>Switch the input focus to the File-Browser window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1827"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1836"/>
+        <source>Lo&amp;g-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1842"/>
+        <source>Switch the input focus to the Log-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1844"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
+        <location filename="../UI/UserInterface.py" line="1854"/>
         <source>&amp;Task-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1826"/>
-        <source>Switch the input focus to the Task-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
-        <source>Templ&amp;ate-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1845"/>
-        <source>Switch the input focus to the Template-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1847"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
-        <source>&amp;Left Toolbox</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1860"/>
-        <source>Toggle the Left Toolbox window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1861"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1869"/>
-        <source>&amp;Right Toolbox</source>
+        <source>Switch the input focus to the Task-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1873"/>
+        <source>Templ&amp;ate-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1879"/>
+        <source>Switch the input focus to the Template-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1881"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1891"/>
+        <source>&amp;Left Toolbox</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1894"/>
+        <source>Toggle the Left Toolbox window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1895"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1903"/>
+        <source>&amp;Right Toolbox</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1907"/>
         <source>Toggle the Right Toolbox window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1874"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1909"/>
+        <location filename="../UI/UserInterface.py" line="1943"/>
         <source>Right Sidebar</source>
         <translation type="unfinished">Barra laterale destra</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1909"/>
+        <location filename="../UI/UserInterface.py" line="1943"/>
         <source>&amp;Right Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1913"/>
+        <location filename="../UI/UserInterface.py" line="1947"/>
         <source>Toggle the right sidebar window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1915"/>
+        <location filename="../UI/UserInterface.py" line="1949"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Cooperation-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Co&amp;operation-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1944"/>
+        <location filename="../UI/UserInterface.py" line="1978"/>
         <source>Switch the input focus to the Cooperation-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1946"/>
+        <location filename="../UI/UserInterface.py" line="1980"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>Symbols-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>S&amp;ymbols-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1981"/>
+        <location filename="../UI/UserInterface.py" line="2015"/>
         <source>Switch the input focus to the Symbols-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1983"/>
+        <location filename="../UI/UserInterface.py" line="2017"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Numbers-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Num&amp;bers-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2000"/>
+        <location filename="../UI/UserInterface.py" line="2034"/>
         <source>Switch the input focus to the Numbers-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2002"/>
+        <location filename="../UI/UserInterface.py" line="2036"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3141"/>
+        <location filename="../UI/UserInterface.py" line="3175"/>
         <source>&amp;Windows</source>
         <translation type="unfinished">&amp;Finestre</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1828"/>
+        <location filename="../UI/UserInterface.py" line="1862"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>IRC</source>
         <translation type="unfinished">IRC</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>&amp;IRC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1963"/>
+        <location filename="../UI/UserInterface.py" line="1997"/>
         <source>Switch the input focus to the IRC window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1965"/>
+        <location filename="../UI/UserInterface.py" line="1999"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2309"/>
+        <location filename="../UI/UserInterface.py" line="2343"/>
         <source>Qt-Designer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2309"/>
+        <location filename="../UI/UserInterface.py" line="2343"/>
         <source>Qt-&amp;Designer...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2314"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Start Qt-Designer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2315"/>
+        <location filename="../UI/UserInterface.py" line="2349"/>
         <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2335"/>
+        <location filename="../UI/UserInterface.py" line="2369"/>
         <source>Qt-Linguist</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2335"/>
+        <location filename="../UI/UserInterface.py" line="2369"/>
         <source>Qt-&amp;Linguist...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2340"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Start Qt-Linguist</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2341"/>
+        <location filename="../UI/UserInterface.py" line="2375"/>
         <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2831"/>
+        <location filename="../UI/UserInterface.py" line="2865"/>
         <source>Qt5 Documentation</source>
         <translation type="unfinished">Documentazione Qt4 {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2831"/>
+        <location filename="../UI/UserInterface.py" line="2865"/>
         <source>Qt&amp;5 Documentation</source>
         <translation type="unfinished">Documentazione Qt&amp;4 {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2835"/>
+        <location filename="../UI/UserInterface.py" line="2869"/>
         <source>Open Qt5 Documentation</source>
         <translation type="unfinished">Apri documentazione su Qt4 {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2639"/>
+        <location filename="../UI/UserInterface.py" line="2673"/>
         <source>Manage SSL Certificates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2639"/>
+        <location filename="../UI/UserInterface.py" line="2673"/>
         <source>Manage SSL Certificates...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2644"/>
+        <location filename="../UI/UserInterface.py" line="2678"/>
         <source>Manage the saved SSL certificates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2646"/>
+        <location filename="../UI/UserInterface.py" line="2680"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2655"/>
+        <location filename="../UI/UserInterface.py" line="2689"/>
         <source>Edit Message Filters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2655"/>
+        <location filename="../UI/UserInterface.py" line="2689"/>
         <source>Edit Message Filters...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2660"/>
+        <location filename="../UI/UserInterface.py" line="2694"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2662"/>
+        <location filename="../UI/UserInterface.py" line="2696"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2846"/>
+        <location filename="../UI/UserInterface.py" line="2880"/>
         <source>PyQt5 Documentation</source>
         <translation type="unfinished">Documentazione PyQt4 {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2846"/>
+        <location filename="../UI/UserInterface.py" line="2880"/>
         <source>PyQt&amp;5 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2850"/>
+        <location filename="../UI/UserInterface.py" line="2884"/>
         <source>Open PyQt5 Documentation</source>
         <translation type="unfinished">Apri documentazione su PyQt4 {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5687"/>
+        <location filename="../UI/UserInterface.py" line="5721"/>
         <source>&lt;p&gt;The PyQt5 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;L&apos;inizio della documentazione di PyQt4 non è stato configurato.&lt;/p&gt; {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2873"/>
+        <location filename="../UI/UserInterface.py" line="2907"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6989"/>
+        <location filename="../UI/UserInterface.py" line="7023"/>
         <source>%v/%m</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2174"/>
+        <location filename="../UI/UserInterface.py" line="2208"/>
         <source>Show Error Log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2170"/>
+        <location filename="../UI/UserInterface.py" line="2204"/>
         <source>Show Error &amp;Log...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2175"/>
+        <location filename="../UI/UserInterface.py" line="2209"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6993"/>
+        <location filename="../UI/UserInterface.py" line="7027"/>
         <source>Version Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1668"/>
+        <location filename="../UI/UserInterface.py" line="1702"/>
         <source>Open a new eric6 instance</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1670"/>
+        <location filename="../UI/UserInterface.py" line="1704"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric6 IDE.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2113"/>
+        <location filename="../UI/UserInterface.py" line="2147"/>
         <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric6 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 search in the Qt help collection.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Visualizza il browser web di eric6. Questa finestra mostra file di help HTML e della documentazione Qt. Ha la capacitaà di navigare nei link, impostare segnalibri, stampare l&apos;help visualizzato e alcune altre funzionalità. E&apos; possibile usarlo anche per internet&lt;/p&gt;&lt;p&gt;Se invocato con una parola selezionata, questa parola viene cercata nella documetazione Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2148"/>
+        <location filename="../UI/UserInterface.py" line="2182"/>
         <source>&lt;b&gt;Check for Updates...&lt;/b&gt;&lt;p&gt;Checks the internet for updates of eric6.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Controlla per Update...&lt;/b&gt;&lt;p&gt;Controlla su internet per aggiornamenti di eric6.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2161"/>
+        <location filename="../UI/UserInterface.py" line="2195"/>
         <source>&lt;b&gt;Show downloadable versions...&lt;/b&gt;&lt;p&gt;Shows the eric6 versions available for download from the internet.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Mostra versioni scaricabili...&lt;/b&gt;&lt;p&gt;Mostra le versioni di eric6 disponibili per il download.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2445"/>
+        <location filename="../UI/UserInterface.py" line="2479"/>
         <source>eric6 Web Browser</source>
         <translation type="unfinished">Web Browser di eric6</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2445"/>
+        <location filename="../UI/UserInterface.py" line="2479"/>
         <source>eric6 &amp;Web Browser...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2450"/>
+        <location filename="../UI/UserInterface.py" line="2484"/>
         <source>Start the eric6 Web Browser</source>
         <translation type="unfinished">Avvia il Browser Web di eric6</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2452"/>
+        <location filename="../UI/UserInterface.py" line="2486"/>
         <source>&lt;b&gt;eric6 Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric6 Web Browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2466"/>
+        <location filename="../UI/UserInterface.py" line="2500"/>
         <source>Start the eric6 Icon Editor</source>
         <translation type="unfinished">Avvia l&apos;editor di icone di eric6</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2468"/>
+        <location filename="../UI/UserInterface.py" line="2502"/>
         <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Icon Editor for editing simple icons.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Editor di icone&lt;/b&gt;&lt;p&gt;Avvia l&apos;editor di icone di eric6 per modificare delle icone semplici.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2554"/>
+        <location filename="../UI/UserInterface.py" line="2588"/>
         <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 eric6.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Mostra tool esterni&lt;/b&gt;&lt;p&gt;Mostra un dialogo con percorso e versione di tutti i tool esterni usati da eric6.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2895"/>
+        <location filename="../UI/UserInterface.py" line="2929"/>
         <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 eric6 installation directory.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Documentazione API Eric&lt;/b&gt;&lt;p&gt;Mostra la documentazione delle API di Eric. La posizione della documentazione è la subdirectory Documentation/Source della directory in cui è installato eric6.&lt;/p&gt;</translation>
     </message>
@@ -82018,393 +82038,393 @@
         <translation type="obsolete">Le Qt v.3 non sono supportate da eric6.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7156"/>
+        <location filename="../UI/UserInterface.py" line="7190"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric6 is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation type="unfinished">L&apos;update alla versione &lt;b&gt;{0}&lt;/b&gt; di eric6 è disponibile presso &lt;b&gt;{1}&lt;/b&gt;. Vuoi prenderlo?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7168"/>
+        <location filename="../UI/UserInterface.py" line="7202"/>
         <source>Eric6 is up to date</source>
         <translation type="unfinished">Eric6 è aggiornato</translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="7202"/>
+        <source>You are using the latest version of eric6</source>
+        <translation type="unfinished">Stai usando l&apos;ultima versione di eric6</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7285"/>
+        <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
+        <translation type="unfinished">eric6 non è ancora stato configurato. Il dialogo di configurazione verrà avviato.</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="673"/>
+        <source>Generating Plugins Toolbars...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4155"/>
+        <source>&amp;User Tools</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4227"/>
+        <source>No User Tools Configured</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7043"/>
+        <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2464"/>
+        <source>Hex Editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2464"/>
+        <source>&amp;Hex Editor...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2469"/>
+        <source>Start the eric6 Hex Editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2471"/>
+        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2712"/>
+        <source>Clear private data</source>
+        <translation type="unfinished">Pulisci dati privati</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2714"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1670"/>
+        <source>Save session...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1675"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6592"/>
+        <source>Load session</source>
+        <translation type="unfinished">Carica sessione</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1683"/>
+        <source>Load session...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1688"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6592"/>
+        <source>eric6 Session Files (*.e5s)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6643"/>
+        <source>Crash Session found!</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6643"/>
+        <source>A session file of a crashed session was found. Shall this session be restored?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="676"/>
+        <source>Cleaning Plugins Download Area...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="668"/>
+        <source>Initializing Plugins...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7178"/>
+        <source>Update Check</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7178"/>
+        <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="7168"/>
-        <source>You are using the latest version of eric6</source>
-        <translation type="unfinished">Stai usando l&apos;ultima versione di eric6</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7251"/>
-        <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
-        <translation type="unfinished">eric6 non è ancora stato configurato. Il dialogo di configurazione verrà avviato.</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="672"/>
-        <source>Generating Plugins Toolbars...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4121"/>
-        <source>&amp;User Tools</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4193"/>
-        <source>No User Tools Configured</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7009"/>
-        <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2430"/>
-        <source>Hex Editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2430"/>
-        <source>&amp;Hex Editor...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2435"/>
-        <source>Start the eric6 Hex Editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2437"/>
-        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2678"/>
-        <source>Clear private data</source>
-        <translation type="unfinished">Pulisci dati privati</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2680"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1636"/>
-        <source>Save session...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1641"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6558"/>
-        <source>Load session</source>
-        <translation type="unfinished">Carica sessione</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
-        <source>Load session...</source>
+        <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2047"/>
+        <source>Code Documentation Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2870"/>
+        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2886"/>
+        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2944"/>
+        <source>PySide2 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2944"/>
+        <source>PySide&amp;2 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2948"/>
+        <source>Open PySide2 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2950"/>
+        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5826"/>
+        <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2820"/>
+        <source>Virtualenv Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2814"/>
+        <source>&amp;Virtualenv Manager...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2822"/>
+        <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2837"/>
+        <source>Virtualenv Configurator</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2831"/>
+        <source>Virtualenv &amp;Configurator...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2839"/>
+        <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3182"/>
+        <source>Left Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3194"/>
+        <source>Bottom Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3201"/>
+        <source>Right Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3221"/>
+        <source>Plug-ins</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1654"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6558"/>
-        <source>eric6 Session Files (*.e5s)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6609"/>
-        <source>Crash Session found!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6609"/>
-        <source>A session file of a crashed session was found. Shall this session be restored?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="675"/>
-        <source>Cleaning Plugins Download Area...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="667"/>
-        <source>Initializing Plugins...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7144"/>
-        <source>Update Check</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7144"/>
-        <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7134"/>
-        <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2013"/>
-        <source>Code Documentation Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2836"/>
-        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2852"/>
-        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2910"/>
-        <source>PySide2 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2910"/>
-        <source>PySide&amp;2 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2914"/>
-        <source>Open PySide2 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2916"/>
-        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5792"/>
-        <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2786"/>
-        <source>Virtualenv Manager</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2780"/>
-        <source>&amp;Virtualenv Manager...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2788"/>
-        <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2803"/>
-        <source>Virtualenv Configurator</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2797"/>
-        <source>Virtualenv &amp;Configurator...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2805"/>
-        <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3148"/>
-        <source>Left Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3160"/>
-        <source>Bottom Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3167"/>
-        <source>Right Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3187"/>
-        <source>Plug-ins</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1620"/>
         <source>Restart</source>
         <translation type="unfinished">Riavvio</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1620"/>
+        <location filename="../UI/UserInterface.py" line="1654"/>
         <source>Ctrl+Shift+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1626"/>
+        <location filename="../UI/UserInterface.py" line="1660"/>
         <source>Restart the IDE</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1627"/>
+        <location filename="../UI/UserInterface.py" line="1661"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5966"/>
+        <location filename="../UI/UserInterface.py" line="6000"/>
         <source>Start Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5905"/>
+        <location filename="../UI/UserInterface.py" line="5939"/>
         <source>The eric6 web browser could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5966"/>
+        <location filename="../UI/UserInterface.py" line="6000"/>
         <source>&lt;p&gt;The eric6 web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
+        <location filename="../UI/UserInterface.py" line="2085"/>
         <source>Conda</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2033"/>
+        <location filename="../UI/UserInterface.py" line="2067"/>
         <source>PyPI</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3498"/>
+        <location filename="../UI/UserInterface.py" line="3532"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2069"/>
+        <location filename="../UI/UserInterface.py" line="2103"/>
         <source>MicroPython</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>Ctrl+Alt+Shift+I</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2013"/>
+        <location filename="../UI/UserInterface.py" line="2047"/>
         <source>Ctrl+Alt+Shift+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2019"/>
+        <location filename="../UI/UserInterface.py" line="2053"/>
         <source>Switch the input focus to the Code Documentation Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2022"/>
+        <location filename="../UI/UserInterface.py" line="2056"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2033"/>
+        <location filename="../UI/UserInterface.py" line="2067"/>
         <source>Ctrl+Alt+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2039"/>
+        <location filename="../UI/UserInterface.py" line="2073"/>
         <source>Switch the input focus to the PyPI window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2041"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
-        <source>Ctrl+Alt+Shift+C</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2057"/>
-        <source>Switch the input focus to the Conda window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2059"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2069"/>
-        <source>Ctrl+Alt+Shift+M</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2075"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2085"/>
+        <source>Ctrl+Alt+Shift+C</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2091"/>
+        <source>Switch the input focus to the Conda window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2093"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2103"/>
+        <source>Ctrl+Alt+Shift+M</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2109"/>
         <source>Switch the input focus to the MicroPython window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2077"/>
+        <location filename="../UI/UserInterface.py" line="2111"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3145"/>
+        <location filename="../UI/UserInterface.py" line="3179"/>
         <source>Central Park</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3672"/>
+        <location filename="../UI/UserInterface.py" line="3706"/>
         <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="5009"/>
+        <location filename="../UI/UserInterface.py" line="5043"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5079"/>
+        <location filename="../UI/UserInterface.py" line="5113"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5123"/>
+        <location filename="../UI/UserInterface.py" line="5157"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2182"/>
+        <location filename="../UI/UserInterface.py" line="2216"/>
         <source>Show Install Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2182"/>
+        <location filename="../UI/UserInterface.py" line="2216"/>
         <source>Show Install &amp;Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2186"/>
+        <location filename="../UI/UserInterface.py" line="2220"/>
         <source>Show Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2188"/>
+        <location filename="../UI/UserInterface.py" line="2222"/>
         <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"></translation>
     </message>
@@ -86860,6 +86880,21 @@
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="744"/>
+        <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the shell window. A dialog is shown to enter the search text and options for the search.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="765"/>
+        <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="786"/>
+        <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
@@ -87327,32 +87362,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="323"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="333"/>
         <source>&lt;virtualenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="341"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="351"/>
         <source>&lt;No suitable virtualenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="343"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="353"/>
         <source>virtualenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="377"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="387"/>
         <source>&lt;pyvenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="397"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="407"/>
         <source>&lt;No suitable pyvenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="399"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="409"/>
         <source>pyvenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -87487,7 +87522,7 @@
         <translation type="unfinished">File Testo(*.txt);;Tutti i file (*)</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="411"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="421"/>
         <source>conda Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
--- a/eric6/i18n/eric6_pt.ts	Wed Nov 11 17:51:36 2020 +0100
+++ b/eric6/i18n/eric6_pt.ts	Sat Nov 14 11:50:43 2020 +0100
@@ -42330,52 +42330,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="71"/>
+        <location filename="../UI/InstallInfoDialog.py" line="70"/>
         <source>Yes</source>
         <translation type="unfinished">Sim</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="71"/>
+        <location filename="../UI/InstallInfoDialog.py" line="70"/>
         <source>No</source>
         <translation type="unfinished">Não</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="75"/>
+        <location filename="../UI/InstallInfoDialog.py" line="74"/>
         <source>&apos;eric-ide&apos; was installed from PyPI using the pip command.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="81"/>
+        <location filename="../UI/InstallInfoDialog.py" line="80"/>
         <source>The information shown in this dialog was guessed at the first start of eric.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="99"/>
+        <location filename="../UI/InstallInfoDialog.py" line="98"/>
         <source>Load Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="99"/>
+        <location filename="../UI/InstallInfoDialog.py" line="98"/>
         <source>&lt;p&gt;The file containing the install information could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="151"/>
+        <location filename="../UI/InstallInfoDialog.py" line="150"/>
         <source>Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="151"/>
+        <location filename="../UI/InstallInfoDialog.py" line="150"/>
         <source>The install information was edited. Unsaved changes will be lost. Save first?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="188"/>
+        <location filename="../UI/InstallInfoDialog.py" line="187"/>
         <source>Save Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="188"/>
+        <location filename="../UI/InstallInfoDialog.py" line="187"/>
         <source>&lt;p&gt;The file containing the install information could not be written.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -42385,17 +42385,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="61"/>
+        <location filename="../UI/InstallInfoDialog.py" line="60"/>
         <source>Installed as Administrator:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="63"/>
+        <location filename="../UI/InstallInfoDialog.py" line="62"/>
         <source>Installed with sudo:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="93"/>
+        <location filename="../UI/InstallInfoDialog.py" line="92"/>
         <source>unknown</source>
         <translation type="unfinished">desconhecido</translation>
     </message>
@@ -42405,32 +42405,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="87"/>
+        <location filename="../UI/InstallInfoDialog.py" line="86"/>
         <source>The installation information was provided by the user.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="39"/>
+        <location filename="../UI/InstallInfoDialog.py" line="38"/>
         <source>Delete Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="255"/>
+        <location filename="../UI/InstallInfoDialog.py" line="254"/>
         <source>Upgrade Instructions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="201"/>
+        <location filename="../UI/InstallInfoDialog.py" line="200"/>
         <source>Delete Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="201"/>
+        <location filename="../UI/InstallInfoDialog.py" line="200"/>
         <source>Do you really want to delete the installation information? It will be recreated at the next start.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="228"/>
+        <location filename="../UI/InstallInfoDialog.py" line="227"/>
         <source>Perform the following step(s) with Administrator privileges.
 </source>
         <translation type="unfinished"></translation>
@@ -52156,12 +52156,12 @@
         <translation type="unfinished">Erros</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="143"/>
+        <location filename="../PipInterface/PipDialog.py" line="146"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="143"/>
+        <location filename="../PipInterface/PipDialog.py" line="146"/>
         <source>The process {0} could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52878,7 +52878,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="910"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="911"/>
         <source>Search PyPI</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52898,102 +52898,102 @@
         <translation type="unfinished">Erro: {0}</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="872"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="873"/>
         <source>Show Package Details</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="872"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="873"/>
         <source>Select the package version:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="910"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="911"/>
         <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="926"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="927"/>
         <source>Install Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="929"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="930"/>
         <source>Install Pip to User-Site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="932"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="933"/>
         <source>Repair Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1046"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1050"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="939"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="940"/>
         <source>Install Local Package</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="943"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
         <source>Install Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="946"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="947"/>
         <source>Uninstall Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="949"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="950"/>
         <source>Generate Requirements...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="967"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="968"/>
         <source>Edit User Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="970"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="971"/>
         <source>Edit Environment Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="975"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="976"/>
         <source>Configure...</source>
         <translation type="unfinished">Configurar...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1158"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1166"/>
         <source>Edit Configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1158"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1166"/>
         <source>No valid configuration path determined. Aborting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="953"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="954"/>
         <source>Show Cache Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="956"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="957"/>
         <source>Show Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="960"/>
         <source>Remove Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="962"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="963"/>
         <source>Purge Cache...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -66154,231 +66154,251 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="242"/>
-        <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected language.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="249"/>
+        <location filename="../QScintilla/ShellWindow.py" line="250"/>
         <source>Restart and Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="254"/>
+        <location filename="../QScintilla/ShellWindow.py" line="255"/>
         <source>Clear the window and restart the shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="256"/>
-        <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected language.&lt;/p&gt;</source>
+        <location filename="../QScintilla/ShellWindow.py" line="885"/>
+        <source>Show History</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="885"/>
+        <source>&amp;Show History...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="891"/>
-        <source>Show History</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="891"/>
-        <source>&amp;Show History...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="897"/>
         <source>Show the shell history in a dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="895"/>
+        <source>Clear History</source>
+        <translation type="unfinished">Limpar Histórico</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="895"/>
+        <source>&amp;Clear History...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="901"/>
-        <source>Clear History</source>
-        <translation type="unfinished">Limpar Histórico</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="901"/>
-        <source>&amp;Clear History...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="907"/>
         <source>Clear the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="911"/>
+        <location filename="../QScintilla/ShellWindow.py" line="905"/>
         <source>Select History Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="911"/>
+        <location filename="../QScintilla/ShellWindow.py" line="905"/>
         <source>Select History &amp;Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="916"/>
+        <location filename="../QScintilla/ShellWindow.py" line="910"/>
         <source>Select an entry of the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="924"/>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
         <source>About</source>
         <translation type="unfinished">Acerca</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
+        <source>&amp;About</source>
+        <translation type="unfinished">A&amp;cerca</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="922"/>
+        <source>Display information about this software</source>
+        <translation type="unfinished">Mostra a informação acerca deste software</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="924"/>
-        <source>&amp;About</source>
-        <translation type="unfinished">A&amp;cerca</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="928"/>
-        <source>Display information about this software</source>
-        <translation type="unfinished">Mostra a informação acerca deste software</translation>
+        <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
+        <translation type="unfinished">&lt;b&gt;Acerca&lt;/b&gt;&lt;p&gt;Mostra alguma informação acerca deste software.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="930"/>
-        <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
-        <translation type="unfinished">&lt;b&gt;Acerca&lt;/b&gt;&lt;p&gt;Mostra alguma informação acerca deste software.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="936"/>
         <source>About Qt</source>
         <translation type="unfinished">Acerca de Qt</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="930"/>
+        <source>About &amp;Qt</source>
+        <translation type="unfinished">Acerca de &amp;Qt</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <source>Display information about the Qt toolkit</source>
+        <translation type="unfinished">Mostra informação acerca das Ferramentas de Qt</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="936"/>
-        <source>About &amp;Qt</source>
-        <translation type="unfinished">Acerca de &amp;Qt</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="940"/>
-        <source>Display information about the Qt toolkit</source>
-        <translation type="unfinished">Mostra informação acerca das Ferramentas de Qt</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="942"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Acerca de Qt&lt;/b&gt;&lt;p&gt;Mostra alguma informação acerca das Ferramentas de Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished">Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="955"/>
+        <location filename="../QScintilla/ShellWindow.py" line="949"/>
         <source>Context sensitive help</source>
         <translation type="unfinished">Ajuda sensível ao contexto</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="956"/>
+        <location filename="../QScintilla/ShellWindow.py" line="950"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;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 &apos;Que é Isto?&apos; 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="../QScintilla/ShellWindow.py" line="1100"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1094"/>
         <source>About eric6 Shell Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1100"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1094"/>
         <source>The eric6 Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1128"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1122"/>
         <source>&amp;File</source>
         <translation type="unfinished">&amp;Ficheiro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1137"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1131"/>
         <source>&amp;Edit</source>
         <translation type="unfinished">&amp;Editar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1148"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1142"/>
         <source>&amp;View</source>
         <translation type="unfinished">&amp;Vista</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1155"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1149"/>
         <source>Histor&amp;y</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1156"/>
+        <source>&amp;Start</source>
+        <translation type="unfinished">&amp;Iniciar</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1162"/>
-        <source>&amp;Start</source>
-        <translation type="unfinished">&amp;Iniciar</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1168"/>
         <source>&amp;Help</source>
         <translation type="unfinished">&amp;Ajuda</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1201"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1195"/>
         <source>File</source>
         <translation type="unfinished">Ficheiro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1210"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1204"/>
         <source>Edit</source>
         <translation type="unfinished">Editar</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1211"/>
+        <source>Find</source>
+        <translation type="unfinished">Encontrar</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1217"/>
-        <source>Find</source>
-        <translation type="unfinished">Encontrar</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1223"/>
         <source>View</source>
         <translation type="unfinished">Vista</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1224"/>
+        <source>History</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1230"/>
-        <source>History</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1236"/>
         <source>Help</source>
         <translation type="unfinished">Ajuda</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1257"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1251"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="585"/>
+        <location filename="../QScintilla/ShellWindow.py" line="579"/>
         <source>Move forward one history entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="595"/>
+        <location filename="../QScintilla/ShellWindow.py" line="589"/>
         <source>Move back one history entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1036"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1030"/>
         <source>eric6 Shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1034"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1028"/>
         <source>eric6 Shell [{0}]</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="242"/>
+        <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected environment.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="257"/>
+        <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected environment.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="284"/>
+        <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text to the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="302"/>
+        <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="320"/>
+        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="337"/>
+        <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>Shelve</name>
@@ -78669,948 +78689,948 @@
 <context>
     <name>UserInterface</name>
     <message>
-        <location filename="../UI/UserInterface.py" line="270"/>
+        <location filename="../UI/UserInterface.py" line="271"/>
         <source>Initializing Plugin Manager...</source>
         <translation>A iniciar Gestor de Complementos...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="277"/>
+        <location filename="../UI/UserInterface.py" line="278"/>
         <source>Generating Main User Interface...</source>
         <translation>A criar Interface Principal de Usuário...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="327"/>
+        <location filename="../UI/UserInterface.py" line="328"/>
         <source>Setting up connections...</source>
         <translation>A definir coneções...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="584"/>
+        <location filename="../UI/UserInterface.py" line="585"/>
         <source>Initializing Tools...</source>
         <translation>A iniciar Ferramentas...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="594"/>
+        <location filename="../UI/UserInterface.py" line="595"/>
         <source>Registering Objects...</source>
         <translation>A registar Objetos...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="627"/>
+        <location filename="../UI/UserInterface.py" line="628"/>
         <source>Initializing Actions...</source>
         <translation>A iniciar Ações...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="629"/>
+        <location filename="../UI/UserInterface.py" line="630"/>
         <source>Initializing Menus...</source>
         <translation>A iniciar Menús...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="631"/>
+        <location filename="../UI/UserInterface.py" line="632"/>
         <source>Initializing Toolbars...</source>
         <translation>A iniciar Barras de Ferramentas...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="633"/>
+        <location filename="../UI/UserInterface.py" line="634"/>
         <source>Initializing Statusbar...</source>
         <translation>A iniciar Barra de Estado...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="660"/>
+        <location filename="../UI/UserInterface.py" line="661"/>
         <source>Initializing Single Application Server...</source>
         <translation>A iniciar Servidor de Aplicação Única...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="670"/>
+        <location filename="../UI/UserInterface.py" line="671"/>
         <source>Activating Plugins...</source>
         <translation>A ativar Complementos...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="686"/>
+        <location filename="../UI/UserInterface.py" line="687"/>
         <source>Restoring Toolbarmanager...</source>
         <translation>A restaurar Gestor da Barra de Ferramentas...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1715"/>
+        <location filename="../UI/UserInterface.py" line="1749"/>
         <source>Project-Viewer</source>
         <translation>Visor de Projeto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1732"/>
+        <location filename="../UI/UserInterface.py" line="1766"/>
         <source>Multiproject-Viewer</source>
         <translation>Visor de Multiprojeto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1784"/>
         <source>Debug-Viewer</source>
         <translation>Visor de Depuração</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1122"/>
+        <location filename="../UI/UserInterface.py" line="1123"/>
         <source>Cooperation</source>
         <translation>Colaboração</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1178"/>
+        <location filename="../UI/UserInterface.py" line="1179"/>
         <source>Symbols</source>
         <translation>Símbolos</translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="1836"/>
+        <source>Log-Viewer</source>
+        <translation>Visor de Registos</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1854"/>
+        <source>Task-Viewer</source>
+        <translation>Visor de Tarefas</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1873"/>
+        <source>Template-Viewer</source>
+        <translation>Visor de Modelos</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1188"/>
+        <source>Numbers</source>
+        <translation>Números</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1819"/>
+        <source>File-Browser</source>
+        <translation>Navegador de Ficheiros</translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="1802"/>
-        <source>Log-Viewer</source>
-        <translation>Visor de Registos</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
-        <source>Task-Viewer</source>
-        <translation>Visor de Tarefas</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
-        <source>Template-Viewer</source>
-        <translation>Visor de Modelos</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1187"/>
-        <source>Numbers</source>
-        <translation>Números</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
-        <source>File-Browser</source>
-        <translation>Navegador de Ficheiros</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
         <source>Shell</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1882"/>
+        <location filename="../UI/UserInterface.py" line="1916"/>
         <source>Horizontal Toolbox</source>
         <translation>Caixa de Ferramentas Horizontal</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1569"/>
-        <source>{0} - Passive Mode</source>
-        <translation>{0} - Modo Passivo</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1576"/>
-        <source>{0} - {1} - Passive Mode</source>
-        <translation>{0} - {1} - Modo Passivo</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1580"/>
-        <source>{0} - {1} - {2} - Passive Mode</source>
-        <translation>{0} - {1} - {2} - Modo Passivo</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1603"/>
-        <source>Quit</source>
-        <translation>Sair</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1603"/>
-        <source>&amp;Quit</source>
-        <translation>Sai&amp;r</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1603"/>
-        <source>Ctrl+Q</source>
-        <comment>File|Quit</comment>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1609"/>
-        <source>Quit the IDE</source>
-        <translation>Sair do IDE</translation>
+        <source>{0} - Passive Mode</source>
+        <translation>{0} - Modo Passivo</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1610"/>
+        <source>{0} - {1} - Passive Mode</source>
+        <translation>{0} - {1} - Modo Passivo</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1614"/>
+        <source>{0} - {1} - {2} - Passive Mode</source>
+        <translation>{0} - {1} - {2} - Modo Passivo</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1637"/>
+        <source>Quit</source>
+        <translation>Sair</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1637"/>
+        <source>&amp;Quit</source>
+        <translation>Sai&amp;r</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1637"/>
+        <source>Ctrl+Q</source>
+        <comment>File|Quit</comment>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1643"/>
+        <source>Quit the IDE</source>
+        <translation>Sair do IDE</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1644"/>
         <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="1681"/>
-        <source>Edit Profile</source>
-        <translation>Perfil de Edição</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1687"/>
-        <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="1689"/>
-        <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Perfil de Edição&lt;/b&gt;&lt;p&gt;Activa o &quot;Perfil da Vista de Edição&quot;. As janelas a serem mostradas, se este perfil está activado, podem ser configuradas com a caixa de diálogo &quot;Configuração de Vista do Perfil&quot;&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1698"/>
-        <source>Debug Profile</source>
-        <translation>Perfil de Depuração</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1704"/>
-        <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="1706"/>
-        <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Perfil de Depuração&lt;/b&gt;&lt;p&gt;Activa o &quot;Perfile da Vista de Depuração&quot;. As janelas a serem mostradas, se este perfil está activado, podem ser configuradas com a caixa de diálogo &quot;Configuração de Vista do Perfil&quot;&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1715"/>
-        <source>&amp;Project-Viewer</source>
-        <translation>Visor de &amp;Projeto</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1715"/>
-        <source>Alt+Shift+P</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1732"/>
-        <source>&amp;Multiproject-Viewer</source>
-        <translation>Visor de &amp;Multiprojeto</translation>
+        <source>Edit Profile</source>
+        <translation>Perfil de Edição</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1721"/>
+        <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="1723"/>
+        <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Perfil de Edição&lt;/b&gt;&lt;p&gt;Activa o &quot;Perfil da Vista de Edição&quot;. As janelas a serem mostradas, se este perfil está activado, podem ser configuradas com a caixa de diálogo &quot;Configuração de Vista do Perfil&quot;&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1732"/>
+        <source>Debug Profile</source>
+        <translation>Perfil de Depuração</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1738"/>
+        <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="1740"/>
+        <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Perfil de Depuração&lt;/b&gt;&lt;p&gt;Activa o &quot;Perfile da Vista de Depuração&quot;. As janelas a serem mostradas, se este perfil está activado, podem ser configuradas com a caixa de diálogo &quot;Configuração de Vista do Perfil&quot;&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1749"/>
+        <source>&amp;Project-Viewer</source>
+        <translation>Visor de &amp;Projeto</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1749"/>
+        <source>Alt+Shift+P</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1766"/>
+        <source>&amp;Multiproject-Viewer</source>
+        <translation>Visor de &amp;Multiprojeto</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1766"/>
         <source>Alt+Shift+M</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1784"/>
         <source>&amp;Debug-Viewer</source>
         <translation>Visor de &amp;Depuração</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1784"/>
         <source>Alt+Shift+D</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
+        <location filename="../UI/UserInterface.py" line="1802"/>
         <source>&amp;Shell</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
-        <source>Alt+Shift+S</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
-        <source>Alt+Shift+F</source>
-        <translation></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1802"/>
+        <source>Alt+Shift+S</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1819"/>
+        <source>Alt+Shift+F</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1836"/>
         <source>Alt+Shift+G</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
+        <location filename="../UI/UserInterface.py" line="1854"/>
         <source>Alt+Shift+T</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
+        <location filename="../UI/UserInterface.py" line="1873"/>
         <source>Alt+Shift+A</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1882"/>
+        <location filename="../UI/UserInterface.py" line="1916"/>
         <source>&amp;Horizontal Toolbox</source>
         <translation>Caixa de Ferramentas &amp;Horizontal</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1886"/>
+        <location filename="../UI/UserInterface.py" line="1920"/>
         <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="1888"/>
+        <location filename="../UI/UserInterface.py" line="1922"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1896"/>
+        <location filename="../UI/UserInterface.py" line="1930"/>
         <source>Left Sidebar</source>
         <translation>Barra Esquerda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1896"/>
+        <location filename="../UI/UserInterface.py" line="1930"/>
         <source>&amp;Left Sidebar</source>
         <translation>Barra Lateral &amp;Esquerda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1900"/>
+        <location filename="../UI/UserInterface.py" line="1934"/>
         <source>Toggle the left sidebar window</source>
         <translation>Alternar a janela da barra lateral esquerda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1901"/>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1923"/>
+        <location filename="../UI/UserInterface.py" line="1957"/>
         <source>Bottom Sidebar</source>
         <translation>Barra Inferior</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1923"/>
+        <location filename="../UI/UserInterface.py" line="1957"/>
         <source>&amp;Bottom Sidebar</source>
         <translation>Barra Lateral &amp;Inferior</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1927"/>
+        <location filename="../UI/UserInterface.py" line="1961"/>
         <source>Toggle the bottom sidebar window</source>
         <translation>Alternar janela da barra lateral inferior</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1929"/>
+        <location filename="../UI/UserInterface.py" line="1963"/>
         <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="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Alt+Shift+O</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>Alt+Shift+Y</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Alt+Shift+B</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>What&apos;s This?</source>
         <translation>O que é Isto?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>&amp;What&apos;s This?</source>
         <translation>O &amp;que é Isto?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>Shift+F1</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2093"/>
+        <location filename="../UI/UserInterface.py" line="2127"/>
         <source>Context sensitive help</source>
         <translation type="unfinished">Ajuda sensível ao contexto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2094"/>
+        <location filename="../UI/UserInterface.py" line="2128"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;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 &apos;Que é Isto?&apos; 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="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>Helpviewer</source>
         <translation>Visor de Ajuda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>&amp;Helpviewer...</source>
         <translation>Visor de &amp;Ajuda...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>F1</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2111"/>
+        <location filename="../UI/UserInterface.py" line="2145"/>
         <source>Open the helpviewer window</source>
         <translation>Abrir a janela do visor de ajuda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2131"/>
+        <location filename="../UI/UserInterface.py" line="2165"/>
         <source>Show Versions</source>
         <translation>Mostrar Versões</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2131"/>
+        <location filename="../UI/UserInterface.py" line="2165"/>
         <source>Show &amp;Versions</source>
         <translation>Mostrar &amp;Versões</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2135"/>
+        <location filename="../UI/UserInterface.py" line="2169"/>
         <source>Display version information</source>
         <translation>Mostrar a informação da versão</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2137"/>
+        <location filename="../UI/UserInterface.py" line="2171"/>
         <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2147"/>
+        <location filename="../UI/UserInterface.py" line="2181"/>
         <source>Check for Updates</source>
         <translation>Procurar Atualizações</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2144"/>
+        <location filename="../UI/UserInterface.py" line="2178"/>
         <source>Check for &amp;Updates...</source>
         <translation>Procurar &amp;Atualizações...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2155"/>
+        <location filename="../UI/UserInterface.py" line="2189"/>
         <source>Show downloadable versions</source>
         <translation>Mostrar versões descarregáveis</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2155"/>
+        <location filename="../UI/UserInterface.py" line="2189"/>
         <source>Show &amp;downloadable versions...</source>
         <translation>Mostrar versões &amp;descarregáveis...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2159"/>
+        <location filename="../UI/UserInterface.py" line="2193"/>
         <source>Show the versions available for download</source>
         <translation>Mostrar as versões disponíveis para descarregar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
+        <location filename="../UI/UserInterface.py" line="3779"/>
         <source>Report Bug</source>
         <translation>Reportar Falho</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2196"/>
+        <location filename="../UI/UserInterface.py" line="2230"/>
         <source>Report &amp;Bug...</source>
         <translation>Reportar &amp;Falho...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2200"/>
+        <location filename="../UI/UserInterface.py" line="2234"/>
         <source>Report a bug</source>
         <translation>Reportar um falho</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2201"/>
+        <location filename="../UI/UserInterface.py" line="2235"/>
         <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="2208"/>
+        <location filename="../UI/UserInterface.py" line="2242"/>
         <source>Request Feature</source>
         <translation>Solicitar Característica</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2208"/>
-        <source>Request &amp;Feature...</source>
-        <translation>Solicitar Ca&amp;racterística...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2212"/>
-        <source>Send a feature request</source>
-        <translation>Enviar uma solicitude de característica</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2214"/>
-        <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="3279"/>
-        <source>Unittest</source>
-        <translation>Teste Unitário</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2223"/>
-        <source>&amp;Unittest...</source>
-        <translation>Teste &amp;Unitário...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2228"/>
-        <source>Start unittest dialog</source>
-        <translation>Iniciar a caixa de diálogo de teste unitário</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2229"/>
-        <source>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Perform unit tests. The dialog gives you the ability to select and run a unittest suite.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
-        <source>Unittest Restart</source>
-        <translation>Reiniciar Teste Unitário</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
-        <source>&amp;Restart Unittest...</source>
-        <translation>&amp;Reiniciar Teste Unitário...</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2242"/>
+        <source>Request &amp;Feature...</source>
+        <translation>Solicitar Ca&amp;racterística...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2246"/>
+        <source>Send a feature request</source>
+        <translation>Enviar uma solicitude de característica</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2248"/>
+        <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="3313"/>
+        <source>Unittest</source>
+        <translation>Teste Unitário</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2257"/>
+        <source>&amp;Unittest...</source>
+        <translation>Teste &amp;Unitário...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2262"/>
+        <source>Start unittest dialog</source>
+        <translation>Iniciar a caixa de diálogo de teste unitário</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2263"/>
+        <source>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Perform unit tests. The dialog gives you the ability to select and run a unittest suite.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2271"/>
+        <source>Unittest Restart</source>
+        <translation>Reiniciar Teste Unitário</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2271"/>
+        <source>&amp;Restart Unittest...</source>
+        <translation>&amp;Reiniciar Teste Unitário...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>Restart last unittest</source>
         <translation>Reiniciar o último teste unitário</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2243"/>
+        <location filename="../UI/UserInterface.py" line="2277"/>
         <source>&lt;b&gt;Restart Unittest&lt;/b&gt;&lt;p&gt;Restart the unittest performed last.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2267"/>
+        <location filename="../UI/UserInterface.py" line="2301"/>
         <source>Unittest Script</source>
         <translation>Teste Unitário ao Script</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2267"/>
+        <location filename="../UI/UserInterface.py" line="2301"/>
         <source>Unittest &amp;Script...</source>
         <translation>Teste Unitário ao &amp;Script...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2272"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Run unittest with current script</source>
         <translation>Executar teste unitário com o script atual</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2274"/>
+        <location filename="../UI/UserInterface.py" line="2308"/>
         <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Teste Unitário ao Script&lt;/b&gt;&lt;p&gt;Executar teste unitário com o script atual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2282"/>
+        <location filename="../UI/UserInterface.py" line="2316"/>
         <source>Unittest Project</source>
         <translation>Teste Unitário ao Projeto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2282"/>
+        <location filename="../UI/UserInterface.py" line="2316"/>
         <source>Unittest &amp;Project...</source>
         <translation>Teste Unitário ao &amp;Projeto...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2287"/>
+        <location filename="../UI/UserInterface.py" line="2321"/>
         <source>Run unittest with current project</source>
         <translation>Executar teste unitário com o projeto atual</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2289"/>
+        <location filename="../UI/UserInterface.py" line="2323"/>
         <source>&lt;b&gt;Unittest Project&lt;/b&gt;&lt;p&gt;Run unittest with current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Teste Unitário ao Projeto&lt;/b&gt;&lt;p&gt;Executar teste unitário com o projeto atual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2350"/>
+        <location filename="../UI/UserInterface.py" line="2384"/>
         <source>UI Previewer</source>
         <translation>Antevisor de UI</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2350"/>
+        <location filename="../UI/UserInterface.py" line="2384"/>
         <source>&amp;UI Previewer...</source>
         <translation>Antevisor &amp;UI...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2355"/>
+        <location filename="../UI/UserInterface.py" line="2389"/>
         <source>Start the UI Previewer</source>
         <translation>Iniciar Antevisor de UI</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2356"/>
-        <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="2363"/>
-        <source>Translations Previewer</source>
-        <translation>Antevisor de Traduções</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2363"/>
-        <source>&amp;Translations Previewer...</source>
-        <translation>Antevisor de &amp;Traduções...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2368"/>
-        <source>Start the Translations Previewer</source>
-        <translation>Iniciar Antevisor de Traduções</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2370"/>
-        <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2377"/>
-        <source>Compare Files</source>
-        <translation>Comparar Ficheiros</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2377"/>
-        <source>&amp;Compare Files...</source>
-        <translation>&amp;Comparar Ficheiros...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2395"/>
-        <source>Compare two files</source>
-        <translation>Comparar dois ficheiros</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2383"/>
-        <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"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2390"/>
-        <source>Compare Files side by side</source>
-        <translation>Comparar Ficheiros lado-a-lado</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2396"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2404"/>
-        <source>SQL Browser</source>
-        <translation>Navegador SQL</translation>
+        <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="2397"/>
+        <source>Translations Previewer</source>
+        <translation>Antevisor de Traduções</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2397"/>
+        <source>&amp;Translations Previewer...</source>
+        <translation>Antevisor de &amp;Traduções...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2402"/>
+        <source>Start the Translations Previewer</source>
+        <translation>Iniciar Antevisor de Traduções</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2404"/>
-        <source>SQL &amp;Browser...</source>
-        <translation>Navegador S&amp;QL...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2409"/>
-        <source>Browse a SQL database</source>
-        <translation>Navegar numa base de dados SQL</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2410"/>
-        <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="2422"/>
-        <source>Mini Editor</source>
-        <translation>Mini Editor</translation>
+        <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2411"/>
+        <source>Compare Files</source>
+        <translation>Comparar Ficheiros</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2411"/>
+        <source>&amp;Compare Files...</source>
+        <translation>&amp;Comparar Ficheiros...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2429"/>
+        <source>Compare two files</source>
+        <translation>Comparar dois ficheiros</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2417"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2424"/>
+        <source>Compare Files side by side</source>
+        <translation>Comparar Ficheiros lado-a-lado</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2430"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2438"/>
+        <source>SQL Browser</source>
+        <translation>Navegador SQL</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2438"/>
+        <source>SQL &amp;Browser...</source>
+        <translation>Navegador S&amp;QL...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2443"/>
+        <source>Browse a SQL database</source>
+        <translation>Navegar numa base de dados SQL</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2444"/>
+        <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="2456"/>
+        <source>Mini Editor</source>
+        <translation>Mini Editor</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2451"/>
         <source>Mini &amp;Editor...</source>
         <translation>Mini &amp;Editor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2423"/>
+        <location filename="../UI/UserInterface.py" line="2457"/>
         <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="2461"/>
+        <location filename="../UI/UserInterface.py" line="2495"/>
         <source>Icon Editor</source>
         <translation>Editor de Ícones</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2461"/>
-        <source>&amp;Icon Editor...</source>
-        <translation>Editor de &amp;Ícones...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2490"/>
-        <source>Preferences</source>
-        <translation>Preferências</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2490"/>
-        <source>&amp;Preferences...</source>
-        <translation>&amp;Preferências...</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2495"/>
+        <source>&amp;Icon Editor...</source>
+        <translation>Editor de &amp;Ícones...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2524"/>
+        <source>Preferences</source>
+        <translation>Preferências</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2524"/>
+        <source>&amp;Preferences...</source>
+        <translation>&amp;Preferências...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2529"/>
         <source>Set the prefered configuration</source>
         <translation>Definir a configuração desejada</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2497"/>
+        <location filename="../UI/UserInterface.py" line="2531"/>
         <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="2506"/>
+        <location filename="../UI/UserInterface.py" line="2540"/>
         <source>Export Preferences</source>
         <translation>Exportar Preferências</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2506"/>
-        <source>E&amp;xport Preferences...</source>
-        <translation>E&amp;xportar Preferências...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2511"/>
-        <source>Export the current configuration</source>
-        <translation>Exportar a configuração atual</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2513"/>
-        <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="2520"/>
-        <source>Import Preferences</source>
-        <translation>Importar Preferências</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2520"/>
-        <source>I&amp;mport Preferences...</source>
-        <translation>&amp;Importar Preferências...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2525"/>
-        <source>Import a previously exported configuration</source>
-        <translation>Importar uma configuração exportada antes</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2527"/>
-        <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="2534"/>
-        <source>Reload APIs</source>
-        <translation>Recarregar APIs</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2534"/>
-        <source>Reload &amp;APIs</source>
-        <translation>Recarregar &amp;APIs</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2538"/>
-        <source>Reload the API information</source>
-        <translation>Recarregar a informação de API</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2540"/>
-        <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2552"/>
-        <source>Show external tools</source>
-        <translation>Mostrar ferramentas externas</translation>
+        <source>E&amp;xport Preferences...</source>
+        <translation>E&amp;xportar Preferências...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2545"/>
+        <source>Export the current configuration</source>
+        <translation>Exportar a configuração atual</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2547"/>
-        <source>Show external &amp;tools</source>
-        <translation>Mostrar &amp;ferramentas externas</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2563"/>
-        <source>View Profiles</source>
-        <translation>Perfiles de Vista</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2563"/>
-        <source>&amp;View Profiles...</source>
-        <translation>Perfiles de &amp;Vista...</translation>
+        <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="2554"/>
+        <source>Import Preferences</source>
+        <translation>Importar Preferências</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2554"/>
+        <source>I&amp;mport Preferences...</source>
+        <translation>&amp;Importar Preferências...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2559"/>
+        <source>Import a previously exported configuration</source>
+        <translation>Importar uma configuração exportada antes</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2561"/>
+        <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="2568"/>
-        <source>Configure view profiles</source>
-        <translation>Configurar perfiles de vista</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2570"/>
-        <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="2580"/>
-        <source>Toolbars</source>
-        <translation>Barras de Ferramentas</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2580"/>
-        <source>Tool&amp;bars...</source>
-        <translation>&amp;Barras de Ferramentas...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2585"/>
-        <source>Configure toolbars</source>
-        <translation>Configurar as barras de ferramentas</translation>
+        <source>Reload APIs</source>
+        <translation>Recarregar APIs</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2568"/>
+        <source>Reload &amp;APIs</source>
+        <translation>Recarregar &amp;APIs</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2572"/>
+        <source>Reload the API information</source>
+        <translation>Recarregar a informação de API</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2574"/>
+        <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2586"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2595"/>
-        <source>Keyboard Shortcuts</source>
-        <translation>Atalhos de Teclado</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2595"/>
-        <source>Keyboard &amp;Shortcuts...</source>
-        <translation>Atalho&amp;s de Teclado...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2600"/>
-        <source>Set the keyboard shortcuts</source>
-        <translation>Definir os atalhos de teclado</translation>
+        <source>Show external tools</source>
+        <translation>Mostrar ferramentas externas</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2581"/>
+        <source>Show external &amp;tools</source>
+        <translation>Mostrar &amp;ferramentas externas</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2597"/>
+        <source>View Profiles</source>
+        <translation>Perfiles de Vista</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2597"/>
+        <source>&amp;View Profiles...</source>
+        <translation>Perfiles de &amp;Vista...</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2602"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6217"/>
-        <source>Export Keyboard Shortcuts</source>
-        <translation>Exportar Atalhos de Teclado</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2610"/>
-        <source>&amp;Export Keyboard Shortcuts...</source>
-        <translation>&amp;Exportar Atalhos de Teclado...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2615"/>
-        <source>Export the keyboard shortcuts</source>
-        <translation>Exportar os Atalhos de Teclado</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2617"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6241"/>
-        <source>Import Keyboard Shortcuts</source>
-        <translation>Importar Atalhos de Teclado</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2624"/>
-        <source>&amp;Import Keyboard Shortcuts...</source>
-        <translation>&amp;Importar Atalhos de Teclado...</translation>
+        <source>Configure view profiles</source>
+        <translation>Configurar perfiles de vista</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2604"/>
+        <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="2614"/>
+        <source>Toolbars</source>
+        <translation>Barras de Ferramentas</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2614"/>
+        <source>Tool&amp;bars...</source>
+        <translation>&amp;Barras de Ferramentas...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2619"/>
+        <source>Configure toolbars</source>
+        <translation>Configurar as barras de ferramentas</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2620"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2629"/>
+        <source>Keyboard Shortcuts</source>
+        <translation>Atalhos de Teclado</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2629"/>
+        <source>Keyboard &amp;Shortcuts...</source>
+        <translation>Atalho&amp;s de Teclado...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2634"/>
+        <source>Set the keyboard shortcuts</source>
+        <translation>Definir os atalhos de teclado</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2636"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6251"/>
+        <source>Export Keyboard Shortcuts</source>
+        <translation>Exportar Atalhos de Teclado</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2644"/>
+        <source>&amp;Export Keyboard Shortcuts...</source>
+        <translation>&amp;Exportar Atalhos de Teclado...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2649"/>
+        <source>Export the keyboard shortcuts</source>
+        <translation>Exportar os Atalhos de Teclado</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2651"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6275"/>
+        <source>Import Keyboard Shortcuts</source>
+        <translation>Importar Atalhos de Teclado</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2658"/>
+        <source>&amp;Import Keyboard Shortcuts...</source>
+        <translation>&amp;Importar Atalhos de Teclado...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2663"/>
         <source>Import the keyboard shortcuts</source>
         <translation>Importar os atalhos de teclado</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2631"/>
+        <location filename="../UI/UserInterface.py" line="2665"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2689"/>
+        <location filename="../UI/UserInterface.py" line="2723"/>
         <source>Activate current editor</source>
         <translation>Ativar o editor atual</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2689"/>
+        <location filename="../UI/UserInterface.py" line="2723"/>
         <source>Alt+Shift+E</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2699"/>
+        <location filename="../UI/UserInterface.py" line="2733"/>
         <source>Show next</source>
         <translation>Mostrar próximo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2699"/>
+        <location filename="../UI/UserInterface.py" line="2733"/>
         <source>Ctrl+Alt+Tab</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2708"/>
+        <location filename="../UI/UserInterface.py" line="2742"/>
         <source>Show previous</source>
         <translation>Mostrar anterior</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2708"/>
+        <location filename="../UI/UserInterface.py" line="2742"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2717"/>
+        <location filename="../UI/UserInterface.py" line="2751"/>
         <source>Switch between tabs</source>
         <translation>Mudar entre separadores</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2717"/>
+        <location filename="../UI/UserInterface.py" line="2751"/>
         <source>Ctrl+1</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2726"/>
+        <location filename="../UI/UserInterface.py" line="2760"/>
         <source>Plugin Infos</source>
         <translation>Informação dos Complementos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2726"/>
+        <location filename="../UI/UserInterface.py" line="2760"/>
         <source>&amp;Plugin Infos...</source>
         <translation>Informação dos &amp;Complementos...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2730"/>
+        <location filename="../UI/UserInterface.py" line="2764"/>
         <source>Show Plugin Infos</source>
         <translation>Mostrar Informação dos Complementos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2731"/>
-        <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="2744"/>
-        <source>Install Plugins</source>
-        <translation>Instalar Complementos</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2739"/>
-        <source>&amp;Install Plugins...</source>
-        <translation>&amp;Instalar Complementos...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2745"/>
-        <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="2757"/>
-        <source>Uninstall Plugin</source>
-        <translation>Desinstalar Complemento</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2752"/>
-        <source>&amp;Uninstall Plugin...</source>
-        <translation>&amp;Desinstalar Complemento...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2758"/>
-        <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="2765"/>
+        <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="2778"/>
+        <source>Install Plugins</source>
+        <translation>Instalar Complementos</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2773"/>
+        <source>&amp;Install Plugins...</source>
+        <translation>&amp;Instalar Complementos...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2779"/>
+        <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="2791"/>
+        <source>Uninstall Plugin</source>
+        <translation>Desinstalar Complemento</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2786"/>
+        <source>&amp;Uninstall Plugin...</source>
+        <translation>&amp;Desinstalar Complemento...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2792"/>
+        <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="2799"/>
         <source>Plugin Repository</source>
         <translation>Repositório de Complementos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2765"/>
+        <location filename="../UI/UserInterface.py" line="2799"/>
         <source>Plugin &amp;Repository...</source>
         <translation>&amp;Repositório de Complementos...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2770"/>
+        <location filename="../UI/UserInterface.py" line="2804"/>
         <source>Show Plugins available for download</source>
         <translation>Mostrar Complementos disponíveis para descarregar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2772"/>
+        <location filename="../UI/UserInterface.py" line="2806"/>
         <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>
@@ -79640,17 +79660,17 @@
         <translation type="obsolete">Abrir a Documentação de PyQt4</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2889"/>
+        <location filename="../UI/UserInterface.py" line="2923"/>
         <source>Eric API Documentation</source>
         <translation>Documentação de API do Eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2889"/>
+        <location filename="../UI/UserInterface.py" line="2923"/>
         <source>&amp;Eric API Documentation</source>
         <translation>Documentação de API do &amp;Eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2893"/>
+        <location filename="../UI/UserInterface.py" line="2927"/>
         <source>Open Eric API Documentation</source>
         <translation>Abrir a Documentação de API do Eric</translation>
     </message>
@@ -79670,112 +79690,112 @@
         <translation type="obsolete">Abrir Documentação de PySide</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3074"/>
+        <location filename="../UI/UserInterface.py" line="3108"/>
         <source>&amp;Unittest</source>
         <translation>Teste &amp;Unitário</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3018"/>
+        <location filename="../UI/UserInterface.py" line="3052"/>
         <source>E&amp;xtras</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3028"/>
+        <location filename="../UI/UserInterface.py" line="3062"/>
         <source>Wi&amp;zards</source>
         <translation>A&amp;ssistentes</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3091"/>
+        <location filename="../UI/UserInterface.py" line="3125"/>
         <source>Select Tool Group</source>
         <translation>Selecionar Grupo de Ferramentas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3102"/>
+        <location filename="../UI/UserInterface.py" line="3136"/>
         <source>Se&amp;ttings</source>
         <translation>Definiçõe&amp;s</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3132"/>
+        <location filename="../UI/UserInterface.py" line="3166"/>
         <source>&amp;Window</source>
         <translation>&amp;Janela</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3193"/>
+        <location filename="../UI/UserInterface.py" line="3227"/>
         <source>&amp;Toolbars</source>
         <translation>Barras de Ferramen&amp;tas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3055"/>
+        <location filename="../UI/UserInterface.py" line="3089"/>
         <source>P&amp;lugins</source>
         <translation>Comp&amp;lementos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3064"/>
+        <location filename="../UI/UserInterface.py" line="3098"/>
         <source>Configure...</source>
         <translation>Configurar...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3207"/>
+        <location filename="../UI/UserInterface.py" line="3241"/>
         <source>&amp;Help</source>
         <translation>&amp;Ajuda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3278"/>
+        <location filename="../UI/UserInterface.py" line="3312"/>
         <source>Tools</source>
         <translation>Ferramentas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3280"/>
+        <location filename="../UI/UserInterface.py" line="3314"/>
         <source>Settings</source>
         <translation>Definições</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5147"/>
+        <location filename="../UI/UserInterface.py" line="5181"/>
         <source>Help</source>
         <translation>Ajuda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3282"/>
+        <location filename="../UI/UserInterface.py" line="3316"/>
         <source>Profiles</source>
         <translation>Perfiles</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3283"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <source>Plugins</source>
         <translation>Complementos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3452"/>
+        <location filename="../UI/UserInterface.py" line="3486"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3459"/>
+        <location filename="../UI/UserInterface.py" line="3493"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3466"/>
+        <location filename="../UI/UserInterface.py" line="3500"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3473"/>
+        <location filename="../UI/UserInterface.py" line="3507"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3480"/>
+        <location filename="../UI/UserInterface.py" line="3514"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3487"/>
+        <location filename="../UI/UserInterface.py" line="3521"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3563"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>External Tools/{0}</source>
         <translation>Ferramentas Externas/{0}</translation>
     </message>
@@ -79785,52 +79805,52 @@
         <translation type="obsolete">&lt;h3&gt;Números de Versão&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7214"/>
+        <location filename="../UI/UserInterface.py" line="7248"/>
         <source>&lt;/table&gt;</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
+        <location filename="../UI/UserInterface.py" line="3779"/>
         <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="4065"/>
+        <location filename="../UI/UserInterface.py" line="4099"/>
         <source>Restart application</source>
         <translation>Reiniciar a aplicação</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4065"/>
+        <location filename="../UI/UserInterface.py" line="4099"/>
         <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="4146"/>
+        <location filename="../UI/UserInterface.py" line="4180"/>
         <source>Configure Tool Groups ...</source>
         <translation>Configurar Grupos de Ferramentas...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4150"/>
+        <location filename="../UI/UserInterface.py" line="4184"/>
         <source>Configure current Tool Group ...</source>
         <translation>Configurar o atual Grupo de Ferramentas ...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4101"/>
+        <location filename="../UI/UserInterface.py" line="4135"/>
         <source>&amp;Builtin Tools</source>
         <translation>Ferramentas &amp;Internas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4118"/>
+        <location filename="../UI/UserInterface.py" line="4152"/>
         <source>&amp;Plugin Tools</source>
         <translation>Ferramentas dos &amp;Complementos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4267"/>
+        <location filename="../UI/UserInterface.py" line="4301"/>
         <source>&amp;Show all</source>
         <translation>&amp;Mostrar tudo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4269"/>
+        <location filename="../UI/UserInterface.py" line="4303"/>
         <source>&amp;Hide all</source>
         <translation>&amp;Esconder tudo</translation>
     </message>
@@ -79845,215 +79865,215 @@
         <translation type="obsolete">Suporte Qt3</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5275"/>
+        <location filename="../UI/UserInterface.py" line="5309"/>
         <source>Problem</source>
         <translation>Problema</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5275"/>
+        <location filename="../UI/UserInterface.py" line="5309"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5470"/>
+        <location filename="../UI/UserInterface.py" line="5504"/>
         <source>Process Generation Error</source>
         <translation>Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5000"/>
+        <location filename="../UI/UserInterface.py" line="5034"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5070"/>
+        <location filename="../UI/UserInterface.py" line="5104"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5114"/>
+        <location filename="../UI/UserInterface.py" line="5148"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5147"/>
-        <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="5161"/>
-        <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"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="5181"/>
+        <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="5195"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5215"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5231"/>
+        <location filename="../UI/UserInterface.py" line="5265"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5288"/>
+        <location filename="../UI/UserInterface.py" line="5322"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5311"/>
+        <location filename="../UI/UserInterface.py" line="5345"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5415"/>
+        <location filename="../UI/UserInterface.py" line="5449"/>
         <source>External Tools</source>
         <translation>Ferramentas Externas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5406"/>
+        <location filename="../UI/UserInterface.py" line="5440"/>
         <source>No tool entry found for external tool &apos;{0}&apos; in tool group &apos;{1}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5415"/>
+        <location filename="../UI/UserInterface.py" line="5449"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5454"/>
+        <location filename="../UI/UserInterface.py" line="5488"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation>A iniciar processo &apos;{0} {1}&apos;.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5470"/>
+        <location filename="../UI/UserInterface.py" line="5504"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5548"/>
+        <location filename="../UI/UserInterface.py" line="5582"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation>Processo &apos;{0}&apos; saiu.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5809"/>
+        <location filename="../UI/UserInterface.py" line="5843"/>
         <source>Documentation Missing</source>
         <translation>Falta a Documentação</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5809"/>
+        <location filename="../UI/UserInterface.py" line="5843"/>
         <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5792"/>
+        <location filename="../UI/UserInterface.py" line="5826"/>
         <source>Documentation</source>
         <translation>Documentação</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6241"/>
+        <location filename="../UI/UserInterface.py" line="6275"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation>Ficheiro de atalhos de teclado (*.e4k)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6411"/>
+        <location filename="../UI/UserInterface.py" line="6445"/>
         <source>Save tasks</source>
         <translation>Gravar tarefas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6411"/>
+        <location filename="../UI/UserInterface.py" line="6445"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6440"/>
+        <location filename="../UI/UserInterface.py" line="6474"/>
         <source>Read tasks</source>
         <translation>Ler tarefas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6440"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6536"/>
-        <source>Save session</source>
-        <translation>Guargar sessão</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="6474"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6570"/>
+        <source>Save session</source>
+        <translation>Guargar sessão</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6508"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6520"/>
+        <location filename="../UI/UserInterface.py" line="6554"/>
         <source>Read session</source>
         <translation>Sessão de leitura</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6520"/>
+        <location filename="../UI/UserInterface.py" line="6554"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6804"/>
+        <location filename="../UI/UserInterface.py" line="6838"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6804"/>
+        <location filename="../UI/UserInterface.py" line="6838"/>
         <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="6989"/>
+        <location filename="../UI/UserInterface.py" line="7023"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Cancelar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6998"/>
+        <location filename="../UI/UserInterface.py" line="7032"/>
         <source>Trying host {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7156"/>
+        <location filename="../UI/UserInterface.py" line="7190"/>
         <source>Update available</source>
         <translation>Atualização disponível</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7175"/>
+        <location filename="../UI/UserInterface.py" line="7209"/>
         <source>Error during updates check</source>
         <translation>Erro na verificação de atualizações</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7175"/>
+        <location filename="../UI/UserInterface.py" line="7209"/>
         <source>Could not perform updates check.</source>
         <translation>Não procurar atualizações.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7199"/>
+        <location filename="../UI/UserInterface.py" line="7233"/>
         <source>&lt;h3&gt;Available versions&lt;/h3&gt;&lt;table&gt;</source>
         <translation>&lt;h3&gt;Versões Disponíveis&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7251"/>
+        <location filename="../UI/UserInterface.py" line="7285"/>
         <source>First time usage</source>
         <translation>Usado a primeira vez</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2867"/>
+        <location filename="../UI/UserInterface.py" line="2901"/>
         <source>Python 3 Documentation</source>
         <translation>Documentação de Python 3</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2867"/>
+        <location filename="../UI/UserInterface.py" line="2901"/>
         <source>Python &amp;3 Documentation</source>
         <translation>Documentação de Python &amp;3</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2871"/>
+        <location filename="../UI/UserInterface.py" line="2905"/>
         <source>Open Python 3 Documentation</source>
         <translation>Abrir a Documentação de Python 3</translation>
     </message>
@@ -80073,458 +80093,458 @@
         <translation type="obsolete">Abrir a Documentação de Python 2</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7064"/>
+        <location filename="../UI/UserInterface.py" line="7098"/>
         <source>Error getting versions information</source>
         <translation>Erro na obtenção da informação de versões</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7057"/>
+        <location filename="../UI/UserInterface.py" line="7091"/>
         <source>The versions information could not be downloaded. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6009"/>
+        <location filename="../UI/UserInterface.py" line="6043"/>
         <source>Open Browser</source>
         <translation>Abrir Navegador</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6009"/>
+        <location filename="../UI/UserInterface.py" line="6043"/>
         <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="7064"/>
+        <location filename="../UI/UserInterface.py" line="7098"/>
         <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="695"/>
+        <location filename="../UI/UserInterface.py" line="696"/>
         <source>Setting View Profile...</source>
         <translation>A definir Perfil de Vista...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="708"/>
+        <location filename="../UI/UserInterface.py" line="709"/>
         <source>Reading Tasks...</source>
         <translation>A Ler Tarefas...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="713"/>
+        <location filename="../UI/UserInterface.py" line="714"/>
         <source>Reading Templates...</source>
         <translation>A ler Modelos...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="718"/>
+        <location filename="../UI/UserInterface.py" line="719"/>
         <source>Starting Debugger...</source>
         <translation>A iniciar Depurador...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>New Window</source>
         <translation>Nova Janela</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>New &amp;Window</source>
         <translation>Nova &amp;Janela</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation>Ctrl+Shift+N</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2251"/>
+        <location filename="../UI/UserInterface.py" line="2285"/>
         <source>Unittest Rerun Failed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2251"/>
+        <location filename="../UI/UserInterface.py" line="2285"/>
         <source>Rerun Failed Tests...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2256"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Rerun failed tests of the last run</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2258"/>
+        <location filename="../UI/UserInterface.py" line="2292"/>
         <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last unittest run.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2390"/>
+        <location filename="../UI/UserInterface.py" line="2424"/>
         <source>Compare &amp;Files side by side...</source>
         <translation>Comparar &amp;Ficheiros lado-a-lado...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2475"/>
+        <location filename="../UI/UserInterface.py" line="2509"/>
         <source>Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2475"/>
+        <location filename="../UI/UserInterface.py" line="2509"/>
         <source>&amp;Snapshot...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2480"/>
+        <location filename="../UI/UserInterface.py" line="2514"/>
         <source>Take snapshots of a screen region</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2482"/>
+        <location filename="../UI/UserInterface.py" line="2516"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5383"/>
+        <location filename="../UI/UserInterface.py" line="5417"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7270"/>
+        <location filename="../UI/UserInterface.py" line="7304"/>
         <source>Select Workspace Directory</source>
         <translation>Selecionar o Diretório de Trabalho</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
+        <location filename="../UI/UserInterface.py" line="1891"/>
         <source>Left Toolbox</source>
         <translation>Caixa de Ferramentas Esquerda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1869"/>
+        <location filename="../UI/UserInterface.py" line="1903"/>
         <source>Right Toolbox</source>
         <translation>Caixa de Ferramentas Direita</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1721"/>
+        <location filename="../UI/UserInterface.py" line="1755"/>
         <source>Switch the input focus to the Project-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1723"/>
+        <location filename="../UI/UserInterface.py" line="1757"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1738"/>
+        <location filename="../UI/UserInterface.py" line="1772"/>
         <source>Switch the input focus to the Multiproject-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1740"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1756"/>
-        <source>Switch the input focus to the Debug-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1758"/>
-        <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"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1774"/>
-        <source>Switch the input focus to the Shell window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1776"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
-        <source>&amp;File-Browser</source>
-        <translation>Navegador de &amp;Ficheiros</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1791"/>
-        <source>Switch the input focus to the File-Browser window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1793"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1802"/>
-        <source>Lo&amp;g-Viewer</source>
-        <translation>Visor de Re&amp;gistos</translation>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1790"/>
+        <source>Switch the input focus to the Debug-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1792"/>
+        <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"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1808"/>
-        <source>Switch the input focus to the Log-Viewer window.</source>
+        <source>Switch the input focus to the Shell window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1810"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1819"/>
+        <source>&amp;File-Browser</source>
+        <translation>Navegador de &amp;Ficheiros</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1825"/>
+        <source>Switch the input focus to the File-Browser window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1827"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1836"/>
+        <source>Lo&amp;g-Viewer</source>
+        <translation>Visor de Re&amp;gistos</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1842"/>
+        <source>Switch the input focus to the Log-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1844"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
+        <location filename="../UI/UserInterface.py" line="1854"/>
         <source>&amp;Task-Viewer</source>
         <translation>Visor de &amp;Tarefas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1826"/>
-        <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="1839"/>
-        <source>Templ&amp;ate-Viewer</source>
-        <translation>Visor de Mod&amp;elos</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1845"/>
-        <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="1847"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
-        <source>&amp;Left Toolbox</source>
-        <translation>Caixa de Ferramentas &amp;Esquerda</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1860"/>
-        <source>Toggle the Left Toolbox window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1861"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1869"/>
-        <source>&amp;Right Toolbox</source>
-        <translation>Caixa de Ferramentas Di&amp;reita</translation>
+        <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="1873"/>
+        <source>Templ&amp;ate-Viewer</source>
+        <translation>Visor de Mod&amp;elos</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1879"/>
+        <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="1881"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1891"/>
+        <source>&amp;Left Toolbox</source>
+        <translation>Caixa de Ferramentas &amp;Esquerda</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1894"/>
+        <source>Toggle the Left Toolbox window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1895"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1903"/>
+        <source>&amp;Right Toolbox</source>
+        <translation>Caixa de Ferramentas Di&amp;reita</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1907"/>
         <source>Toggle the Right Toolbox window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1874"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1909"/>
+        <location filename="../UI/UserInterface.py" line="1943"/>
         <source>Right Sidebar</source>
         <translation>Barra Direita</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1909"/>
+        <location filename="../UI/UserInterface.py" line="1943"/>
         <source>&amp;Right Sidebar</source>
         <translation>Barra Lateral Di&amp;reita</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1913"/>
+        <location filename="../UI/UserInterface.py" line="1947"/>
         <source>Toggle the right sidebar window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1915"/>
+        <location filename="../UI/UserInterface.py" line="1949"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Cooperation-Viewer</source>
         <translation>Visor de Colaboração</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Co&amp;operation-Viewer</source>
         <translation>Visor de C&amp;olaboração</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1944"/>
+        <location filename="../UI/UserInterface.py" line="1978"/>
         <source>Switch the input focus to the Cooperation-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1946"/>
+        <location filename="../UI/UserInterface.py" line="1980"/>
         <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="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>Symbols-Viewer</source>
         <translation>Visor de Símbolos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>S&amp;ymbols-Viewer</source>
         <translation>V&amp;isor de Símbolos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1981"/>
+        <location filename="../UI/UserInterface.py" line="2015"/>
         <source>Switch the input focus to the Symbols-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1983"/>
+        <location filename="../UI/UserInterface.py" line="2017"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Numbers-Viewer</source>
         <translation>Visor de Números</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Num&amp;bers-Viewer</source>
         <translation>Visor de Nú&amp;meros</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2000"/>
+        <location filename="../UI/UserInterface.py" line="2034"/>
         <source>Switch the input focus to the Numbers-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2002"/>
+        <location filename="../UI/UserInterface.py" line="2036"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3141"/>
+        <location filename="../UI/UserInterface.py" line="3175"/>
         <source>&amp;Windows</source>
         <translation>&amp;Janelas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1828"/>
+        <location filename="../UI/UserInterface.py" line="1862"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>IRC</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>&amp;IRC</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1963"/>
+        <location filename="../UI/UserInterface.py" line="1997"/>
         <source>Switch the input focus to the IRC window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1965"/>
+        <location filename="../UI/UserInterface.py" line="1999"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2309"/>
+        <location filename="../UI/UserInterface.py" line="2343"/>
         <source>Qt-Designer</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2309"/>
+        <location filename="../UI/UserInterface.py" line="2343"/>
         <source>Qt-&amp;Designer...</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2314"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Start Qt-Designer</source>
         <translation>Iniciar Qt-Designer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2315"/>
+        <location filename="../UI/UserInterface.py" line="2349"/>
         <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2335"/>
+        <location filename="../UI/UserInterface.py" line="2369"/>
         <source>Qt-Linguist</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2335"/>
+        <location filename="../UI/UserInterface.py" line="2369"/>
         <source>Qt-&amp;Linguist...</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2340"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Start Qt-Linguist</source>
         <translation>Iniciar Qt-Linguist</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2341"/>
+        <location filename="../UI/UserInterface.py" line="2375"/>
         <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2831"/>
+        <location filename="../UI/UserInterface.py" line="2865"/>
         <source>Qt5 Documentation</source>
         <translation>Documentação de Qt5</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2831"/>
+        <location filename="../UI/UserInterface.py" line="2865"/>
         <source>Qt&amp;5 Documentation</source>
         <translation>Documentação de Qt&amp;5</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2835"/>
+        <location filename="../UI/UserInterface.py" line="2869"/>
         <source>Open Qt5 Documentation</source>
         <translation>Abrir a Documentação de Qt5</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2639"/>
+        <location filename="../UI/UserInterface.py" line="2673"/>
         <source>Manage SSL Certificates</source>
         <translation>Gestionar Certificados SSL</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2639"/>
+        <location filename="../UI/UserInterface.py" line="2673"/>
         <source>Manage SSL Certificates...</source>
         <translation>Gestionar Certificados SSL...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2644"/>
+        <location filename="../UI/UserInterface.py" line="2678"/>
         <source>Manage the saved SSL certificates</source>
         <translation>Gestionar certificados SSL gravados</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2646"/>
+        <location filename="../UI/UserInterface.py" line="2680"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2655"/>
+        <location filename="../UI/UserInterface.py" line="2689"/>
         <source>Edit Message Filters</source>
         <translation>Editar Filtros de Mensagens</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2655"/>
+        <location filename="../UI/UserInterface.py" line="2689"/>
         <source>Edit Message Filters...</source>
         <translation>Editar Filtros de Mensagens...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2660"/>
+        <location filename="../UI/UserInterface.py" line="2694"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2662"/>
+        <location filename="../UI/UserInterface.py" line="2696"/>
         <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"></translation>
     </message>
@@ -80534,112 +80554,112 @@
         <translation type="obsolete">Documentação do PyQt&amp;4</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2846"/>
+        <location filename="../UI/UserInterface.py" line="2880"/>
         <source>PyQt5 Documentation</source>
         <translation>Documentação do PyQt5</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2846"/>
+        <location filename="../UI/UserInterface.py" line="2880"/>
         <source>PyQt&amp;5 Documentation</source>
         <translation>Documentação do PyQt&amp;5</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2850"/>
+        <location filename="../UI/UserInterface.py" line="2884"/>
         <source>Open PyQt5 Documentation</source>
         <translation>Abrir a Documentação de PyQt5</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5687"/>
+        <location filename="../UI/UserInterface.py" line="5721"/>
         <source>&lt;p&gt;The PyQt5 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2873"/>
+        <location filename="../UI/UserInterface.py" line="2907"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6989"/>
+        <location filename="../UI/UserInterface.py" line="7023"/>
         <source>%v/%m</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2174"/>
+        <location filename="../UI/UserInterface.py" line="2208"/>
         <source>Show Error Log</source>
         <translation>Mostrar Registo de Erros</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2170"/>
+        <location filename="../UI/UserInterface.py" line="2204"/>
         <source>Show Error &amp;Log...</source>
         <translation>Mostrar &amp;Registo de Erros...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2175"/>
+        <location filename="../UI/UserInterface.py" line="2209"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1668"/>
+        <location filename="../UI/UserInterface.py" line="1702"/>
         <source>Open a new eric6 instance</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1670"/>
+        <location filename="../UI/UserInterface.py" line="1704"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric6 IDE.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2113"/>
+        <location filename="../UI/UserInterface.py" line="2147"/>
         <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric6 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 search in the Qt help collection.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2148"/>
+        <location filename="../UI/UserInterface.py" line="2182"/>
         <source>&lt;b&gt;Check for Updates...&lt;/b&gt;&lt;p&gt;Checks the internet for updates of eric6.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2161"/>
+        <location filename="../UI/UserInterface.py" line="2195"/>
         <source>&lt;b&gt;Show downloadable versions...&lt;/b&gt;&lt;p&gt;Shows the eric6 versions available for download from the internet.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2445"/>
+        <location filename="../UI/UserInterface.py" line="2479"/>
         <source>eric6 Web Browser</source>
         <translation>Navegador Web de eric6</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2445"/>
+        <location filename="../UI/UserInterface.py" line="2479"/>
         <source>eric6 &amp;Web Browser...</source>
         <translation>Navegador &amp;Web de eric6...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2450"/>
+        <location filename="../UI/UserInterface.py" line="2484"/>
         <source>Start the eric6 Web Browser</source>
         <translation>Iniciar o Navegador Web de eric6</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2452"/>
+        <location filename="../UI/UserInterface.py" line="2486"/>
         <source>&lt;b&gt;eric6 Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric6 Web Browser.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Navegardor Web eric6&lt;/b&gt;&lt;p&gt;Navegar por internet com o Navegador Web eric6.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2466"/>
+        <location filename="../UI/UserInterface.py" line="2500"/>
         <source>Start the eric6 Icon Editor</source>
         <translation>Iniciar o Editor de Icones de eric6</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2468"/>
+        <location filename="../UI/UserInterface.py" line="2502"/>
         <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Icon Editor for editing simple icons.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2554"/>
+        <location filename="../UI/UserInterface.py" line="2588"/>
         <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 eric6.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2895"/>
+        <location filename="../UI/UserInterface.py" line="2929"/>
         <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 eric6 installation directory.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80649,398 +80669,398 @@
         <translation type="obsolete">Qt v.3 não está suportado por eric6.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6993"/>
+        <location filename="../UI/UserInterface.py" line="7027"/>
         <source>Version Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7156"/>
+        <location filename="../UI/UserInterface.py" line="7190"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric6 is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation>Atualização a &lt;b&gt;{0}&lt;/b&gt; de eric6 já está disponível em &lt;b&gt;{1}&lt;/b&gt;. Quere-a descarregar?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7168"/>
+        <location filename="../UI/UserInterface.py" line="7202"/>
         <source>Eric6 is up to date</source>
         <translation>Eric6 está atualizado</translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="7202"/>
+        <source>You are using the latest version of eric6</source>
+        <translation>Utiliza a última versão do eric6</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7285"/>
+        <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
+        <translation>eric6 ainda não foi configurado. A caixa de diálogo de configuração vai iniciar-se.</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="673"/>
+        <source>Generating Plugins Toolbars...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4155"/>
+        <source>&amp;User Tools</source>
+        <translation>Ferramentas de &amp;Utilizador</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4227"/>
+        <source>No User Tools Configured</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7043"/>
+        <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2464"/>
+        <source>Hex Editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2464"/>
+        <source>&amp;Hex Editor...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2469"/>
+        <source>Start the eric6 Hex Editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2471"/>
+        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2712"/>
+        <source>Clear private data</source>
+        <translation type="unfinished">Limpar dados privados</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2714"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1670"/>
+        <source>Save session...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1675"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6592"/>
+        <source>Load session</source>
+        <translation type="unfinished">Carregar sessão</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1683"/>
+        <source>Load session...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1688"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6592"/>
+        <source>eric6 Session Files (*.e5s)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6643"/>
+        <source>Crash Session found!</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6643"/>
+        <source>A session file of a crashed session was found. Shall this session be restored?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="676"/>
+        <source>Cleaning Plugins Download Area...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="668"/>
+        <source>Initializing Plugins...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7178"/>
+        <source>Update Check</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7178"/>
+        <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="7168"/>
-        <source>You are using the latest version of eric6</source>
-        <translation>Utiliza a última versão do eric6</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7251"/>
-        <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
-        <translation>eric6 ainda não foi configurado. A caixa de diálogo de configuração vai iniciar-se.</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="672"/>
-        <source>Generating Plugins Toolbars...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4121"/>
-        <source>&amp;User Tools</source>
-        <translation>Ferramentas de &amp;Utilizador</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4193"/>
-        <source>No User Tools Configured</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7009"/>
-        <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2430"/>
-        <source>Hex Editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2430"/>
-        <source>&amp;Hex Editor...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2435"/>
-        <source>Start the eric6 Hex Editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2437"/>
-        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2678"/>
-        <source>Clear private data</source>
-        <translation type="unfinished">Limpar dados privados</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2680"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1636"/>
-        <source>Save session...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1641"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6558"/>
-        <source>Load session</source>
-        <translation type="unfinished">Carregar sessão</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
-        <source>Load session...</source>
+        <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2047"/>
+        <source>Code Documentation Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2870"/>
+        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2886"/>
+        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2944"/>
+        <source>PySide2 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2944"/>
+        <source>PySide&amp;2 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2948"/>
+        <source>Open PySide2 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2950"/>
+        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5826"/>
+        <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2820"/>
+        <source>Virtualenv Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2814"/>
+        <source>&amp;Virtualenv Manager...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2822"/>
+        <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2837"/>
+        <source>Virtualenv Configurator</source>
+        <translation type="unfinished">Assistente para Virtualenv</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2831"/>
+        <source>Virtualenv &amp;Configurator...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2839"/>
+        <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3182"/>
+        <source>Left Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3194"/>
+        <source>Bottom Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3201"/>
+        <source>Right Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3221"/>
+        <source>Plug-ins</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1654"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6558"/>
-        <source>eric6 Session Files (*.e5s)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6609"/>
-        <source>Crash Session found!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6609"/>
-        <source>A session file of a crashed session was found. Shall this session be restored?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="675"/>
-        <source>Cleaning Plugins Download Area...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="667"/>
-        <source>Initializing Plugins...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7144"/>
-        <source>Update Check</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7144"/>
-        <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7134"/>
-        <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2013"/>
-        <source>Code Documentation Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2836"/>
-        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2852"/>
-        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2910"/>
-        <source>PySide2 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2910"/>
-        <source>PySide&amp;2 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2914"/>
-        <source>Open PySide2 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2916"/>
-        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5792"/>
-        <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2786"/>
-        <source>Virtualenv Manager</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2780"/>
-        <source>&amp;Virtualenv Manager...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2788"/>
-        <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2803"/>
-        <source>Virtualenv Configurator</source>
-        <translation type="unfinished">Assistente para Virtualenv</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2797"/>
-        <source>Virtualenv &amp;Configurator...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2805"/>
-        <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3148"/>
-        <source>Left Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3160"/>
-        <source>Bottom Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3167"/>
-        <source>Right Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3187"/>
-        <source>Plug-ins</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1620"/>
         <source>Restart</source>
         <translation type="unfinished">Reiniciar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1620"/>
+        <location filename="../UI/UserInterface.py" line="1654"/>
         <source>Ctrl+Shift+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1626"/>
+        <location filename="../UI/UserInterface.py" line="1660"/>
         <source>Restart the IDE</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1627"/>
+        <location filename="../UI/UserInterface.py" line="1661"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5966"/>
+        <location filename="../UI/UserInterface.py" line="6000"/>
         <source>Start Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5905"/>
+        <location filename="../UI/UserInterface.py" line="5939"/>
         <source>The eric6 web browser could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5966"/>
+        <location filename="../UI/UserInterface.py" line="6000"/>
         <source>&lt;p&gt;The eric6 web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
+        <location filename="../UI/UserInterface.py" line="2085"/>
         <source>Conda</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2033"/>
+        <location filename="../UI/UserInterface.py" line="2067"/>
         <source>PyPI</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3498"/>
+        <location filename="../UI/UserInterface.py" line="3532"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2069"/>
+        <location filename="../UI/UserInterface.py" line="2103"/>
         <source>MicroPython</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>Ctrl+Alt+Shift+I</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2013"/>
+        <location filename="../UI/UserInterface.py" line="2047"/>
         <source>Ctrl+Alt+Shift+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2019"/>
+        <location filename="../UI/UserInterface.py" line="2053"/>
         <source>Switch the input focus to the Code Documentation Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2022"/>
+        <location filename="../UI/UserInterface.py" line="2056"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2033"/>
+        <location filename="../UI/UserInterface.py" line="2067"/>
         <source>Ctrl+Alt+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2039"/>
+        <location filename="../UI/UserInterface.py" line="2073"/>
         <source>Switch the input focus to the PyPI window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2041"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
-        <source>Ctrl+Alt+Shift+C</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2057"/>
-        <source>Switch the input focus to the Conda window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2059"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2069"/>
-        <source>Ctrl+Alt+Shift+M</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2075"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2085"/>
+        <source>Ctrl+Alt+Shift+C</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2091"/>
+        <source>Switch the input focus to the Conda window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2093"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2103"/>
+        <source>Ctrl+Alt+Shift+M</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2109"/>
         <source>Switch the input focus to the MicroPython window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2077"/>
+        <location filename="../UI/UserInterface.py" line="2111"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3145"/>
+        <location filename="../UI/UserInterface.py" line="3179"/>
         <source>Central Park</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3672"/>
+        <location filename="../UI/UserInterface.py" line="3706"/>
         <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="5009"/>
+        <location filename="../UI/UserInterface.py" line="5043"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5079"/>
+        <location filename="../UI/UserInterface.py" line="5113"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5123"/>
+        <location filename="../UI/UserInterface.py" line="5157"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2182"/>
+        <location filename="../UI/UserInterface.py" line="2216"/>
         <source>Show Install Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2182"/>
+        <location filename="../UI/UserInterface.py" line="2216"/>
         <source>Show Install &amp;Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2186"/>
+        <location filename="../UI/UserInterface.py" line="2220"/>
         <source>Show Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2188"/>
+        <location filename="../UI/UserInterface.py" line="2222"/>
         <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"></translation>
     </message>
@@ -85450,6 +85470,21 @@
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="744"/>
+        <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the shell window. A dialog is shown to enter the search text and options for the search.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="765"/>
+        <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="786"/>
+        <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
@@ -85912,32 +85947,32 @@
         <translation type="unfinished">Atualizar</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="323"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="333"/>
         <source>&lt;virtualenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="341"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="351"/>
         <source>&lt;No suitable virtualenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="343"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="353"/>
         <source>virtualenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="377"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="387"/>
         <source>&lt;pyvenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="397"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="407"/>
         <source>&lt;No suitable pyvenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="399"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="409"/>
         <source>pyvenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -86077,7 +86112,7 @@
         <translation type="unfinished">Ficheiros de Texto (*.txt);;Ficheiros Todos (*)</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="411"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="421"/>
         <source>conda Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
--- a/eric6/i18n/eric6_ru.ts	Wed Nov 11 17:51:36 2020 +0100
+++ b/eric6/i18n/eric6_ru.ts	Sat Nov 14 11:50:43 2020 +0100
@@ -47902,12 +47902,12 @@
         <translation>Ошибки</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="143"/>
+        <location filename="../PipInterface/PipDialog.py" line="146"/>
         <source>Process Generation Error</source>
         <translation>Ошибка при запуске процесса</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="143"/>
+        <location filename="../PipInterface/PipDialog.py" line="146"/>
         <source>The process {0} could not be started.</source>
         <translation>Невозможно запустить процесс {0}.</translation>
     </message>
@@ -48587,7 +48587,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="910"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="911"/>
         <source>Search PyPI</source>
         <translation>Поиск в PyPI</translation>
     </message>
@@ -48607,102 +48607,102 @@
         <translation>Ошибка: {0}</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="872"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="873"/>
         <source>Show Package Details</source>
         <translation>Подробная информация о пакете</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="872"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="873"/>
         <source>Select the package version:</source>
         <translation>Выберите версию пакета:</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="910"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="911"/>
         <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Недоступна подробная информация о пакете &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="926"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="927"/>
         <source>Install Pip</source>
         <translation>Инсталировать Pip</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="929"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="930"/>
         <source>Install Pip to User-Site</source>
         <translation>Инсталировать Pip в User-Site</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="932"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="933"/>
         <source>Repair Pip</source>
         <translation>Восстановить Pip</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1046"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1050"/>
         <source>Install Packages</source>
         <translation>Установить пакеты</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="939"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="940"/>
         <source>Install Local Package</source>
         <translation>Установить локальный пакет</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="943"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
         <source>Install Requirements</source>
         <translation>Установить зависимости</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="946"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="947"/>
         <source>Uninstall Requirements</source>
         <translation>Деинсталировать зависимости</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="949"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="950"/>
         <source>Generate Requirements...</source>
         <translation>Генерация зависимостей...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="967"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="968"/>
         <source>Edit User Configuration...</source>
         <translation>Правка конфигурации пользователя...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="970"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="971"/>
         <source>Edit Environment Configuration...</source>
         <translation>Правка конфигурации среды окружения...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="975"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="976"/>
         <source>Configure...</source>
         <translation>Настроить...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1158"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1166"/>
         <source>Edit Configuration</source>
         <translation>Правка конфигурации</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1158"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1166"/>
         <source>No valid configuration path determined. Aborting</source>
         <translation>Не определен допустимый путь конфигурации. Прерывание</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="953"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="954"/>
         <source>Show Cache Info...</source>
         <translation>Показать информацию о кэше...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="956"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="957"/>
         <source>Show Cached Files...</source>
         <translation>Показать кэшированные файлы...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="960"/>
         <source>Remove Cached Files...</source>
         <translation>Удалить кэшированные файлы...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="962"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="963"/>
         <source>Purge Cache...</source>
         <translation>Очистить кэш...</translation>
     </message>
@@ -61577,229 +61577,259 @@
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="242"/>
         <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected language.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Перезапуск&lt;/b&gt;&lt;p&gt;Перезапуск оболочки для текущего выбранного языка.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="249"/>
+        <translation type="obsolete">&lt;b&gt;Перезапуск&lt;/b&gt;&lt;p&gt;Перезапуск оболочки для текущего выбранного языка.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="250"/>
         <source>Restart and Clear</source>
         <translation>Перезапустить и очистить</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="254"/>
+        <location filename="../QScintilla/ShellWindow.py" line="255"/>
         <source>Clear the window and restart the shell</source>
         <translation>Очистить окно и перезапустить оболочку</translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="256"/>
         <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected language.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Перезапустить и очистить&lt;/b&gt;&lt;p&gt;Очистка окна оболочки и перезапуск оболочки для выбранного языка.&lt;/p&gt;</translation>
+        <translation type="obsolete">&lt;b&gt;Перезапустить и очистить&lt;/b&gt;&lt;p&gt;Очистка окна оболочки и перезапуск оболочки для выбранного языка.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="885"/>
+        <source>Show History</source>
+        <translation>Показать историю</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="885"/>
+        <source>&amp;Show History...</source>
+        <translation>&amp;Показать историю...</translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="891"/>
-        <source>Show History</source>
-        <translation>Показать историю</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="891"/>
-        <source>&amp;Show History...</source>
-        <translation>&amp;Показать историю...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="897"/>
         <source>Show the shell history in a dialog</source>
         <translation>Отображение истории оболочки в диалоговом окне</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="895"/>
+        <source>Clear History</source>
+        <translation>Очистить историю</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="895"/>
+        <source>&amp;Clear History...</source>
+        <translation>&amp;Очистить историю...</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="901"/>
-        <source>Clear History</source>
-        <translation>Очистить историю</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="901"/>
-        <source>&amp;Clear History...</source>
-        <translation>&amp;Очистить историю...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="907"/>
         <source>Clear the shell history</source>
         <translation>Очистить историю оболочки</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="911"/>
+        <location filename="../QScintilla/ShellWindow.py" line="905"/>
         <source>Select History Entry</source>
         <translation>Выбрать запись в истории</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="911"/>
+        <location filename="../QScintilla/ShellWindow.py" line="905"/>
         <source>Select History &amp;Entry</source>
         <translation>Выбрать &amp;запись в истории</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="916"/>
+        <location filename="../QScintilla/ShellWindow.py" line="910"/>
         <source>Select an entry of the shell history</source>
         <translation>Выбор записи в истории оболочки</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
+        <source>About</source>
+        <translation>О программе</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
+        <source>&amp;About</source>
+        <translation>&amp;О программе</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="922"/>
+        <source>Display information about this software</source>
+        <translation>Информация об этой программе</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="924"/>
-        <source>About</source>
-        <translation>О программе</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="924"/>
-        <source>&amp;About</source>
-        <translation>&amp;О программе</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="928"/>
-        <source>Display information about this software</source>
-        <translation>Информация об этой программе</translation>
+        <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;О программе&lt;/b&gt;&lt;p&gt;Информация об этом программном продукте.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="930"/>
-        <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;О программе&lt;/b&gt;&lt;p&gt;Информация об этом программном продукте.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="936"/>
         <source>About Qt</source>
         <translation>О Qt</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="930"/>
+        <source>About &amp;Qt</source>
+        <translation>О &amp;Qt</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <source>Display information about the Qt toolkit</source>
+        <translation>Информация о наборе инструментов Qt</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="936"/>
-        <source>About &amp;Qt</source>
-        <translation>О &amp;Qt</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="940"/>
-        <source>Display information about the Qt toolkit</source>
-        <translation>Информация о наборе инструментов Qt</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="942"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation>&lt;b&gt;О Qt&lt;/b&gt;&lt;p&gt;Отображение информация об инструментарии Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
         <source>What&apos;s This?</source>
         <translation>Что это?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Что это?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="955"/>
+        <location filename="../QScintilla/ShellWindow.py" line="949"/>
         <source>Context sensitive help</source>
         <translation>Контекстнозависимая справка</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="956"/>
+        <location filename="../QScintilla/ShellWindow.py" line="950"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;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;В режиме &quot;What&apos;s This?&quot;(Что это?)курсор мыши отображается как стрелка со знаком вопроса, и вы можете, кликнув по элементу интерфейса, получить краткое описание того, что он делает и как его использовать. В диалоговом окне эта функция может быть вызвана кнопкой контекстной справки в панели заголовка.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1100"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1094"/>
         <source>About eric6 Shell Window</source>
         <translation>Об окне оболочки eric6</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1100"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1094"/>
         <source>The eric6 Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
         <translation>Оболочка eric6 - автономное окно оболочки. Оно использует тот же бэкэнд что и отладчик полной IDE, но только исполняется независимо.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1128"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1122"/>
         <source>&amp;File</source>
         <translation>&amp;Файл</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1137"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1131"/>
         <source>&amp;Edit</source>
         <translation>&amp;Правка</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1148"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1142"/>
         <source>&amp;View</source>
         <translation>&amp;Вид</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1155"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1149"/>
         <source>Histor&amp;y</source>
         <translation>Истори&amp;я</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1156"/>
+        <source>&amp;Start</source>
+        <translation>&amp;Запуск</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1162"/>
-        <source>&amp;Start</source>
-        <translation>&amp;Запуск</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1168"/>
         <source>&amp;Help</source>
         <translation>&amp;Справка</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1201"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1195"/>
         <source>File</source>
         <translation>Файл</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1210"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1204"/>
         <source>Edit</source>
         <translation>Редактировать</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1211"/>
+        <source>Find</source>
+        <translation>Найти</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1217"/>
-        <source>Find</source>
-        <translation>Найти</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1223"/>
         <source>View</source>
         <translation>Вид</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1224"/>
+        <source>History</source>
+        <translation>История</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1230"/>
-        <source>History</source>
-        <translation>История</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1236"/>
         <source>Help</source>
         <translation>Справка</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1257"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1251"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
         <translation>&lt;p&gt;В этой части строки состояния разрешено масштабирование оболочки.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="585"/>
+        <location filename="../QScintilla/ShellWindow.py" line="579"/>
         <source>Move forward one history entry</source>
         <translation>Переместить запись в истории вперед</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="595"/>
+        <location filename="../QScintilla/ShellWindow.py" line="589"/>
         <source>Move back one history entry</source>
         <translation>Переместить запись в истории назад</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1036"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1030"/>
         <source>eric6 Shell</source>
         <translation>Оболочка eric6</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1034"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1028"/>
         <source>eric6 Shell [{0}]</source>
         <translation>Оболочка eric6 [{0}]</translation>
     </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="242"/>
+        <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected environment.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="257"/>
+        <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected environment.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="284"/>
+        <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text to the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished">&lt;b&gt;Вырезать&lt;/b&gt;&lt;p&gt;Вырезать выделенный текст в буфер обмена.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="302"/>
+        <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished">&lt;b&gt;Копировать&lt;/b&gt;&lt;p&gt;Копировать выбранный текст в буфер обмена.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="320"/>
+        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="337"/>
+        <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>Shelve</name>
@@ -80743,6 +80773,21 @@
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Просмотрщик Python Disassembly&lt;/b&gt;&lt;p&gt;Получение синтаксического древовидного представления дизассемблирования текущего файла с кодом Python.&lt;/p&gt;</translation>
     </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="744"/>
+        <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the shell window. A dialog is shown to enter the search text and options for the search.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="765"/>
+        <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="786"/>
+        <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
@@ -81211,32 +81256,32 @@
         <translation>Обновлять</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="323"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="333"/>
         <source>&lt;virtualenv did not finish within 5s.&gt;</source>
         <translation>&lt;virtualenv не завершился в течение 5 сек.&gt;</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="341"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="351"/>
         <source>&lt;No suitable virtualenv found.&gt;</source>
         <translation>&lt;Не найден подходящий virtualenv.&gt;</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="343"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="353"/>
         <source>virtualenv Version: {0}</source>
         <translation>Версия virtualenv: {0}</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="377"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="387"/>
         <source>&lt;pyvenv did not finish within 5s.&gt;</source>
         <translation>&lt;pyvenv не завершился в течение 5 сек.&gt;</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="397"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="407"/>
         <source>&lt;No suitable pyvenv found.&gt;</source>
         <translation>&lt;Не найден подходящий pyvenv .&gt;</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="399"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="409"/>
         <source>pyvenv Version: {0}</source>
         <translation>Версия pyvenv: {0}</translation>
     </message>
@@ -81371,7 +81416,7 @@
         <translation>Текстовые файлы (*.txt);;Все файлы (*)</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="411"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="421"/>
         <source>conda Version: {0}</source>
         <translation>Версия conda: {0}</translation>
     </message>
--- a/eric6/i18n/eric6_tr.ts	Wed Nov 11 17:51:36 2020 +0100
+++ b/eric6/i18n/eric6_tr.ts	Sat Nov 14 11:50:43 2020 +0100
@@ -41388,52 +41388,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="71"/>
+        <location filename="../UI/InstallInfoDialog.py" line="70"/>
         <source>Yes</source>
         <translation type="unfinished">Evet</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="71"/>
+        <location filename="../UI/InstallInfoDialog.py" line="70"/>
         <source>No</source>
         <translation type="unfinished">Hayır</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="75"/>
+        <location filename="../UI/InstallInfoDialog.py" line="74"/>
         <source>&apos;eric-ide&apos; was installed from PyPI using the pip command.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="81"/>
+        <location filename="../UI/InstallInfoDialog.py" line="80"/>
         <source>The information shown in this dialog was guessed at the first start of eric.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="99"/>
+        <location filename="../UI/InstallInfoDialog.py" line="98"/>
         <source>Load Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="99"/>
+        <location filename="../UI/InstallInfoDialog.py" line="98"/>
         <source>&lt;p&gt;The file containing the install information could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="151"/>
+        <location filename="../UI/InstallInfoDialog.py" line="150"/>
         <source>Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="151"/>
+        <location filename="../UI/InstallInfoDialog.py" line="150"/>
         <source>The install information was edited. Unsaved changes will be lost. Save first?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="188"/>
+        <location filename="../UI/InstallInfoDialog.py" line="187"/>
         <source>Save Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="188"/>
+        <location filename="../UI/InstallInfoDialog.py" line="187"/>
         <source>&lt;p&gt;The file containing the install information could not be written.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -41443,17 +41443,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="61"/>
+        <location filename="../UI/InstallInfoDialog.py" line="60"/>
         <source>Installed as Administrator:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="63"/>
+        <location filename="../UI/InstallInfoDialog.py" line="62"/>
         <source>Installed with sudo:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="93"/>
+        <location filename="../UI/InstallInfoDialog.py" line="92"/>
         <source>unknown</source>
         <translation type="unfinished">bilinmeyen</translation>
     </message>
@@ -41463,32 +41463,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="87"/>
+        <location filename="../UI/InstallInfoDialog.py" line="86"/>
         <source>The installation information was provided by the user.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="39"/>
+        <location filename="../UI/InstallInfoDialog.py" line="38"/>
         <source>Delete Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="255"/>
+        <location filename="../UI/InstallInfoDialog.py" line="254"/>
         <source>Upgrade Instructions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="201"/>
+        <location filename="../UI/InstallInfoDialog.py" line="200"/>
         <source>Delete Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="201"/>
+        <location filename="../UI/InstallInfoDialog.py" line="200"/>
         <source>Do you really want to delete the installation information? It will be recreated at the next start.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="228"/>
+        <location filename="../UI/InstallInfoDialog.py" line="227"/>
         <source>Perform the following step(s) with Administrator privileges.
 </source>
         <translation type="unfinished"></translation>
@@ -51234,12 +51234,12 @@
         <translation type="unfinished">Hatalar</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="143"/>
+        <location filename="../PipInterface/PipDialog.py" line="146"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="143"/>
+        <location filename="../PipInterface/PipDialog.py" line="146"/>
         <source>The process {0} could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51946,7 +51946,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="910"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="911"/>
         <source>Search PyPI</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51966,102 +51966,102 @@
         <translation type="unfinished">Hata: {0}</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="872"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="873"/>
         <source>Show Package Details</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="872"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="873"/>
         <source>Select the package version:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="910"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="911"/>
         <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="926"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="927"/>
         <source>Install Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="929"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="930"/>
         <source>Install Pip to User-Site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="932"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="933"/>
         <source>Repair Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1046"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1050"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="939"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="940"/>
         <source>Install Local Package</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="943"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
         <source>Install Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="946"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="947"/>
         <source>Uninstall Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="949"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="950"/>
         <source>Generate Requirements...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="967"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="968"/>
         <source>Edit User Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="970"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="971"/>
         <source>Edit Environment Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="975"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="976"/>
         <source>Configure...</source>
         <translation type="unfinished">Ayarlanıyor...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1158"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1166"/>
         <source>Edit Configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1158"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1166"/>
         <source>No valid configuration path determined. Aborting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="953"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="954"/>
         <source>Show Cache Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="956"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="957"/>
         <source>Show Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="960"/>
         <source>Remove Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="962"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="963"/>
         <source>Purge Cache...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65263,231 +65263,251 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="242"/>
-        <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected language.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="249"/>
+        <location filename="../QScintilla/ShellWindow.py" line="250"/>
         <source>Restart and Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="254"/>
+        <location filename="../QScintilla/ShellWindow.py" line="255"/>
         <source>Clear the window and restart the shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="256"/>
-        <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected language.&lt;/p&gt;</source>
+        <location filename="../QScintilla/ShellWindow.py" line="885"/>
+        <source>Show History</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="885"/>
+        <source>&amp;Show History...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="891"/>
-        <source>Show History</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="891"/>
-        <source>&amp;Show History...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="897"/>
         <source>Show the shell history in a dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="895"/>
+        <source>Clear History</source>
+        <translation type="unfinished">Geçmişi Sil</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="895"/>
+        <source>&amp;Clear History...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="901"/>
-        <source>Clear History</source>
-        <translation type="unfinished">Geçmişi Sil</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="901"/>
-        <source>&amp;Clear History...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="907"/>
         <source>Clear the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="911"/>
+        <location filename="../QScintilla/ShellWindow.py" line="905"/>
         <source>Select History Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="911"/>
+        <location filename="../QScintilla/ShellWindow.py" line="905"/>
         <source>Select History &amp;Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="916"/>
+        <location filename="../QScintilla/ShellWindow.py" line="910"/>
         <source>Select an entry of the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="924"/>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
         <source>About</source>
         <translation type="unfinished">Hakkında</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
+        <source>&amp;About</source>
+        <translation type="unfinished">H&amp;akkında</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="922"/>
+        <source>Display information about this software</source>
+        <translation type="unfinished">Bu yazılım hakkında bilgi göster</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="924"/>
-        <source>&amp;About</source>
-        <translation type="unfinished">H&amp;akkında</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="928"/>
-        <source>Display information about this software</source>
-        <translation type="unfinished">Bu yazılım hakkında bilgi göster</translation>
+        <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
+        <translation type="unfinished">&lt;b&gt;Hakkında&lt;/b&gt;&lt;p&gt;Bu yazılım hakkındaki çeşitli bilgileri gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="930"/>
-        <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
-        <translation type="unfinished">&lt;b&gt;Hakkında&lt;/b&gt;&lt;p&gt;Bu yazılım hakkındaki çeşitli bilgileri gösterir.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="936"/>
         <source>About Qt</source>
         <translation type="unfinished">Qt Hakkında</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="930"/>
+        <source>About &amp;Qt</source>
+        <translation type="unfinished">&amp;Qt Hakkında</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <source>Display information about the Qt toolkit</source>
+        <translation type="unfinished">Qt araçkiti hakkında bilgi göster</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="936"/>
-        <source>About &amp;Qt</source>
-        <translation type="unfinished">&amp;Qt Hakkında</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="940"/>
-        <source>Display information about the Qt toolkit</source>
-        <translation type="unfinished">Qt araçkiti hakkında bilgi göster</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="942"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Qt Hakkında&lt;/b&gt;&lt;p&gt;Qt Araçkiti hakkında bazı bilgiler gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished">Bu nedir?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished">Bu &amp;Nedir?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished">Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="955"/>
+        <location filename="../QScintilla/ShellWindow.py" line="949"/>
         <source>Context sensitive help</source>
         <translation type="unfinished">Duyarlı yardım</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="956"/>
+        <location filename="../QScintilla/ShellWindow.py" line="950"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;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;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="../QScintilla/ShellWindow.py" line="1100"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1094"/>
         <source>About eric6 Shell Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1100"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1094"/>
         <source>The eric6 Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1128"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1122"/>
         <source>&amp;File</source>
         <translation type="unfinished">&amp;Dosya</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1137"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1131"/>
         <source>&amp;Edit</source>
         <translation type="unfinished">Düz&amp;en</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1148"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1142"/>
         <source>&amp;View</source>
         <translation type="unfinished">&amp;Görünüm</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1155"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1149"/>
         <source>Histor&amp;y</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1156"/>
+        <source>&amp;Start</source>
+        <translation type="unfinished">Ba&amp;şlat</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1162"/>
-        <source>&amp;Start</source>
-        <translation type="unfinished">Ba&amp;şlat</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1168"/>
         <source>&amp;Help</source>
         <translation type="unfinished">&amp;Yardım</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1201"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1195"/>
         <source>File</source>
         <translation type="unfinished">Dosya</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1210"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1204"/>
         <source>Edit</source>
         <translation type="unfinished">Düzen</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1211"/>
+        <source>Find</source>
+        <translation type="unfinished">Bul</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1217"/>
-        <source>Find</source>
-        <translation type="unfinished">Bul</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1223"/>
         <source>View</source>
         <translation type="unfinished">Görünüm</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1224"/>
+        <source>History</source>
+        <translation type="unfinished">Geçmiş</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1230"/>
-        <source>History</source>
-        <translation type="unfinished">Geçmiş</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1236"/>
         <source>Help</source>
         <translation type="unfinished">Yardım</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1257"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1251"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="585"/>
+        <location filename="../QScintilla/ShellWindow.py" line="579"/>
         <source>Move forward one history entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="595"/>
+        <location filename="../QScintilla/ShellWindow.py" line="589"/>
         <source>Move back one history entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1036"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1030"/>
         <source>eric6 Shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1034"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1028"/>
         <source>eric6 Shell [{0}]</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="242"/>
+        <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected environment.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="257"/>
+        <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected environment.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="284"/>
+        <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text to the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="302"/>
+        <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished">&lt;b&gt;Kopya&lt;/b&gt;&lt;p&gt;Seçilen metni clipboard kopyala.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="320"/>
+        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="337"/>
+        <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>Shelve</name>
@@ -77774,928 +77794,928 @@
 <context>
     <name>UserInterface</name>
     <message>
-        <location filename="../UI/UserInterface.py" line="270"/>
+        <location filename="../UI/UserInterface.py" line="271"/>
         <source>Initializing Plugin Manager...</source>
         <translation>Eklenti Yöneticisi Hazırlanıyor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="277"/>
+        <location filename="../UI/UserInterface.py" line="278"/>
         <source>Generating Main User Interface...</source>
         <translation>Ana Kullanıcı Arayüzü Üretiliyor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="327"/>
+        <location filename="../UI/UserInterface.py" line="328"/>
         <source>Setting up connections...</source>
         <translation>Bağlantılar ayarlanıyor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="584"/>
+        <location filename="../UI/UserInterface.py" line="585"/>
         <source>Initializing Tools...</source>
         <translation>Araçlar Hazırlanıyor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="594"/>
+        <location filename="../UI/UserInterface.py" line="595"/>
         <source>Registering Objects...</source>
         <translation>Nesneler Kaydediliyor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="627"/>
+        <location filename="../UI/UserInterface.py" line="628"/>
         <source>Initializing Actions...</source>
         <translation>İşlemler Hazırlanıyor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="629"/>
+        <location filename="../UI/UserInterface.py" line="630"/>
         <source>Initializing Menus...</source>
         <translation>Menüler Hazırlanıyor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="631"/>
+        <location filename="../UI/UserInterface.py" line="632"/>
         <source>Initializing Toolbars...</source>
         <translation>Araççubuğu Hazırlanıyor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="633"/>
+        <location filename="../UI/UserInterface.py" line="634"/>
         <source>Initializing Statusbar...</source>
         <translation>Durumçubuğu Hazırlanıyor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="660"/>
+        <location filename="../UI/UserInterface.py" line="661"/>
         <source>Initializing Single Application Server...</source>
         <translation>Tekli Uygulama Senveri Hazırlanıyor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="670"/>
+        <location filename="../UI/UserInterface.py" line="671"/>
         <source>Activating Plugins...</source>
         <translation>Eklentiler Aktif oluyor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="686"/>
+        <location filename="../UI/UserInterface.py" line="687"/>
         <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="1715"/>
+        <location filename="../UI/UserInterface.py" line="1749"/>
         <source>Project-Viewer</source>
         <translation>Proje-Görüntüleyici</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1732"/>
+        <location filename="../UI/UserInterface.py" line="1766"/>
         <source>Multiproject-Viewer</source>
         <translation>Çokluproje-Görüntüleyici</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1784"/>
         <source>Debug-Viewer</source>
         <translation>Hata Ayıklama Göstericisi</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1122"/>
+        <location filename="../UI/UserInterface.py" line="1123"/>
         <source>Cooperation</source>
         <translation>İşbirliği</translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="1836"/>
+        <source>Log-Viewer</source>
+        <translation>Kayıt-Gösterici</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1854"/>
+        <source>Task-Viewer</source>
+        <translation>Görev-Gösterici</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1873"/>
+        <source>Template-Viewer</source>
+        <translation>Şablon-Gösterici</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1819"/>
+        <source>File-Browser</source>
+        <translation>Dosya-Gözatıcısı</translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="1802"/>
-        <source>Log-Viewer</source>
-        <translation>Kayıt-Gösterici</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
-        <source>Task-Viewer</source>
-        <translation>Görev-Gösterici</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
-        <source>Template-Viewer</source>
-        <translation>Şablon-Gösterici</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
-        <source>File-Browser</source>
-        <translation>Dosya-Gözatıcısı</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
         <source>Shell</source>
         <translation>Kabuk</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1882"/>
+        <location filename="../UI/UserInterface.py" line="1916"/>
         <source>Horizontal Toolbox</source>
         <translation>Yatay Araçkutusu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1569"/>
-        <source>{0} - Passive Mode</source>
-        <translation>{0} - Pasif Mod</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1576"/>
-        <source>{0} - {1} - Passive Mode</source>
-        <translation>{0} - {1} -Pasif Mod</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1580"/>
-        <source>{0} - {1} - {2} - Passive Mode</source>
-        <translation>{0} - {1} - {2} - Pasif Mod</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1603"/>
-        <source>Quit</source>
-        <translation>Çık</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1603"/>
-        <source>&amp;Quit</source>
-        <translation>&amp;Çıkış</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1603"/>
-        <source>Ctrl+Q</source>
-        <comment>File|Quit</comment>
-        <translation>Ctrl+Q</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1609"/>
-        <source>Quit the IDE</source>
-        <translation>IDE den Çık</translation>
+        <source>{0} - Passive Mode</source>
+        <translation>{0} - Pasif Mod</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1610"/>
+        <source>{0} - {1} - Passive Mode</source>
+        <translation>{0} - {1} -Pasif Mod</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1614"/>
+        <source>{0} - {1} - {2} - Passive Mode</source>
+        <translation>{0} - {1} - {2} - Pasif Mod</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1637"/>
+        <source>Quit</source>
+        <translation>Çık</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1637"/>
+        <source>&amp;Quit</source>
+        <translation>&amp;Çıkış</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1637"/>
+        <source>Ctrl+Q</source>
+        <comment>File|Quit</comment>
+        <translation>Ctrl+Q</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1643"/>
+        <source>Quit the IDE</source>
+        <translation>IDE den Çık</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1644"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1681"/>
-        <source>Edit Profile</source>
-        <translation>Düzenleme Kesiti</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1687"/>
-        <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="1689"/>
-        <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1698"/>
-        <source>Debug Profile</source>
-        <translation>Hata Ayıklama Kesiti</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1704"/>
-        <source>Activate the debug view profile</source>
-        <translation>Debug görüntü kesitini aktif et</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1706"/>
-        <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1715"/>
-        <source>&amp;Project-Viewer</source>
-        <translation>&amp;proje-Görüntüleyici</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1715"/>
-        <source>Alt+Shift+P</source>
-        <translation>Alt+Shift+P</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1732"/>
-        <source>&amp;Multiproject-Viewer</source>
-        <translation>Çokluproje-Görü&amp;ntüleyici</translation>
+        <source>Edit Profile</source>
+        <translation>Düzenleme Kesiti</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1721"/>
+        <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="1723"/>
+        <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1732"/>
+        <source>Debug Profile</source>
+        <translation>Hata Ayıklama Kesiti</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1738"/>
+        <source>Activate the debug view profile</source>
+        <translation>Debug görüntü kesitini aktif et</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1740"/>
+        <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1749"/>
+        <source>&amp;Project-Viewer</source>
+        <translation>&amp;proje-Görüntüleyici</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1749"/>
+        <source>Alt+Shift+P</source>
+        <translation>Alt+Shift+P</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1766"/>
+        <source>&amp;Multiproject-Viewer</source>
+        <translation>Çokluproje-Görü&amp;ntüleyici</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1766"/>
         <source>Alt+Shift+M</source>
         <translation>Alt+Shift+M</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1784"/>
         <source>&amp;Debug-Viewer</source>
         <translation>Ha&amp;ta Ayıklama-Göstericisi</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1784"/>
         <source>Alt+Shift+D</source>
         <translation>Alt+Shift+D</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
+        <location filename="../UI/UserInterface.py" line="1802"/>
         <source>&amp;Shell</source>
         <translation>&amp;Kabuk</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
-        <source>Alt+Shift+S</source>
-        <translation>Alt+Shift+S</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
-        <source>Alt+Shift+F</source>
-        <translation>Alt+Shift+F</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1802"/>
+        <source>Alt+Shift+S</source>
+        <translation>Alt+Shift+S</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1819"/>
+        <source>Alt+Shift+F</source>
+        <translation>Alt+Shift+F</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1836"/>
         <source>Alt+Shift+G</source>
         <translation>Alt+Shift+G</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
+        <location filename="../UI/UserInterface.py" line="1854"/>
         <source>Alt+Shift+T</source>
         <translation>Alt+Shift+T</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
+        <location filename="../UI/UserInterface.py" line="1873"/>
         <source>Alt+Shift+A</source>
         <translation>Alt+Shift+A</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1882"/>
+        <location filename="../UI/UserInterface.py" line="1916"/>
         <source>&amp;Horizontal Toolbox</source>
         <translation>Ya&amp;tay Araçkutusu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1886"/>
+        <location filename="../UI/UserInterface.py" line="1920"/>
         <source>Toggle the Horizontal Toolbox window</source>
         <translation>Yatay Araçkutusu penceresini açkapa</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1888"/>
+        <location filename="../UI/UserInterface.py" line="1922"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1896"/>
+        <location filename="../UI/UserInterface.py" line="1930"/>
         <source>Left Sidebar</source>
         <translation>Sol Durumçubuğu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1896"/>
+        <location filename="../UI/UserInterface.py" line="1930"/>
         <source>&amp;Left Sidebar</source>
         <translation>So&amp;l Durumçubuğu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1900"/>
+        <location filename="../UI/UserInterface.py" line="1934"/>
         <source>Toggle the left sidebar window</source>
         <translation>Sol Durum çubuğu penceresini açkapa</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1901"/>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <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="1923"/>
+        <location filename="../UI/UserInterface.py" line="1957"/>
         <source>Bottom Sidebar</source>
         <translation>Alt Durumçubuğu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1923"/>
+        <location filename="../UI/UserInterface.py" line="1957"/>
         <source>&amp;Bottom Sidebar</source>
         <translation>Alt Durumçu&amp;buğu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1927"/>
+        <location filename="../UI/UserInterface.py" line="1961"/>
         <source>Toggle the bottom sidebar window</source>
         <translation>Alt Durum çubuğu penceresini açkapa</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1929"/>
+        <location filename="../UI/UserInterface.py" line="1963"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Alt+Shift+O</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>What&apos;s This?</source>
         <translation>Bu nedir?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>&amp;What&apos;s This?</source>
         <translation>Bu &amp;Nedir?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>Shift+F1</source>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2093"/>
+        <location filename="../UI/UserInterface.py" line="2127"/>
         <source>Context sensitive help</source>
         <translation>Duyarlı yardım</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2094"/>
+        <location filename="../UI/UserInterface.py" line="2128"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;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="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>Helpviewer</source>
         <translation>Yardımgösterici</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>&amp;Helpviewer...</source>
         <translation>&amp;Yardım Gösterici...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>F1</source>
         <translation>F1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2111"/>
+        <location filename="../UI/UserInterface.py" line="2145"/>
         <source>Open the helpviewer window</source>
         <translation>Yardımgösterici penceresini aç</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2131"/>
+        <location filename="../UI/UserInterface.py" line="2165"/>
         <source>Show Versions</source>
         <translation>Sürümü Göster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2131"/>
+        <location filename="../UI/UserInterface.py" line="2165"/>
         <source>Show &amp;Versions</source>
         <translation>Sürümü G&amp;öster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2135"/>
+        <location filename="../UI/UserInterface.py" line="2169"/>
         <source>Display version information</source>
         <translation>Sürüm bilgisini görüntüle</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2137"/>
+        <location filename="../UI/UserInterface.py" line="2171"/>
         <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="2147"/>
+        <location filename="../UI/UserInterface.py" line="2181"/>
         <source>Check for Updates</source>
         <translation>Güncellemeleri kontrol et</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2144"/>
+        <location filename="../UI/UserInterface.py" line="2178"/>
         <source>Check for &amp;Updates...</source>
         <translation>G&amp;üncellemeleri kontrol et...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2155"/>
+        <location filename="../UI/UserInterface.py" line="2189"/>
         <source>Show downloadable versions</source>
         <translation>Yüklenebilir sürümleri göster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2155"/>
+        <location filename="../UI/UserInterface.py" line="2189"/>
         <source>Show &amp;downloadable versions...</source>
         <translation>Yüklenebilir sürümler&amp;i göster...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2159"/>
+        <location filename="../UI/UserInterface.py" line="2193"/>
         <source>Show the versions available for download</source>
         <translation>İndirmek için mümkün olan sürümü göster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
+        <location filename="../UI/UserInterface.py" line="3779"/>
         <source>Report Bug</source>
         <translation>Hata Raporu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2196"/>
+        <location filename="../UI/UserInterface.py" line="2230"/>
         <source>Report &amp;Bug...</source>
         <translation>Hata &amp;Raporu...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2200"/>
+        <location filename="../UI/UserInterface.py" line="2234"/>
         <source>Report a bug</source>
         <translation>Bir hata rapor et</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2201"/>
+        <location filename="../UI/UserInterface.py" line="2235"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2208"/>
+        <location filename="../UI/UserInterface.py" line="2242"/>
         <source>Request Feature</source>
         <translation>İhtiyaç Duyulan Özellikler</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2208"/>
-        <source>Request &amp;Feature...</source>
-        <translation>İhtiyaç Duyulan Özellikler &amp;F...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2212"/>
-        <source>Send a feature request</source>
-        <translation>ihtiyaç duyuulan bir özelliği gönder</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2214"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3279"/>
-        <source>Unittest</source>
-        <translation>Birimtest</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2223"/>
-        <source>&amp;Unittest...</source>
-        <translation>B&amp;irimtest...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2228"/>
-        <source>Start unittest dialog</source>
-        <translation>Birimtest diyaloğunu başlat</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2229"/>
-        <source>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Perform unit tests. The dialog gives you the ability to select and run a unittest suite.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
-        <source>Unittest Restart</source>
-        <translation>Birimtestini yeniden başlat</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
-        <source>&amp;Restart Unittest...</source>
-        <translation>Bi&amp;rimtestini Yeniden Başlat...</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2242"/>
+        <source>Request &amp;Feature...</source>
+        <translation>İhtiyaç Duyulan Özellikler &amp;F...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2246"/>
+        <source>Send a feature request</source>
+        <translation>ihtiyaç duyuulan bir özelliği gönder</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2248"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3313"/>
+        <source>Unittest</source>
+        <translation>Birimtest</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2257"/>
+        <source>&amp;Unittest...</source>
+        <translation>B&amp;irimtest...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2262"/>
+        <source>Start unittest dialog</source>
+        <translation>Birimtest diyaloğunu başlat</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2263"/>
+        <source>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Perform unit tests. The dialog gives you the ability to select and run a unittest suite.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2271"/>
+        <source>Unittest Restart</source>
+        <translation>Birimtestini yeniden başlat</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2271"/>
+        <source>&amp;Restart Unittest...</source>
+        <translation>Bi&amp;rimtestini Yeniden Başlat...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>Restart last unittest</source>
         <translation>En son birimtesti yeniden başlat</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2243"/>
+        <location filename="../UI/UserInterface.py" line="2277"/>
         <source>&lt;b&gt;Restart Unittest&lt;/b&gt;&lt;p&gt;Restart the unittest performed last.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2267"/>
+        <location filename="../UI/UserInterface.py" line="2301"/>
         <source>Unittest Script</source>
         <translation>Betik Birimtesti</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2267"/>
+        <location filename="../UI/UserInterface.py" line="2301"/>
         <source>Unittest &amp;Script...</source>
         <translation>Betik Birimte&amp;sti...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2272"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Run unittest with current script</source>
         <translation>Geçerli betikle test arabirimini çalıştır</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2274"/>
+        <location filename="../UI/UserInterface.py" line="2308"/>
         <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2282"/>
+        <location filename="../UI/UserInterface.py" line="2316"/>
         <source>Unittest Project</source>
         <translation>Proje Birimtesti</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2282"/>
+        <location filename="../UI/UserInterface.py" line="2316"/>
         <source>Unittest &amp;Project...</source>
         <translation>Birimtest &amp;Proje...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2287"/>
+        <location filename="../UI/UserInterface.py" line="2321"/>
         <source>Run unittest with current project</source>
         <translation>Geçerli proje ile test arabirimini çalıştır</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2289"/>
+        <location filename="../UI/UserInterface.py" line="2323"/>
         <source>&lt;b&gt;Unittest Project&lt;/b&gt;&lt;p&gt;Run unittest with current project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2350"/>
+        <location filename="../UI/UserInterface.py" line="2384"/>
         <source>UI Previewer</source>
         <translation>UI Öngörünümü</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2350"/>
+        <location filename="../UI/UserInterface.py" line="2384"/>
         <source>&amp;UI Previewer...</source>
         <translation>&amp;UI Öngörünümü...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2355"/>
+        <location filename="../UI/UserInterface.py" line="2389"/>
         <source>Start the UI Previewer</source>
         <translation>UI Öngörünümünü Başlat</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2356"/>
-        <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="2363"/>
-        <source>Translations Previewer</source>
-        <translation>Çevirilerin Öngörünümleri</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2363"/>
-        <source>&amp;Translations Previewer...</source>
-        <translation>Çevirilerin &amp;Öngörünümleri...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2368"/>
-        <source>Start the Translations Previewer</source>
-        <translation>Çevirilerin Öngörünümlerini Başlat</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2370"/>
-        <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="2377"/>
-        <source>Compare Files</source>
-        <translation>Dosyaları Karşılaştır</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2377"/>
-        <source>&amp;Compare Files...</source>
-        <translation>D&amp;osyaları Karşılaştır...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2395"/>
-        <source>Compare two files</source>
-        <translation>İki dosyayı karşılaştır</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2383"/>
-        <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="2390"/>
-        <source>Compare Files side by side</source>
-        <translation>Dosyaları yan yana karşılaştır</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2396"/>
-        <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="2404"/>
-        <source>SQL Browser</source>
-        <translation>SQL Gözatıcısı</translation>
+        <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="2397"/>
+        <source>Translations Previewer</source>
+        <translation>Çevirilerin Öngörünümleri</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2397"/>
+        <source>&amp;Translations Previewer...</source>
+        <translation>Çevirilerin &amp;Öngörünümleri...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2402"/>
+        <source>Start the Translations Previewer</source>
+        <translation>Çevirilerin Öngörünümlerini Başlat</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2404"/>
-        <source>SQL &amp;Browser...</source>
-        <translation>SQL &amp;Gözatıcısı...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2409"/>
-        <source>Browse a SQL database</source>
-        <translation>Bir SQL veritabanına gözat</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2410"/>
-        <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="2422"/>
-        <source>Mini Editor</source>
-        <translation>Mini Düzenleyici</translation>
+        <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="2411"/>
+        <source>Compare Files</source>
+        <translation>Dosyaları Karşılaştır</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2411"/>
+        <source>&amp;Compare Files...</source>
+        <translation>D&amp;osyaları Karşılaştır...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2429"/>
+        <source>Compare two files</source>
+        <translation>İki dosyayı karşılaştır</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2417"/>
+        <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="2424"/>
+        <source>Compare Files side by side</source>
+        <translation>Dosyaları yan yana karşılaştır</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2430"/>
+        <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="2438"/>
+        <source>SQL Browser</source>
+        <translation>SQL Gözatıcısı</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2438"/>
+        <source>SQL &amp;Browser...</source>
+        <translation>SQL &amp;Gözatıcısı...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2443"/>
+        <source>Browse a SQL database</source>
+        <translation>Bir SQL veritabanına gözat</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2444"/>
+        <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="2456"/>
+        <source>Mini Editor</source>
+        <translation>Mini Düzenleyici</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2451"/>
         <source>Mini &amp;Editor...</source>
         <translation>Mini &amp;Düzenleyici...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2423"/>
+        <location filename="../UI/UserInterface.py" line="2457"/>
         <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="2461"/>
+        <location filename="../UI/UserInterface.py" line="2495"/>
         <source>Icon Editor</source>
         <translation>İkon Düzenleyici</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2461"/>
-        <source>&amp;Icon Editor...</source>
-        <translation>&amp;İkon Düzenleyici...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2490"/>
-        <source>Preferences</source>
-        <translation>Seçenekler</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2490"/>
-        <source>&amp;Preferences...</source>
-        <translation>&amp;Seçenekler...</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2495"/>
+        <source>&amp;Icon Editor...</source>
+        <translation>&amp;İkon Düzenleyici...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2524"/>
+        <source>Preferences</source>
+        <translation>Seçenekler</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2524"/>
+        <source>&amp;Preferences...</source>
+        <translation>&amp;Seçenekler...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2529"/>
         <source>Set the prefered configuration</source>
         <translation>tercih edilen ayarları yapınız</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2497"/>
+        <location filename="../UI/UserInterface.py" line="2531"/>
         <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="2506"/>
+        <location filename="../UI/UserInterface.py" line="2540"/>
         <source>Export Preferences</source>
         <translation>Seçenekleri Dışa Aktar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2506"/>
-        <source>E&amp;xport Preferences...</source>
-        <translation>Tercihleri Dı&amp;şa Aktar...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2511"/>
-        <source>Export the current configuration</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2513"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2520"/>
-        <source>Import Preferences</source>
-        <translation>Seçenekleri İçe Aktar</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2520"/>
-        <source>I&amp;mport Preferences...</source>
-        <translation>Tercihleri İ&amp;çeri Aktar...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2525"/>
-        <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="2527"/>
-        <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2534"/>
-        <source>Reload APIs</source>
-        <translation>API&apos;leri yeniden yükle</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2534"/>
-        <source>Reload &amp;APIs</source>
-        <translation>&amp;API&apos;leri yeniden yükle</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2538"/>
-        <source>Reload the API information</source>
-        <translation>API bilgisini yeniden yükle</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2540"/>
-        <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2552"/>
-        <source>Show external tools</source>
-        <translation>Harici araçları göster</translation>
+        <source>E&amp;xport Preferences...</source>
+        <translation>Tercihleri Dı&amp;şa Aktar...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2545"/>
+        <source>Export the current configuration</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2547"/>
-        <source>Show external &amp;tools</source>
-        <translation>Karak&amp;ter tablosunu göster</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2563"/>
-        <source>View Profiles</source>
-        <translation>Görünüm Kesiti</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2563"/>
-        <source>&amp;View Profiles...</source>
-        <translation>&amp;Görünüm Kesiti...</translation>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2554"/>
+        <source>Import Preferences</source>
+        <translation>Seçenekleri İçe Aktar</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2554"/>
+        <source>I&amp;mport Preferences...</source>
+        <translation>Tercihleri İ&amp;çeri Aktar...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2559"/>
+        <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="2561"/>
+        <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2568"/>
-        <source>Configure view profiles</source>
-        <translation>Görünüm kesitlerini ayarla</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2570"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2580"/>
-        <source>Toolbars</source>
-        <translation>Araççubuğu</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2580"/>
-        <source>Tool&amp;bars...</source>
-        <translation>Araççu&amp;buğu...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2585"/>
-        <source>Configure toolbars</source>
-        <translation>Araççubuğunu ayarla</translation>
+        <source>Reload APIs</source>
+        <translation>API&apos;leri yeniden yükle</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2568"/>
+        <source>Reload &amp;APIs</source>
+        <translation>&amp;API&apos;leri yeniden yükle</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2572"/>
+        <source>Reload the API information</source>
+        <translation>API bilgisini yeniden yükle</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2574"/>
+        <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2586"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2595"/>
-        <source>Keyboard Shortcuts</source>
-        <translation>Klavye Kısayolları</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2595"/>
-        <source>Keyboard &amp;Shortcuts...</source>
-        <translation>Klavye Kı&amp;sayolları...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2600"/>
-        <source>Set the keyboard shortcuts</source>
-        <translation>Klavye kısayollarını ayarla</translation>
+        <source>Show external tools</source>
+        <translation>Harici araçları göster</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2581"/>
+        <source>Show external &amp;tools</source>
+        <translation>Karak&amp;ter tablosunu göster</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2597"/>
+        <source>View Profiles</source>
+        <translation>Görünüm Kesiti</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2597"/>
+        <source>&amp;View Profiles...</source>
+        <translation>&amp;Görünüm Kesiti...</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2602"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6217"/>
-        <source>Export Keyboard Shortcuts</source>
-        <translation>Kılavye Kısa Yollarını Dışa Aktar</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2610"/>
-        <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="2615"/>
-        <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="2617"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6241"/>
-        <source>Import Keyboard Shortcuts</source>
-        <translation>Klavye kısayollarını İçe Aktar</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2624"/>
-        <source>&amp;Import Keyboard Shortcuts...</source>
-        <translation>Klavye K&amp;ısayollarını İçe Aktar...</translation>
+        <source>Configure view profiles</source>
+        <translation>Görünüm kesitlerini ayarla</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2604"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2614"/>
+        <source>Toolbars</source>
+        <translation>Araççubuğu</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2614"/>
+        <source>Tool&amp;bars...</source>
+        <translation>Araççu&amp;buğu...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2619"/>
+        <source>Configure toolbars</source>
+        <translation>Araççubuğunu ayarla</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2620"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2629"/>
+        <source>Keyboard Shortcuts</source>
+        <translation>Klavye Kısayolları</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2629"/>
+        <source>Keyboard &amp;Shortcuts...</source>
+        <translation>Klavye Kı&amp;sayolları...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2634"/>
+        <source>Set the keyboard shortcuts</source>
+        <translation>Klavye kısayollarını ayarla</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2636"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6251"/>
+        <source>Export Keyboard Shortcuts</source>
+        <translation>Kılavye Kısa Yollarını Dışa Aktar</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2644"/>
+        <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="2649"/>
+        <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="2651"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6275"/>
+        <source>Import Keyboard Shortcuts</source>
+        <translation>Klavye kısayollarını İçe Aktar</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2658"/>
+        <source>&amp;Import Keyboard Shortcuts...</source>
+        <translation>Klavye K&amp;ısayollarını İçe Aktar...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2663"/>
         <source>Import the keyboard shortcuts</source>
         <translation>Klavye kısayolları içeri aktarılıyor</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2631"/>
+        <location filename="../UI/UserInterface.py" line="2665"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2689"/>
+        <location filename="../UI/UserInterface.py" line="2723"/>
         <source>Activate current editor</source>
         <translation>Geçerli düzenleyiciyi aktif yap</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2689"/>
+        <location filename="../UI/UserInterface.py" line="2723"/>
         <source>Alt+Shift+E</source>
         <translation>Alt+Shift+E</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2699"/>
+        <location filename="../UI/UserInterface.py" line="2733"/>
         <source>Show next</source>
         <translation>Sonrakini göster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2699"/>
+        <location filename="../UI/UserInterface.py" line="2733"/>
         <source>Ctrl+Alt+Tab</source>
         <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2708"/>
+        <location filename="../UI/UserInterface.py" line="2742"/>
         <source>Show previous</source>
         <translation>Öncekini göster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2708"/>
+        <location filename="../UI/UserInterface.py" line="2742"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2717"/>
+        <location filename="../UI/UserInterface.py" line="2751"/>
         <source>Switch between tabs</source>
         <translation>Sekmeler arasında değiştir</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2717"/>
+        <location filename="../UI/UserInterface.py" line="2751"/>
         <source>Ctrl+1</source>
         <translation>Ctrl+1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2726"/>
+        <location filename="../UI/UserInterface.py" line="2760"/>
         <source>Plugin Infos</source>
         <translation>Eklenti Bilgisi</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2726"/>
+        <location filename="../UI/UserInterface.py" line="2760"/>
         <source>&amp;Plugin Infos...</source>
         <translation>Eklenti Bil&amp;gisi...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2730"/>
+        <location filename="../UI/UserInterface.py" line="2764"/>
         <source>Show Plugin Infos</source>
         <translation>Eklenti Bilgisini Göster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2731"/>
-        <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="2744"/>
-        <source>Install Plugins</source>
-        <translation>Eklenti Kur</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2739"/>
-        <source>&amp;Install Plugins...</source>
-        <translation>Ekle&amp;nti Kur...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2745"/>
-        <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="2757"/>
-        <source>Uninstall Plugin</source>
-        <translation>Eklenti Kaldır</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2752"/>
-        <source>&amp;Uninstall Plugin...</source>
-        <translation>Ekle&amp;nti Kaldır...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2758"/>
-        <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="2765"/>
+        <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="2778"/>
+        <source>Install Plugins</source>
+        <translation>Eklenti Kur</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2773"/>
+        <source>&amp;Install Plugins...</source>
+        <translation>Ekle&amp;nti Kur...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2779"/>
+        <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="2791"/>
+        <source>Uninstall Plugin</source>
+        <translation>Eklenti Kaldır</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2786"/>
+        <source>&amp;Uninstall Plugin...</source>
+        <translation>Ekle&amp;nti Kaldır...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2792"/>
+        <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="2799"/>
         <source>Plugin Repository</source>
         <translation>Eklenti Havuzu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2765"/>
+        <location filename="../UI/UserInterface.py" line="2799"/>
         <source>Plugin &amp;Repository...</source>
         <translation>Eklenti Hav&amp;uzu...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2770"/>
+        <location filename="../UI/UserInterface.py" line="2804"/>
         <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="2772"/>
+        <location filename="../UI/UserInterface.py" line="2806"/>
         <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>
@@ -78725,17 +78745,17 @@
         <translation type="obsolete">PyQt4 Begelerini aç</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2889"/>
+        <location filename="../UI/UserInterface.py" line="2923"/>
         <source>Eric API Documentation</source>
         <translation>Eric API Belgeleri</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2889"/>
+        <location filename="../UI/UserInterface.py" line="2923"/>
         <source>&amp;Eric API Documentation</source>
         <translation>&amp;Eric API Dökümanı</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2893"/>
+        <location filename="../UI/UserInterface.py" line="2927"/>
         <source>Open Eric API Documentation</source>
         <translation>Eric API Belgelerini Aç</translation>
     </message>
@@ -78755,112 +78775,112 @@
         <translation type="obsolete">PySide belgelerini açın</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3074"/>
+        <location filename="../UI/UserInterface.py" line="3108"/>
         <source>&amp;Unittest</source>
         <translation>Bir&amp;imtest</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3018"/>
+        <location filename="../UI/UserInterface.py" line="3052"/>
         <source>E&amp;xtras</source>
         <translation>İla&amp;veler</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3028"/>
+        <location filename="../UI/UserInterface.py" line="3062"/>
         <source>Wi&amp;zards</source>
         <translation>Sihirba&amp;z</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3091"/>
+        <location filename="../UI/UserInterface.py" line="3125"/>
         <source>Select Tool Group</source>
         <translation>Araç Grubunu Seç</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3102"/>
+        <location filename="../UI/UserInterface.py" line="3136"/>
         <source>Se&amp;ttings</source>
         <translation>Ayar&amp;lar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3132"/>
+        <location filename="../UI/UserInterface.py" line="3166"/>
         <source>&amp;Window</source>
         <translation>&amp;Pencere</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3193"/>
+        <location filename="../UI/UserInterface.py" line="3227"/>
         <source>&amp;Toolbars</source>
         <translation>&amp;Araççubuğu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3055"/>
+        <location filename="../UI/UserInterface.py" line="3089"/>
         <source>P&amp;lugins</source>
         <translation>Ek&amp;lentiler</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3064"/>
+        <location filename="../UI/UserInterface.py" line="3098"/>
         <source>Configure...</source>
         <translation>Ayarlanıyor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3207"/>
+        <location filename="../UI/UserInterface.py" line="3241"/>
         <source>&amp;Help</source>
         <translation>&amp;Yardım</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3278"/>
+        <location filename="../UI/UserInterface.py" line="3312"/>
         <source>Tools</source>
         <translation>Araçlar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3280"/>
+        <location filename="../UI/UserInterface.py" line="3314"/>
         <source>Settings</source>
         <translation>Ayarlar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5147"/>
+        <location filename="../UI/UserInterface.py" line="5181"/>
         <source>Help</source>
         <translation>Yardım</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3282"/>
+        <location filename="../UI/UserInterface.py" line="3316"/>
         <source>Profiles</source>
         <translation>Kesitler</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3283"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <source>Plugins</source>
         <translation>Eklentiler</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3452"/>
+        <location filename="../UI/UserInterface.py" line="3486"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3459"/>
+        <location filename="../UI/UserInterface.py" line="3493"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3466"/>
+        <location filename="../UI/UserInterface.py" line="3500"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3473"/>
+        <location filename="../UI/UserInterface.py" line="3507"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3480"/>
+        <location filename="../UI/UserInterface.py" line="3514"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3487"/>
+        <location filename="../UI/UserInterface.py" line="3521"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3563"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>External Tools/{0}</source>
         <translation>Harici Araçlar/{0}</translation>
     </message>
@@ -78870,52 +78890,52 @@
         <translation type="obsolete">&lt;h3&gt;Sürüm Numaraları&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7214"/>
+        <location filename="../UI/UserInterface.py" line="7248"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
+        <location filename="../UI/UserInterface.py" line="3779"/>
         <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="4065"/>
+        <location filename="../UI/UserInterface.py" line="4099"/>
         <source>Restart application</source>
         <translation>Uygulmayı yeniden başlat</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4065"/>
+        <location filename="../UI/UserInterface.py" line="4099"/>
         <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="4146"/>
+        <location filename="../UI/UserInterface.py" line="4180"/>
         <source>Configure Tool Groups ...</source>
         <translation>Alet Grupları Ayarlanıyor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4150"/>
+        <location filename="../UI/UserInterface.py" line="4184"/>
         <source>Configure current Tool Group ...</source>
         <translation>Geçerli alet grubunu ayarla...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4101"/>
+        <location filename="../UI/UserInterface.py" line="4135"/>
         <source>&amp;Builtin Tools</source>
         <translation>Ya&amp;pılandırma Araçları</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4118"/>
+        <location filename="../UI/UserInterface.py" line="4152"/>
         <source>&amp;Plugin Tools</source>
         <translation>Eklen&amp;ti Araçları</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4267"/>
+        <location filename="../UI/UserInterface.py" line="4301"/>
         <source>&amp;Show all</source>
         <translation>Hepsini Gö&amp;ster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4269"/>
+        <location filename="../UI/UserInterface.py" line="4303"/>
         <source>&amp;Hide all</source>
         <translation>&amp;Hepsini gizle</translation>
     </message>
@@ -78930,109 +78950,109 @@
         <translation type="obsolete">Qt3 Desteği</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5275"/>
+        <location filename="../UI/UserInterface.py" line="5309"/>
         <source>Problem</source>
         <translation>Problem</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5275"/>
+        <location filename="../UI/UserInterface.py" line="5309"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5470"/>
+        <location filename="../UI/UserInterface.py" line="5504"/>
         <source>Process Generation Error</source>
         <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5000"/>
+        <location filename="../UI/UserInterface.py" line="5034"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5070"/>
+        <location filename="../UI/UserInterface.py" line="5104"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5114"/>
+        <location filename="../UI/UserInterface.py" line="5148"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5147"/>
-        <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="5161"/>
-        <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"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="5181"/>
+        <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="5195"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5215"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5231"/>
+        <location filename="../UI/UserInterface.py" line="5265"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5288"/>
+        <location filename="../UI/UserInterface.py" line="5322"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5311"/>
+        <location filename="../UI/UserInterface.py" line="5345"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5415"/>
+        <location filename="../UI/UserInterface.py" line="5449"/>
         <source>External Tools</source>
         <translation>Harici Araçlar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5406"/>
+        <location filename="../UI/UserInterface.py" line="5440"/>
         <source>No tool entry found for external tool &apos;{0}&apos; in tool group &apos;{1}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5415"/>
+        <location filename="../UI/UserInterface.py" line="5449"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5454"/>
+        <location filename="../UI/UserInterface.py" line="5488"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5470"/>
+        <location filename="../UI/UserInterface.py" line="5504"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5548"/>
+        <location filename="../UI/UserInterface.py" line="5582"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5809"/>
+        <location filename="../UI/UserInterface.py" line="5843"/>
         <source>Documentation Missing</source>
         <translation>Eksik Belgeleme</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5809"/>
+        <location filename="../UI/UserInterface.py" line="5843"/>
         <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5792"/>
+        <location filename="../UI/UserInterface.py" line="5826"/>
         <source>Documentation</source>
         <translation>Belgeleme</translation>
     </message>
@@ -79042,698 +79062,698 @@
         <translation type="obsolete">&lt;p&gt;PyQt4 Belgelerinin başlama noktası ayarlanmamış.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6411"/>
+        <location filename="../UI/UserInterface.py" line="6445"/>
         <source>Save tasks</source>
         <translation>Görevleri kaydet</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6411"/>
+        <location filename="../UI/UserInterface.py" line="6445"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6440"/>
+        <location filename="../UI/UserInterface.py" line="6474"/>
         <source>Read tasks</source>
         <translation>Görevler Okunuyor</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6440"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6536"/>
-        <source>Save session</source>
-        <translation>Oturumu kaydet</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="6474"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6570"/>
+        <source>Save session</source>
+        <translation>Oturumu kaydet</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6508"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6520"/>
+        <location filename="../UI/UserInterface.py" line="6554"/>
         <source>Read session</source>
         <translation>Oturumu oku</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6520"/>
+        <location filename="../UI/UserInterface.py" line="6554"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6804"/>
+        <location filename="../UI/UserInterface.py" line="6838"/>
         <source>Drop Error</source>
         <translation>Düşme hatası</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6804"/>
+        <location filename="../UI/UserInterface.py" line="6838"/>
         <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="6989"/>
+        <location filename="../UI/UserInterface.py" line="7023"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Vazgeç</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6998"/>
+        <location filename="../UI/UserInterface.py" line="7032"/>
         <source>Trying host {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7156"/>
+        <location filename="../UI/UserInterface.py" line="7190"/>
         <source>Update available</source>
         <translation>Güncelleme mümkün değil</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7175"/>
+        <location filename="../UI/UserInterface.py" line="7209"/>
         <source>Error during updates check</source>
         <translation>Güncellemeleri kontrol esnasında hata</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7175"/>
+        <location filename="../UI/UserInterface.py" line="7209"/>
         <source>Could not perform updates check.</source>
         <translation>Güncellemelere ulaşamıyorum.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7199"/>
+        <location filename="../UI/UserInterface.py" line="7233"/>
         <source>&lt;h3&gt;Available versions&lt;/h3&gt;&lt;table&gt;</source>
         <translation>&lt;h3&gt;Mümkün sürümler&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7251"/>
+        <location filename="../UI/UserInterface.py" line="7285"/>
         <source>First time usage</source>
         <translation>İlk kullanım</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1178"/>
+        <location filename="../UI/UserInterface.py" line="1179"/>
         <source>Symbols</source>
         <translation>Semboller</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1187"/>
+        <location filename="../UI/UserInterface.py" line="1188"/>
         <source>Numbers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>Alt+Shift+Y</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Alt+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2867"/>
+        <location filename="../UI/UserInterface.py" line="2901"/>
         <source>Python 3 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2867"/>
+        <location filename="../UI/UserInterface.py" line="2901"/>
         <source>Python &amp;3 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2871"/>
+        <location filename="../UI/UserInterface.py" line="2905"/>
         <source>Open Python 3 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6241"/>
+        <location filename="../UI/UserInterface.py" line="6275"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7064"/>
+        <location filename="../UI/UserInterface.py" line="7098"/>
         <source>Error getting versions information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7057"/>
+        <location filename="../UI/UserInterface.py" line="7091"/>
         <source>The versions information could not be downloaded. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6009"/>
+        <location filename="../UI/UserInterface.py" line="6043"/>
         <source>Open Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6009"/>
+        <location filename="../UI/UserInterface.py" line="6043"/>
         <source>Could not start a web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7064"/>
+        <location filename="../UI/UserInterface.py" line="7098"/>
         <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="695"/>
+        <location filename="../UI/UserInterface.py" line="696"/>
         <source>Setting View Profile...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="708"/>
+        <location filename="../UI/UserInterface.py" line="709"/>
         <source>Reading Tasks...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="713"/>
+        <location filename="../UI/UserInterface.py" line="714"/>
         <source>Reading Templates...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="718"/>
+        <location filename="../UI/UserInterface.py" line="719"/>
         <source>Starting Debugger...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>New Window</source>
         <translation type="unfinished">Yeni Pencere</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>New &amp;Window</source>
         <translation type="unfinished">Yeni &amp;Pencere</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2251"/>
+        <location filename="../UI/UserInterface.py" line="2285"/>
         <source>Unittest Rerun Failed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2251"/>
+        <location filename="../UI/UserInterface.py" line="2285"/>
         <source>Rerun Failed Tests...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2256"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Rerun failed tests of the last run</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2258"/>
+        <location filename="../UI/UserInterface.py" line="2292"/>
         <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last unittest run.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2390"/>
+        <location filename="../UI/UserInterface.py" line="2424"/>
         <source>Compare &amp;Files side by side...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2475"/>
+        <location filename="../UI/UserInterface.py" line="2509"/>
         <source>Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2475"/>
+        <location filename="../UI/UserInterface.py" line="2509"/>
         <source>&amp;Snapshot...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2480"/>
+        <location filename="../UI/UserInterface.py" line="2514"/>
         <source>Take snapshots of a screen region</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2482"/>
+        <location filename="../UI/UserInterface.py" line="2516"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5383"/>
+        <location filename="../UI/UserInterface.py" line="5417"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7270"/>
+        <location filename="../UI/UserInterface.py" line="7304"/>
         <source>Select Workspace Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
+        <location filename="../UI/UserInterface.py" line="1891"/>
         <source>Left Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1869"/>
+        <location filename="../UI/UserInterface.py" line="1903"/>
         <source>Right Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1721"/>
+        <location filename="../UI/UserInterface.py" line="1755"/>
         <source>Switch the input focus to the Project-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1723"/>
+        <location filename="../UI/UserInterface.py" line="1757"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1738"/>
+        <location filename="../UI/UserInterface.py" line="1772"/>
         <source>Switch the input focus to the Multiproject-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1740"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1756"/>
-        <source>Switch the input focus to the Debug-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1758"/>
-        <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"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1774"/>
-        <source>Switch the input focus to the Shell window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1776"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
-        <source>&amp;File-Browser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1791"/>
-        <source>Switch the input focus to the File-Browser window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1793"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1802"/>
-        <source>Lo&amp;g-Viewer</source>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1790"/>
+        <source>Switch the input focus to the Debug-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1792"/>
+        <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"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1808"/>
-        <source>Switch the input focus to the Log-Viewer window.</source>
+        <source>Switch the input focus to the Shell window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1810"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1819"/>
+        <source>&amp;File-Browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1825"/>
+        <source>Switch the input focus to the File-Browser window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1827"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1836"/>
+        <source>Lo&amp;g-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1842"/>
+        <source>Switch the input focus to the Log-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1844"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
+        <location filename="../UI/UserInterface.py" line="1854"/>
         <source>&amp;Task-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1826"/>
-        <source>Switch the input focus to the Task-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
-        <source>Templ&amp;ate-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1845"/>
-        <source>Switch the input focus to the Template-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1847"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
-        <source>&amp;Left Toolbox</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1860"/>
-        <source>Toggle the Left Toolbox window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1861"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1869"/>
-        <source>&amp;Right Toolbox</source>
+        <source>Switch the input focus to the Task-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1873"/>
+        <source>Templ&amp;ate-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1879"/>
+        <source>Switch the input focus to the Template-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1881"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1891"/>
+        <source>&amp;Left Toolbox</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1894"/>
+        <source>Toggle the Left Toolbox window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1895"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1903"/>
+        <source>&amp;Right Toolbox</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1907"/>
         <source>Toggle the Right Toolbox window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1874"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1909"/>
+        <location filename="../UI/UserInterface.py" line="1943"/>
         <source>Right Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1909"/>
+        <location filename="../UI/UserInterface.py" line="1943"/>
         <source>&amp;Right Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1913"/>
+        <location filename="../UI/UserInterface.py" line="1947"/>
         <source>Toggle the right sidebar window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1915"/>
+        <location filename="../UI/UserInterface.py" line="1949"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Cooperation-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Co&amp;operation-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1944"/>
+        <location filename="../UI/UserInterface.py" line="1978"/>
         <source>Switch the input focus to the Cooperation-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1946"/>
+        <location filename="../UI/UserInterface.py" line="1980"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>Symbols-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>S&amp;ymbols-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1981"/>
+        <location filename="../UI/UserInterface.py" line="2015"/>
         <source>Switch the input focus to the Symbols-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1983"/>
+        <location filename="../UI/UserInterface.py" line="2017"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Numbers-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Num&amp;bers-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2000"/>
+        <location filename="../UI/UserInterface.py" line="2034"/>
         <source>Switch the input focus to the Numbers-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2002"/>
+        <location filename="../UI/UserInterface.py" line="2036"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3141"/>
+        <location filename="../UI/UserInterface.py" line="3175"/>
         <source>&amp;Windows</source>
         <translation type="unfinished">&amp;Pencereler</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1828"/>
+        <location filename="../UI/UserInterface.py" line="1862"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>IRC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>&amp;IRC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1963"/>
+        <location filename="../UI/UserInterface.py" line="1997"/>
         <source>Switch the input focus to the IRC window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1965"/>
+        <location filename="../UI/UserInterface.py" line="1999"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2309"/>
+        <location filename="../UI/UserInterface.py" line="2343"/>
         <source>Qt-Designer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2309"/>
+        <location filename="../UI/UserInterface.py" line="2343"/>
         <source>Qt-&amp;Designer...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2314"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Start Qt-Designer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2315"/>
+        <location filename="../UI/UserInterface.py" line="2349"/>
         <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2335"/>
+        <location filename="../UI/UserInterface.py" line="2369"/>
         <source>Qt-Linguist</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2335"/>
+        <location filename="../UI/UserInterface.py" line="2369"/>
         <source>Qt-&amp;Linguist...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2340"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Start Qt-Linguist</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2341"/>
+        <location filename="../UI/UserInterface.py" line="2375"/>
         <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2831"/>
+        <location filename="../UI/UserInterface.py" line="2865"/>
         <source>Qt5 Documentation</source>
         <translation type="unfinished">Qt4 Belgeleri {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2831"/>
+        <location filename="../UI/UserInterface.py" line="2865"/>
         <source>Qt&amp;5 Documentation</source>
         <translation type="unfinished">Qt&amp;4 Belgeleri {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2835"/>
+        <location filename="../UI/UserInterface.py" line="2869"/>
         <source>Open Qt5 Documentation</source>
         <translation type="unfinished">QT4 Belgelerini Aç {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2639"/>
+        <location filename="../UI/UserInterface.py" line="2673"/>
         <source>Manage SSL Certificates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2639"/>
+        <location filename="../UI/UserInterface.py" line="2673"/>
         <source>Manage SSL Certificates...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2644"/>
+        <location filename="../UI/UserInterface.py" line="2678"/>
         <source>Manage the saved SSL certificates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2646"/>
+        <location filename="../UI/UserInterface.py" line="2680"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2655"/>
+        <location filename="../UI/UserInterface.py" line="2689"/>
         <source>Edit Message Filters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2655"/>
+        <location filename="../UI/UserInterface.py" line="2689"/>
         <source>Edit Message Filters...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2660"/>
+        <location filename="../UI/UserInterface.py" line="2694"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2662"/>
+        <location filename="../UI/UserInterface.py" line="2696"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2846"/>
+        <location filename="../UI/UserInterface.py" line="2880"/>
         <source>PyQt5 Documentation</source>
         <translation type="unfinished">PyQt4 Belgeleri {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2846"/>
+        <location filename="../UI/UserInterface.py" line="2880"/>
         <source>PyQt&amp;5 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2850"/>
+        <location filename="../UI/UserInterface.py" line="2884"/>
         <source>Open PyQt5 Documentation</source>
         <translation type="unfinished">PyQt4 Begelerini aç {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5687"/>
+        <location filename="../UI/UserInterface.py" line="5721"/>
         <source>&lt;p&gt;The PyQt5 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;PyQt4 Belgelerinin başlama noktası ayarlanmamış.&lt;/p&gt; {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2873"/>
+        <location filename="../UI/UserInterface.py" line="2907"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6989"/>
+        <location filename="../UI/UserInterface.py" line="7023"/>
         <source>%v/%m</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2174"/>
+        <location filename="../UI/UserInterface.py" line="2208"/>
         <source>Show Error Log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2170"/>
+        <location filename="../UI/UserInterface.py" line="2204"/>
         <source>Show Error &amp;Log...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2175"/>
+        <location filename="../UI/UserInterface.py" line="2209"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6993"/>
+        <location filename="../UI/UserInterface.py" line="7027"/>
         <source>Version Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1668"/>
+        <location filename="../UI/UserInterface.py" line="1702"/>
         <source>Open a new eric6 instance</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1670"/>
+        <location filename="../UI/UserInterface.py" line="1704"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric6 IDE.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2113"/>
+        <location filename="../UI/UserInterface.py" line="2147"/>
         <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric6 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 search in the Qt help collection.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2148"/>
+        <location filename="../UI/UserInterface.py" line="2182"/>
         <source>&lt;b&gt;Check for Updates...&lt;/b&gt;&lt;p&gt;Checks the internet for updates of eric6.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Güncellemeleri kontrol et...&lt;/b&gt;&lt;p&gt;İnternetten eric5 güncellemesi olup olmadını kontrol et.&lt;/p&gt; {6.?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2161"/>
+        <location filename="../UI/UserInterface.py" line="2195"/>
         <source>&lt;b&gt;Show downloadable versions...&lt;/b&gt;&lt;p&gt;Shows the eric6 versions available for download from the internet.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2445"/>
+        <location filename="../UI/UserInterface.py" line="2479"/>
         <source>eric6 Web Browser</source>
         <translation type="unfinished">Eric5 Web Gözatıcısı {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2445"/>
+        <location filename="../UI/UserInterface.py" line="2479"/>
         <source>eric6 &amp;Web Browser...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2450"/>
+        <location filename="../UI/UserInterface.py" line="2484"/>
         <source>Start the eric6 Web Browser</source>
         <translation type="unfinished">Eric5 Web Gözatıcısınıi başlat {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2452"/>
+        <location filename="../UI/UserInterface.py" line="2486"/>
         <source>&lt;b&gt;eric6 Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric6 Web Browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2466"/>
+        <location filename="../UI/UserInterface.py" line="2500"/>
         <source>Start the eric6 Icon Editor</source>
         <translation type="unfinished">Eric5 İkon düzenleyiciyi başlat {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2468"/>
+        <location filename="../UI/UserInterface.py" line="2502"/>
         <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Icon Editor for editing simple icons.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2554"/>
+        <location filename="../UI/UserInterface.py" line="2588"/>
         <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 eric6.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2895"/>
+        <location filename="../UI/UserInterface.py" line="2929"/>
         <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 eric6 installation directory.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -79743,393 +79763,393 @@
         <translation type="obsolete">Qt v.3 eric5 tarafından desteklenmiyor. {3 ?} {6.?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7156"/>
+        <location filename="../UI/UserInterface.py" line="7190"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric6 is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7168"/>
+        <location filename="../UI/UserInterface.py" line="7202"/>
         <source>Eric6 is up to date</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="7202"/>
+        <source>You are using the latest version of eric6</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7285"/>
+        <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
+        <translation type="unfinished">Eric5 henüz ayarlanmadı. Ayarlar Diyaloğu başlatılıyor. {6 ?}</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="673"/>
+        <source>Generating Plugins Toolbars...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4155"/>
+        <source>&amp;User Tools</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4227"/>
+        <source>No User Tools Configured</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7043"/>
+        <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2464"/>
+        <source>Hex Editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2464"/>
+        <source>&amp;Hex Editor...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2469"/>
+        <source>Start the eric6 Hex Editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2471"/>
+        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2712"/>
+        <source>Clear private data</source>
+        <translation type="unfinished">Özel verileri temizle</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2714"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1670"/>
+        <source>Save session...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1675"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6592"/>
+        <source>Load session</source>
+        <translation type="unfinished">Oturum yükleniyor</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1683"/>
+        <source>Load session...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1688"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6592"/>
+        <source>eric6 Session Files (*.e5s)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6643"/>
+        <source>Crash Session found!</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6643"/>
+        <source>A session file of a crashed session was found. Shall this session be restored?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="676"/>
+        <source>Cleaning Plugins Download Area...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="668"/>
+        <source>Initializing Plugins...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7178"/>
+        <source>Update Check</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7178"/>
+        <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="7168"/>
-        <source>You are using the latest version of eric6</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7251"/>
-        <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
-        <translation type="unfinished">Eric5 henüz ayarlanmadı. Ayarlar Diyaloğu başlatılıyor. {6 ?}</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="672"/>
-        <source>Generating Plugins Toolbars...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4121"/>
-        <source>&amp;User Tools</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4193"/>
-        <source>No User Tools Configured</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7009"/>
-        <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2430"/>
-        <source>Hex Editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2430"/>
-        <source>&amp;Hex Editor...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2435"/>
-        <source>Start the eric6 Hex Editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2437"/>
-        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2678"/>
-        <source>Clear private data</source>
-        <translation type="unfinished">Özel verileri temizle</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2680"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1636"/>
-        <source>Save session...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1641"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6558"/>
-        <source>Load session</source>
-        <translation type="unfinished">Oturum yükleniyor</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
-        <source>Load session...</source>
+        <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2047"/>
+        <source>Code Documentation Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2870"/>
+        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2886"/>
+        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2944"/>
+        <source>PySide2 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2944"/>
+        <source>PySide&amp;2 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2948"/>
+        <source>Open PySide2 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2950"/>
+        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5826"/>
+        <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2820"/>
+        <source>Virtualenv Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2814"/>
+        <source>&amp;Virtualenv Manager...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2822"/>
+        <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2837"/>
+        <source>Virtualenv Configurator</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2831"/>
+        <source>Virtualenv &amp;Configurator...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2839"/>
+        <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3182"/>
+        <source>Left Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3194"/>
+        <source>Bottom Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3201"/>
+        <source>Right Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3221"/>
+        <source>Plug-ins</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1654"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6558"/>
-        <source>eric6 Session Files (*.e5s)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6609"/>
-        <source>Crash Session found!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6609"/>
-        <source>A session file of a crashed session was found. Shall this session be restored?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="675"/>
-        <source>Cleaning Plugins Download Area...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="667"/>
-        <source>Initializing Plugins...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7144"/>
-        <source>Update Check</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7144"/>
-        <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7134"/>
-        <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2013"/>
-        <source>Code Documentation Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2836"/>
-        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2852"/>
-        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2910"/>
-        <source>PySide2 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2910"/>
-        <source>PySide&amp;2 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2914"/>
-        <source>Open PySide2 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2916"/>
-        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5792"/>
-        <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2786"/>
-        <source>Virtualenv Manager</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2780"/>
-        <source>&amp;Virtualenv Manager...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2788"/>
-        <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2803"/>
-        <source>Virtualenv Configurator</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2797"/>
-        <source>Virtualenv &amp;Configurator...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2805"/>
-        <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3148"/>
-        <source>Left Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3160"/>
-        <source>Bottom Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3167"/>
-        <source>Right Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3187"/>
-        <source>Plug-ins</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1620"/>
         <source>Restart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1620"/>
+        <location filename="../UI/UserInterface.py" line="1654"/>
         <source>Ctrl+Shift+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1626"/>
+        <location filename="../UI/UserInterface.py" line="1660"/>
         <source>Restart the IDE</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1627"/>
+        <location filename="../UI/UserInterface.py" line="1661"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5966"/>
+        <location filename="../UI/UserInterface.py" line="6000"/>
         <source>Start Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5905"/>
+        <location filename="../UI/UserInterface.py" line="5939"/>
         <source>The eric6 web browser could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5966"/>
+        <location filename="../UI/UserInterface.py" line="6000"/>
         <source>&lt;p&gt;The eric6 web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
+        <location filename="../UI/UserInterface.py" line="2085"/>
         <source>Conda</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2033"/>
+        <location filename="../UI/UserInterface.py" line="2067"/>
         <source>PyPI</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3498"/>
+        <location filename="../UI/UserInterface.py" line="3532"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2069"/>
+        <location filename="../UI/UserInterface.py" line="2103"/>
         <source>MicroPython</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>Ctrl+Alt+Shift+I</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2013"/>
+        <location filename="../UI/UserInterface.py" line="2047"/>
         <source>Ctrl+Alt+Shift+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2019"/>
+        <location filename="../UI/UserInterface.py" line="2053"/>
         <source>Switch the input focus to the Code Documentation Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2022"/>
+        <location filename="../UI/UserInterface.py" line="2056"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2033"/>
+        <location filename="../UI/UserInterface.py" line="2067"/>
         <source>Ctrl+Alt+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2039"/>
+        <location filename="../UI/UserInterface.py" line="2073"/>
         <source>Switch the input focus to the PyPI window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2041"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
-        <source>Ctrl+Alt+Shift+C</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2057"/>
-        <source>Switch the input focus to the Conda window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2059"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2069"/>
-        <source>Ctrl+Alt+Shift+M</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2075"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2085"/>
+        <source>Ctrl+Alt+Shift+C</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2091"/>
+        <source>Switch the input focus to the Conda window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2093"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2103"/>
+        <source>Ctrl+Alt+Shift+M</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2109"/>
         <source>Switch the input focus to the MicroPython window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2077"/>
+        <location filename="../UI/UserInterface.py" line="2111"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3145"/>
+        <location filename="../UI/UserInterface.py" line="3179"/>
         <source>Central Park</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3672"/>
+        <location filename="../UI/UserInterface.py" line="3706"/>
         <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="5009"/>
+        <location filename="../UI/UserInterface.py" line="5043"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5079"/>
+        <location filename="../UI/UserInterface.py" line="5113"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5123"/>
+        <location filename="../UI/UserInterface.py" line="5157"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2182"/>
+        <location filename="../UI/UserInterface.py" line="2216"/>
         <source>Show Install Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2182"/>
+        <location filename="../UI/UserInterface.py" line="2216"/>
         <source>Show Install &amp;Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2186"/>
+        <location filename="../UI/UserInterface.py" line="2220"/>
         <source>Show Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2188"/>
+        <location filename="../UI/UserInterface.py" line="2222"/>
         <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"></translation>
     </message>
@@ -84562,6 +84582,21 @@
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="744"/>
+        <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the shell window. A dialog is shown to enter the search text and options for the search.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="765"/>
+        <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="786"/>
+        <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
@@ -85029,32 +85064,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="323"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="333"/>
         <source>&lt;virtualenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="341"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="351"/>
         <source>&lt;No suitable virtualenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="343"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="353"/>
         <source>virtualenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="377"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="387"/>
         <source>&lt;pyvenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="397"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="407"/>
         <source>&lt;No suitable pyvenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="399"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="409"/>
         <source>pyvenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -85189,7 +85224,7 @@
         <translation type="unfinished">Metin Dosyaları (*.txt);;Tüm Dosyalar (*)</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="411"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="421"/>
         <source>conda Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
--- a/eric6/i18n/eric6_zh_CN.ts	Wed Nov 11 17:51:36 2020 +0100
+++ b/eric6/i18n/eric6_zh_CN.ts	Sat Nov 14 11:50:43 2020 +0100
@@ -41942,52 +41942,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="71"/>
+        <location filename="../UI/InstallInfoDialog.py" line="70"/>
         <source>Yes</source>
         <translation type="unfinished">是</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="71"/>
+        <location filename="../UI/InstallInfoDialog.py" line="70"/>
         <source>No</source>
         <translation type="unfinished">否</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="75"/>
+        <location filename="../UI/InstallInfoDialog.py" line="74"/>
         <source>&apos;eric-ide&apos; was installed from PyPI using the pip command.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="81"/>
+        <location filename="../UI/InstallInfoDialog.py" line="80"/>
         <source>The information shown in this dialog was guessed at the first start of eric.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="99"/>
+        <location filename="../UI/InstallInfoDialog.py" line="98"/>
         <source>Load Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="99"/>
+        <location filename="../UI/InstallInfoDialog.py" line="98"/>
         <source>&lt;p&gt;The file containing the install information could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="151"/>
+        <location filename="../UI/InstallInfoDialog.py" line="150"/>
         <source>Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="151"/>
+        <location filename="../UI/InstallInfoDialog.py" line="150"/>
         <source>The install information was edited. Unsaved changes will be lost. Save first?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="188"/>
+        <location filename="../UI/InstallInfoDialog.py" line="187"/>
         <source>Save Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="188"/>
+        <location filename="../UI/InstallInfoDialog.py" line="187"/>
         <source>&lt;p&gt;The file containing the install information could not be written.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -41997,17 +41997,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="61"/>
+        <location filename="../UI/InstallInfoDialog.py" line="60"/>
         <source>Installed as Administrator:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="63"/>
+        <location filename="../UI/InstallInfoDialog.py" line="62"/>
         <source>Installed with sudo:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="93"/>
+        <location filename="../UI/InstallInfoDialog.py" line="92"/>
         <source>unknown</source>
         <translation type="unfinished">未知</translation>
     </message>
@@ -42017,32 +42017,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="87"/>
+        <location filename="../UI/InstallInfoDialog.py" line="86"/>
         <source>The installation information was provided by the user.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="39"/>
+        <location filename="../UI/InstallInfoDialog.py" line="38"/>
         <source>Delete Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="255"/>
+        <location filename="../UI/InstallInfoDialog.py" line="254"/>
         <source>Upgrade Instructions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="201"/>
+        <location filename="../UI/InstallInfoDialog.py" line="200"/>
         <source>Delete Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="201"/>
+        <location filename="../UI/InstallInfoDialog.py" line="200"/>
         <source>Do you really want to delete the installation information? It will be recreated at the next start.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="228"/>
+        <location filename="../UI/InstallInfoDialog.py" line="227"/>
         <source>Perform the following step(s) with Administrator privileges.
 </source>
         <translation type="unfinished"></translation>
@@ -51926,12 +51926,12 @@
         <translation type="unfinished">错误</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="143"/>
+        <location filename="../PipInterface/PipDialog.py" line="146"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">进程生成错误</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="143"/>
+        <location filename="../PipInterface/PipDialog.py" line="146"/>
         <source>The process {0} could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52642,7 +52642,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="910"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="911"/>
         <source>Search PyPI</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52662,102 +52662,102 @@
         <translation type="unfinished">错误:{0}</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="872"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="873"/>
         <source>Show Package Details</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="872"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="873"/>
         <source>Select the package version:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="910"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="911"/>
         <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="926"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="927"/>
         <source>Install Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="929"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="930"/>
         <source>Install Pip to User-Site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="932"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="933"/>
         <source>Repair Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1046"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1050"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="939"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="940"/>
         <source>Install Local Package</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="943"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
         <source>Install Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="946"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="947"/>
         <source>Uninstall Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="949"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="950"/>
         <source>Generate Requirements...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="967"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="968"/>
         <source>Edit User Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="970"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="971"/>
         <source>Edit Environment Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="975"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="976"/>
         <source>Configure...</source>
         <translation type="unfinished">配置…</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1158"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1166"/>
         <source>Edit Configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1158"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1166"/>
         <source>No valid configuration path determined. Aborting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="953"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="954"/>
         <source>Show Cache Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="956"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="957"/>
         <source>Show Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="960"/>
         <source>Remove Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="962"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="963"/>
         <source>Purge Cache...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -66663,231 +66663,251 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="242"/>
-        <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected language.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="249"/>
+        <location filename="../QScintilla/ShellWindow.py" line="250"/>
         <source>Restart and Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="254"/>
+        <location filename="../QScintilla/ShellWindow.py" line="255"/>
         <source>Clear the window and restart the shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="256"/>
-        <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected language.&lt;/p&gt;</source>
+        <location filename="../QScintilla/ShellWindow.py" line="885"/>
+        <source>Show History</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="885"/>
+        <source>&amp;Show History...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="891"/>
-        <source>Show History</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="891"/>
-        <source>&amp;Show History...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="897"/>
         <source>Show the shell history in a dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="895"/>
+        <source>Clear History</source>
+        <translation type="unfinished">清除历史记录</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="895"/>
+        <source>&amp;Clear History...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="901"/>
-        <source>Clear History</source>
-        <translation type="unfinished">清除历史记录</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="901"/>
-        <source>&amp;Clear History...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="907"/>
         <source>Clear the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="911"/>
+        <location filename="../QScintilla/ShellWindow.py" line="905"/>
         <source>Select History Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="911"/>
+        <location filename="../QScintilla/ShellWindow.py" line="905"/>
         <source>Select History &amp;Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="916"/>
+        <location filename="../QScintilla/ShellWindow.py" line="910"/>
         <source>Select an entry of the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="924"/>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
         <source>About</source>
         <translation type="unfinished">关于</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
+        <source>&amp;About</source>
+        <translation type="unfinished">关于(&amp;A)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="922"/>
+        <source>Display information about this software</source>
+        <translation type="unfinished">显示软件信息</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="924"/>
-        <source>&amp;About</source>
-        <translation type="unfinished">关于(&amp;A)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="928"/>
-        <source>Display information about this software</source>
-        <translation type="unfinished">显示软件信息</translation>
+        <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
+        <translation type="unfinished">&lt;b&gt;关于&lt;/b&gt;&lt;p&gt;显示与本软件有关的部分信息。&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../QScintilla/ShellWindow.py" line="930"/>
-        <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
-        <translation type="unfinished">&lt;b&gt;关于&lt;/b&gt;&lt;p&gt;显示与本软件有关的部分信息。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="936"/>
         <source>About Qt</source>
         <translation type="unfinished">关于 Qt</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="930"/>
+        <source>About &amp;Qt</source>
+        <translation type="unfinished">关于 &amp;Qt</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <source>Display information about the Qt toolkit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="936"/>
-        <source>About &amp;Qt</source>
-        <translation type="unfinished">关于 &amp;Qt</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="940"/>
-        <source>Display information about the Qt toolkit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="942"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished">这是什么?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished">这是什么(&amp;W)?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="949"/>
+        <location filename="../QScintilla/ShellWindow.py" line="943"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished">Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="955"/>
+        <location filename="../QScintilla/ShellWindow.py" line="949"/>
         <source>Context sensitive help</source>
         <translation type="unfinished">背景帮助</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="956"/>
+        <location filename="../QScintilla/ShellWindow.py" line="950"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;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;显示背景帮助&lt;/b&gt;&lt;p&gt;在“这是什么?”模式中,鼠标光标显示为带问号的箭头,通过点击界面元素你可以获得“在做什么”和“怎样使用”的简短描述。使用标题栏中的上下文帮助按钮可以获得此功能。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1100"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1094"/>
         <source>About eric6 Shell Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1100"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1094"/>
         <source>The eric6 Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1128"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1122"/>
         <source>&amp;File</source>
         <translation type="unfinished">文件(&amp;F)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1137"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1131"/>
         <source>&amp;Edit</source>
         <translation type="unfinished">编辑(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1148"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1142"/>
         <source>&amp;View</source>
         <translation type="unfinished">视图(&amp;V)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1155"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1149"/>
         <source>Histor&amp;y</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1156"/>
+        <source>&amp;Start</source>
+        <translation type="unfinished">开始(&amp;S)</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1162"/>
-        <source>&amp;Start</source>
-        <translation type="unfinished">开始(&amp;S)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1168"/>
         <source>&amp;Help</source>
         <translation type="unfinished">帮助(&amp;H)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1201"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1195"/>
         <source>File</source>
         <translation type="unfinished">文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1210"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1204"/>
         <source>Edit</source>
         <translation type="unfinished">编辑</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1211"/>
+        <source>Find</source>
+        <translation type="unfinished">查找</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1217"/>
-        <source>Find</source>
-        <translation type="unfinished">查找</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1223"/>
         <source>View</source>
         <translation type="unfinished">视图</translation>
     </message>
     <message>
+        <location filename="../QScintilla/ShellWindow.py" line="1224"/>
+        <source>History</source>
+        <translation type="unfinished">历史</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/ShellWindow.py" line="1230"/>
-        <source>History</source>
-        <translation type="unfinished">历史</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1236"/>
         <source>Help</source>
         <translation type="unfinished">帮助</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1257"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1251"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="585"/>
+        <location filename="../QScintilla/ShellWindow.py" line="579"/>
         <source>Move forward one history entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="595"/>
+        <location filename="../QScintilla/ShellWindow.py" line="589"/>
         <source>Move back one history entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1036"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1030"/>
         <source>eric6 Shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1034"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1028"/>
         <source>eric6 Shell [{0}]</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="242"/>
+        <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected environment.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="257"/>
+        <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected environment.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="284"/>
+        <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text to the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="302"/>
+        <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished">&lt;b&gt;复制&lt;/b&gt;&lt;p&gt;将已选文件复制到剪贴板中。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="320"/>
+        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="337"/>
+        <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>Shelve</name>
@@ -79298,828 +79318,828 @@
 <context>
     <name>UserInterface</name>
     <message>
-        <location filename="../UI/UserInterface.py" line="270"/>
+        <location filename="../UI/UserInterface.py" line="271"/>
         <source>Initializing Plugin Manager...</source>
         <translation>初始化插件管理器…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="277"/>
+        <location filename="../UI/UserInterface.py" line="278"/>
         <source>Generating Main User Interface...</source>
         <translation>生成主用户界面…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="327"/>
+        <location filename="../UI/UserInterface.py" line="328"/>
         <source>Setting up connections...</source>
         <translation>建立连接…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="584"/>
+        <location filename="../UI/UserInterface.py" line="585"/>
         <source>Initializing Tools...</source>
         <translation>初始化工具…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="594"/>
+        <location filename="../UI/UserInterface.py" line="595"/>
         <source>Registering Objects...</source>
         <translation>注册对象…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="627"/>
+        <location filename="../UI/UserInterface.py" line="628"/>
         <source>Initializing Actions...</source>
         <translation>初始化动作…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="629"/>
+        <location filename="../UI/UserInterface.py" line="630"/>
         <source>Initializing Menus...</source>
         <translation>初始化菜单…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="631"/>
+        <location filename="../UI/UserInterface.py" line="632"/>
         <source>Initializing Toolbars...</source>
         <translation>初始化工具栏…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="633"/>
+        <location filename="../UI/UserInterface.py" line="634"/>
         <source>Initializing Statusbar...</source>
         <translation>初始化状态栏…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="660"/>
+        <location filename="../UI/UserInterface.py" line="661"/>
         <source>Initializing Single Application Server...</source>
         <translation>初始化单应用程序服务器…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="670"/>
+        <location filename="../UI/UserInterface.py" line="671"/>
         <source>Activating Plugins...</source>
         <translation>激活插件…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="686"/>
+        <location filename="../UI/UserInterface.py" line="687"/>
         <source>Restoring Toolbarmanager...</source>
         <translation>恢复工具拦管理器…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1715"/>
+        <location filename="../UI/UserInterface.py" line="1749"/>
         <source>Project-Viewer</source>
         <translation>项目浏览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1732"/>
+        <location filename="../UI/UserInterface.py" line="1766"/>
         <source>Multiproject-Viewer</source>
         <translation>多重项目浏览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1784"/>
         <source>Debug-Viewer</source>
         <translation>调试浏览器</translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="1836"/>
+        <source>Log-Viewer</source>
+        <translation>日志浏览器</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1854"/>
+        <source>Task-Viewer</source>
+        <translation>任务浏览器</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1873"/>
+        <source>Template-Viewer</source>
+        <translation>模板浏览器</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1819"/>
+        <source>File-Browser</source>
+        <translation>文件浏览器</translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="1802"/>
-        <source>Log-Viewer</source>
-        <translation>日志浏览器</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
-        <source>Task-Viewer</source>
-        <translation>任务浏览器</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
-        <source>Template-Viewer</source>
-        <translation>模板浏览器</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
-        <source>File-Browser</source>
-        <translation>文件浏览器</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
         <source>Shell</source>
         <translation>命令行</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1882"/>
+        <location filename="../UI/UserInterface.py" line="1916"/>
         <source>Horizontal Toolbox</source>
         <translation>横向工具箱</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1603"/>
+        <location filename="../UI/UserInterface.py" line="1637"/>
         <source>Quit</source>
         <translation>退出</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1603"/>
+        <location filename="../UI/UserInterface.py" line="1637"/>
         <source>&amp;Quit</source>
         <translation>退出(&amp;Q)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1603"/>
+        <location filename="../UI/UserInterface.py" line="1637"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1609"/>
+        <location filename="../UI/UserInterface.py" line="1643"/>
         <source>Quit the IDE</source>
         <translation>退出程序</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1610"/>
+        <location filename="../UI/UserInterface.py" line="1644"/>
         <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="1681"/>
-        <source>Edit Profile</source>
-        <translation>编辑模式</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1687"/>
-        <source>Activate the edit view profile</source>
-        <translation>激活编辑视图模式</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1689"/>
-        <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; 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="1698"/>
-        <source>Debug Profile</source>
-        <translation>调试模式</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1704"/>
-        <source>Activate the debug view profile</source>
-        <translation>激活调试模式</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1706"/>
-        <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; 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="1715"/>
-        <source>&amp;Project-Viewer</source>
-        <translation>项目浏览器(&amp;P)</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1715"/>
-        <source>Alt+Shift+P</source>
-        <translation>Alt+Shift+P</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1732"/>
-        <source>&amp;Multiproject-Viewer</source>
-        <translation>多重项目浏览器(&amp;M)</translation>
+        <source>Edit Profile</source>
+        <translation>编辑模式</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1721"/>
+        <source>Activate the edit view profile</source>
+        <translation>激活编辑视图模式</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1723"/>
+        <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; 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="1732"/>
+        <source>Debug Profile</source>
+        <translation>调试模式</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1738"/>
+        <source>Activate the debug view profile</source>
+        <translation>激活调试模式</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1740"/>
+        <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; 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="1749"/>
+        <source>&amp;Project-Viewer</source>
+        <translation>项目浏览器(&amp;P)</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1749"/>
+        <source>Alt+Shift+P</source>
+        <translation>Alt+Shift+P</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1766"/>
+        <source>&amp;Multiproject-Viewer</source>
+        <translation>多重项目浏览器(&amp;M)</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1766"/>
         <source>Alt+Shift+M</source>
         <translation>Alt+Shift+M</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1784"/>
         <source>Alt+Shift+D</source>
         <translation>Alt+Shift+D</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
+        <location filename="../UI/UserInterface.py" line="1802"/>
         <source>&amp;Shell</source>
         <translation>命令行(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1768"/>
-        <source>Alt+Shift+S</source>
-        <translation>Alt+Shift+S</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
-        <source>Alt+Shift+F</source>
-        <translation>Alt+Shift+F</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1802"/>
+        <source>Alt+Shift+S</source>
+        <translation>Alt+Shift+S</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1819"/>
+        <source>Alt+Shift+F</source>
+        <translation>Alt+Shift+F</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1836"/>
         <source>Alt+Shift+G</source>
         <translation>Alt+Shift+G</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
+        <location filename="../UI/UserInterface.py" line="1854"/>
         <source>Alt+Shift+T</source>
         <translation>Alt+Shift+T</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
+        <location filename="../UI/UserInterface.py" line="1873"/>
         <source>Alt+Shift+A</source>
         <translation>Alt+Shift+A</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1882"/>
+        <location filename="../UI/UserInterface.py" line="1916"/>
         <source>&amp;Horizontal Toolbox</source>
         <translation>横向工具箱(&amp;H)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1886"/>
+        <location filename="../UI/UserInterface.py" line="1920"/>
         <source>Toggle the Horizontal Toolbox window</source>
         <translation>切换横向工具箱窗口</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1888"/>
+        <location filename="../UI/UserInterface.py" line="1922"/>
         <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="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>What&apos;s This?</source>
         <translation>这是什么?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>&amp;What&apos;s This?</source>
         <translation>这是什么(&amp;W)?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2087"/>
+        <location filename="../UI/UserInterface.py" line="2121"/>
         <source>Shift+F1</source>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2093"/>
+        <location filename="../UI/UserInterface.py" line="2127"/>
         <source>Context sensitive help</source>
         <translation>背景帮助</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2094"/>
+        <location filename="../UI/UserInterface.py" line="2128"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;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="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>Helpviewer</source>
         <translation>帮助浏览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>&amp;Helpviewer...</source>
         <translation>帮助浏览器(&amp;H)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2105"/>
+        <location filename="../UI/UserInterface.py" line="2139"/>
         <source>F1</source>
         <translation>F1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2111"/>
+        <location filename="../UI/UserInterface.py" line="2145"/>
         <source>Open the helpviewer window</source>
         <translation>打开帮助浏览器窗口</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2131"/>
+        <location filename="../UI/UserInterface.py" line="2165"/>
         <source>Show Versions</source>
         <translation>显示版本</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2131"/>
+        <location filename="../UI/UserInterface.py" line="2165"/>
         <source>Show &amp;Versions</source>
         <translation>显示版本(&amp;V)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2135"/>
+        <location filename="../UI/UserInterface.py" line="2169"/>
         <source>Display version information</source>
         <translation>显示版本信息</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2137"/>
+        <location filename="../UI/UserInterface.py" line="2171"/>
         <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="2147"/>
+        <location filename="../UI/UserInterface.py" line="2181"/>
         <source>Check for Updates</source>
         <translation>检查更新</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2144"/>
+        <location filename="../UI/UserInterface.py" line="2178"/>
         <source>Check for &amp;Updates...</source>
         <translation>检查更新(&amp;U)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2155"/>
+        <location filename="../UI/UserInterface.py" line="2189"/>
         <source>Show downloadable versions</source>
         <translation>显示可下载的版本</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2155"/>
+        <location filename="../UI/UserInterface.py" line="2189"/>
         <source>Show &amp;downloadable versions...</source>
         <translation>显示可下载的版本(&amp;D)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2159"/>
+        <location filename="../UI/UserInterface.py" line="2193"/>
         <source>Show the versions available for download</source>
         <translation>显示可以下载的版本</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
+        <location filename="../UI/UserInterface.py" line="3779"/>
         <source>Report Bug</source>
         <translation>报告错误</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2196"/>
+        <location filename="../UI/UserInterface.py" line="2230"/>
         <source>Report &amp;Bug...</source>
         <translation>报告错误(&amp;B)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2200"/>
+        <location filename="../UI/UserInterface.py" line="2234"/>
         <source>Report a bug</source>
         <translation>报告一个错误</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2201"/>
+        <location filename="../UI/UserInterface.py" line="2235"/>
         <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="2208"/>
+        <location filename="../UI/UserInterface.py" line="2242"/>
         <source>Request Feature</source>
         <translation>请求功能</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2208"/>
-        <source>Request &amp;Feature...</source>
-        <translation>请求功能(&amp;F)…</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2212"/>
-        <source>Send a feature request</source>
-        <translation>发送一个功能请求</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2214"/>
-        <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="3279"/>
-        <source>Unittest</source>
-        <translation>单元测试</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2223"/>
-        <source>&amp;Unittest...</source>
-        <translation>单元测试(&amp;U)…</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2228"/>
-        <source>Start unittest dialog</source>
-        <translation>打开单元测试对话框</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2229"/>
-        <source>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Perform unit tests. The dialog gives you the ability to select and run a unittest suite.&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="2237"/>
-        <source>Unittest Restart</source>
-        <translation>单元测试重启</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
-        <source>&amp;Restart Unittest...</source>
-        <translation>重启单元测试(&amp;R)…</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2242"/>
+        <source>Request &amp;Feature...</source>
+        <translation>请求功能(&amp;F)…</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2246"/>
+        <source>Send a feature request</source>
+        <translation>发送一个功能请求</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2248"/>
+        <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="3313"/>
+        <source>Unittest</source>
+        <translation>单元测试</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2257"/>
+        <source>&amp;Unittest...</source>
+        <translation>单元测试(&amp;U)…</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2262"/>
+        <source>Start unittest dialog</source>
+        <translation>打开单元测试对话框</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2263"/>
+        <source>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Perform unit tests. The dialog gives you the ability to select and run a unittest suite.&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="2271"/>
+        <source>Unittest Restart</source>
+        <translation>单元测试重启</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2271"/>
+        <source>&amp;Restart Unittest...</source>
+        <translation>重启单元测试(&amp;R)…</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>Restart last unittest</source>
         <translation>重启最后的单元测试</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2243"/>
+        <location filename="../UI/UserInterface.py" line="2277"/>
         <source>&lt;b&gt;Restart Unittest&lt;/b&gt;&lt;p&gt;Restart the unittest performed last.&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="2267"/>
+        <location filename="../UI/UserInterface.py" line="2301"/>
         <source>Unittest Script</source>
         <translation>脚本单元测试</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2267"/>
+        <location filename="../UI/UserInterface.py" line="2301"/>
         <source>Unittest &amp;Script...</source>
         <translation>脚本单元测试(&amp;S)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2272"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Run unittest with current script</source>
         <translation>对当前脚本运行单元测试</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2274"/>
+        <location filename="../UI/UserInterface.py" line="2308"/>
         <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with 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="2282"/>
+        <location filename="../UI/UserInterface.py" line="2316"/>
         <source>Unittest Project</source>
         <translation>项目单元测试</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2282"/>
+        <location filename="../UI/UserInterface.py" line="2316"/>
         <source>Unittest &amp;Project...</source>
         <translation>项目单元测试(&amp;P)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2287"/>
+        <location filename="../UI/UserInterface.py" line="2321"/>
         <source>Run unittest with current project</source>
         <translation>对当前项目运行单元测试</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2289"/>
+        <location filename="../UI/UserInterface.py" line="2323"/>
         <source>&lt;b&gt;Unittest Project&lt;/b&gt;&lt;p&gt;Run unittest with 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="2350"/>
+        <location filename="../UI/UserInterface.py" line="2384"/>
         <source>UI Previewer</source>
         <translation>用户界面预览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2350"/>
+        <location filename="../UI/UserInterface.py" line="2384"/>
         <source>&amp;UI Previewer...</source>
         <translation>用户界面预览器(&amp;U)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2355"/>
+        <location filename="../UI/UserInterface.py" line="2389"/>
         <source>Start the UI Previewer</source>
         <translation>开启用户界面预览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2356"/>
-        <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="2363"/>
-        <source>Translations Previewer</source>
-        <translation>翻译预览器</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2363"/>
-        <source>&amp;Translations Previewer...</source>
-        <translation>翻译预览器(&amp;T)…</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2368"/>
-        <source>Start the Translations Previewer</source>
-        <translation>开启翻译预览器</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2370"/>
-        <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="2377"/>
-        <source>Compare Files</source>
-        <translation>比较文件</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2377"/>
-        <source>&amp;Compare Files...</source>
-        <translation>比较文件(&amp;C)…</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2395"/>
-        <source>Compare two files</source>
-        <translation>比较两个文件</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2383"/>
-        <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="2390"/>
-        <source>Compare Files side by side</source>
-        <translation>并排比较文件</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2396"/>
-        <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="2422"/>
-        <source>Mini Editor</source>
-        <translation>小型编辑器</translation>
+        <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="2397"/>
+        <source>Translations Previewer</source>
+        <translation>翻译预览器</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2397"/>
+        <source>&amp;Translations Previewer...</source>
+        <translation>翻译预览器(&amp;T)…</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2402"/>
+        <source>Start the Translations Previewer</source>
+        <translation>开启翻译预览器</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2404"/>
+        <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="2411"/>
+        <source>Compare Files</source>
+        <translation>比较文件</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2411"/>
+        <source>&amp;Compare Files...</source>
+        <translation>比较文件(&amp;C)…</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2429"/>
+        <source>Compare two files</source>
+        <translation>比较两个文件</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2417"/>
+        <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="2424"/>
+        <source>Compare Files side by side</source>
+        <translation>并排比较文件</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2430"/>
+        <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="2456"/>
+        <source>Mini Editor</source>
+        <translation>小型编辑器</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2451"/>
         <source>Mini &amp;Editor...</source>
         <translation>小型编辑器(&amp;E)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2423"/>
+        <location filename="../UI/UserInterface.py" line="2457"/>
         <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="2490"/>
+        <location filename="../UI/UserInterface.py" line="2524"/>
         <source>Preferences</source>
         <translation>首选项</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2490"/>
+        <location filename="../UI/UserInterface.py" line="2524"/>
         <source>&amp;Preferences...</source>
         <translation>首选项(&amp;P)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2495"/>
+        <location filename="../UI/UserInterface.py" line="2529"/>
         <source>Set the prefered configuration</source>
         <translation>设定偏好配置</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2497"/>
+        <location filename="../UI/UserInterface.py" line="2531"/>
         <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="2506"/>
+        <location filename="../UI/UserInterface.py" line="2540"/>
         <source>Export Preferences</source>
         <translation>导出首选项</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2506"/>
-        <source>E&amp;xport Preferences...</source>
-        <translation>导出首选项(&amp;X)…</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2511"/>
-        <source>Export the current configuration</source>
-        <translation>导出当前配置</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2513"/>
-        <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="2520"/>
-        <source>Import Preferences</source>
-        <translation>导入首选项</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2520"/>
-        <source>I&amp;mport Preferences...</source>
-        <translation>导入首选项(&amp;M)…</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2525"/>
-        <source>Import a previously exported configuration</source>
-        <translation>导入以前导出的配置</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2527"/>
-        <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="2534"/>
-        <source>Reload APIs</source>
-        <translation>重新载入 API</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2534"/>
-        <source>Reload &amp;APIs</source>
-        <translation>重新载入 &amp;API</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2538"/>
-        <source>Reload the API information</source>
-        <translation>重新载入 API 信息</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2540"/>
-        <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="2552"/>
-        <source>Show external tools</source>
-        <translation>显示外部工具</translation>
+        <source>E&amp;xport Preferences...</source>
+        <translation>导出首选项(&amp;X)…</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2545"/>
+        <source>Export the current configuration</source>
+        <translation>导出当前配置</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2547"/>
-        <source>Show external &amp;tools</source>
-        <translation>显示外部工具(&amp;T)</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2563"/>
-        <source>View Profiles</source>
-        <translation>视图模式</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2563"/>
-        <source>&amp;View Profiles...</source>
-        <translation>视图模式(&amp;V)…</translation>
+        <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="2554"/>
+        <source>Import Preferences</source>
+        <translation>导入首选项</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2554"/>
+        <source>I&amp;mport Preferences...</source>
+        <translation>导入首选项(&amp;M)…</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2559"/>
+        <source>Import a previously exported configuration</source>
+        <translation>导入以前导出的配置</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2561"/>
+        <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="2568"/>
-        <source>Configure view profiles</source>
-        <translation>配置视图模式</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2570"/>
-        <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="2580"/>
-        <source>Toolbars</source>
-        <translation>工具栏</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2580"/>
-        <source>Tool&amp;bars...</source>
-        <translation>工具栏(&amp;B)…</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2585"/>
-        <source>Configure toolbars</source>
-        <translation>配置工具栏</translation>
+        <source>Reload APIs</source>
+        <translation>重新载入 API</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2568"/>
+        <source>Reload &amp;APIs</source>
+        <translation>重新载入 &amp;API</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2572"/>
+        <source>Reload the API information</source>
+        <translation>重新载入 API 信息</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2574"/>
+        <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="2586"/>
-        <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="2595"/>
-        <source>Keyboard Shortcuts</source>
-        <translation>键盘快捷键</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2595"/>
-        <source>Keyboard &amp;Shortcuts...</source>
-        <translation>键盘快捷键(&amp;S)…</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2600"/>
-        <source>Set the keyboard shortcuts</source>
-        <translation>设置键盘快捷键</translation>
+        <source>Show external tools</source>
+        <translation>显示外部工具</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2581"/>
+        <source>Show external &amp;tools</source>
+        <translation>显示外部工具(&amp;T)</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2597"/>
+        <source>View Profiles</source>
+        <translation>视图模式</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2597"/>
+        <source>&amp;View Profiles...</source>
+        <translation>视图模式(&amp;V)…</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2602"/>
-        <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="6217"/>
-        <source>Export Keyboard Shortcuts</source>
-        <translation>导出键盘快捷键</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2610"/>
-        <source>&amp;Export Keyboard Shortcuts...</source>
-        <translation>导出键盘快捷键(&amp;E)…</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2615"/>
-        <source>Export the keyboard shortcuts</source>
-        <translation>导出键盘快捷键</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2617"/>
-        <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="6241"/>
-        <source>Import Keyboard Shortcuts</source>
-        <translation>导入键盘快捷键</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2624"/>
-        <source>&amp;Import Keyboard Shortcuts...</source>
-        <translation>导入键盘快捷键(&amp;I)…</translation>
+        <source>Configure view profiles</source>
+        <translation>配置视图模式</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2604"/>
+        <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="2614"/>
+        <source>Toolbars</source>
+        <translation>工具栏</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2614"/>
+        <source>Tool&amp;bars...</source>
+        <translation>工具栏(&amp;B)…</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2619"/>
+        <source>Configure toolbars</source>
+        <translation>配置工具栏</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2620"/>
+        <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="2629"/>
+        <source>Keyboard Shortcuts</source>
+        <translation>键盘快捷键</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2629"/>
+        <source>Keyboard &amp;Shortcuts...</source>
+        <translation>键盘快捷键(&amp;S)…</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2634"/>
+        <source>Set the keyboard shortcuts</source>
+        <translation>设置键盘快捷键</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2636"/>
+        <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="6251"/>
+        <source>Export Keyboard Shortcuts</source>
+        <translation>导出键盘快捷键</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2644"/>
+        <source>&amp;Export Keyboard Shortcuts...</source>
+        <translation>导出键盘快捷键(&amp;E)…</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2649"/>
+        <source>Export the keyboard shortcuts</source>
+        <translation>导出键盘快捷键</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2651"/>
+        <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="6275"/>
+        <source>Import Keyboard Shortcuts</source>
+        <translation>导入键盘快捷键</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2658"/>
+        <source>&amp;Import Keyboard Shortcuts...</source>
+        <translation>导入键盘快捷键(&amp;I)…</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2663"/>
         <source>Import the keyboard shortcuts</source>
         <translation>导入键盘快捷键</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2631"/>
+        <location filename="../UI/UserInterface.py" line="2665"/>
         <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="2689"/>
+        <location filename="../UI/UserInterface.py" line="2723"/>
         <source>Activate current editor</source>
         <translation>激活当前编辑器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2689"/>
+        <location filename="../UI/UserInterface.py" line="2723"/>
         <source>Alt+Shift+E</source>
         <translation>Alt+Shift+E</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2699"/>
+        <location filename="../UI/UserInterface.py" line="2733"/>
         <source>Show next</source>
         <translation>显示下一个</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2699"/>
+        <location filename="../UI/UserInterface.py" line="2733"/>
         <source>Ctrl+Alt+Tab</source>
         <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2708"/>
+        <location filename="../UI/UserInterface.py" line="2742"/>
         <source>Show previous</source>
         <translation>显示上一个</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2708"/>
+        <location filename="../UI/UserInterface.py" line="2742"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2717"/>
+        <location filename="../UI/UserInterface.py" line="2751"/>
         <source>Switch between tabs</source>
         <translation>在选项卡间切换</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2717"/>
+        <location filename="../UI/UserInterface.py" line="2751"/>
         <source>Ctrl+1</source>
         <translation>Ctrl+1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2726"/>
+        <location filename="../UI/UserInterface.py" line="2760"/>
         <source>Plugin Infos</source>
         <translation>插件信息</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2726"/>
+        <location filename="../UI/UserInterface.py" line="2760"/>
         <source>&amp;Plugin Infos...</source>
         <translation>插件信息(&amp;P)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2730"/>
+        <location filename="../UI/UserInterface.py" line="2764"/>
         <source>Show Plugin Infos</source>
         <translation>显示插件信息</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2731"/>
-        <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="2744"/>
-        <source>Install Plugins</source>
-        <translation>安装插件</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2739"/>
-        <source>&amp;Install Plugins...</source>
-        <translation>安装插件(&amp;I)…</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2745"/>
-        <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="2757"/>
-        <source>Uninstall Plugin</source>
-        <translation>卸载插件</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2752"/>
-        <source>&amp;Uninstall Plugin...</source>
-        <translation>卸载插件(&amp;U)…</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2758"/>
-        <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="2765"/>
+        <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="2778"/>
+        <source>Install Plugins</source>
+        <translation>安装插件</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2773"/>
+        <source>&amp;Install Plugins...</source>
+        <translation>安装插件(&amp;I)…</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2779"/>
+        <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="2791"/>
+        <source>Uninstall Plugin</source>
+        <translation>卸载插件</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2786"/>
+        <source>&amp;Uninstall Plugin...</source>
+        <translation>卸载插件(&amp;U)…</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2792"/>
+        <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="2799"/>
         <source>Plugin Repository</source>
         <translation>插件储存库</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2765"/>
+        <location filename="../UI/UserInterface.py" line="2799"/>
         <source>Plugin &amp;Repository...</source>
         <translation>插件储存库(&amp;R)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2770"/>
+        <location filename="../UI/UserInterface.py" line="2804"/>
         <source>Show Plugins available for download</source>
         <translation>显示可以下载的插件</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2772"/>
+        <location filename="../UI/UserInterface.py" line="2806"/>
         <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>
@@ -80149,122 +80169,122 @@
         <translation type="obsolete">打开 PyQt4 文档</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2889"/>
+        <location filename="../UI/UserInterface.py" line="2923"/>
         <source>Eric API Documentation</source>
         <translation>Eric API 文档</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2889"/>
+        <location filename="../UI/UserInterface.py" line="2923"/>
         <source>&amp;Eric API Documentation</source>
         <translation>&amp;Eric API 文档</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2893"/>
+        <location filename="../UI/UserInterface.py" line="2927"/>
         <source>Open Eric API Documentation</source>
         <translation>打开 Eric API 文档</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3074"/>
+        <location filename="../UI/UserInterface.py" line="3108"/>
         <source>&amp;Unittest</source>
         <translation>单元测试(&amp;U)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3018"/>
+        <location filename="../UI/UserInterface.py" line="3052"/>
         <source>E&amp;xtras</source>
         <translation>附加程序(&amp;X)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3028"/>
+        <location filename="../UI/UserInterface.py" line="3062"/>
         <source>Wi&amp;zards</source>
         <translation>向导(&amp;Z)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3091"/>
+        <location filename="../UI/UserInterface.py" line="3125"/>
         <source>Select Tool Group</source>
         <translation>选择工具组</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3102"/>
+        <location filename="../UI/UserInterface.py" line="3136"/>
         <source>Se&amp;ttings</source>
         <translation>设置(&amp;T)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3132"/>
+        <location filename="../UI/UserInterface.py" line="3166"/>
         <source>&amp;Window</source>
         <translation>窗口(&amp;W)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3193"/>
+        <location filename="../UI/UserInterface.py" line="3227"/>
         <source>&amp;Toolbars</source>
         <translation>工具栏(&amp;T)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3055"/>
+        <location filename="../UI/UserInterface.py" line="3089"/>
         <source>P&amp;lugins</source>
         <translation>插件(&amp;L)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3064"/>
+        <location filename="../UI/UserInterface.py" line="3098"/>
         <source>Configure...</source>
         <translation>配置…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3207"/>
+        <location filename="../UI/UserInterface.py" line="3241"/>
         <source>&amp;Help</source>
         <translation>帮助(&amp;H)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3278"/>
+        <location filename="../UI/UserInterface.py" line="3312"/>
         <source>Tools</source>
         <translation>工具</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3280"/>
+        <location filename="../UI/UserInterface.py" line="3314"/>
         <source>Settings</source>
         <translation>设置</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5147"/>
+        <location filename="../UI/UserInterface.py" line="5181"/>
         <source>Help</source>
         <translation>帮助</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3282"/>
+        <location filename="../UI/UserInterface.py" line="3316"/>
         <source>Profiles</source>
         <translation>模式</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3283"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <source>Plugins</source>
         <translation>插件</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3452"/>
+        <location filename="../UI/UserInterface.py" line="3486"/>
         <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="3459"/>
+        <location filename="../UI/UserInterface.py" line="3493"/>
         <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="3466"/>
+        <location filename="../UI/UserInterface.py" line="3500"/>
         <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="3473"/>
+        <location filename="../UI/UserInterface.py" line="3507"/>
         <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="3480"/>
+        <location filename="../UI/UserInterface.py" line="3514"/>
         <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="3487"/>
+        <location filename="../UI/UserInterface.py" line="3521"/>
         <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>
@@ -80274,52 +80294,52 @@
         <translation type="obsolete">&lt;h3&gt;版本号&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7214"/>
+        <location filename="../UI/UserInterface.py" line="7248"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
+        <location filename="../UI/UserInterface.py" line="3779"/>
         <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="4065"/>
+        <location filename="../UI/UserInterface.py" line="4099"/>
         <source>Restart application</source>
         <translation>重启程序</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4065"/>
+        <location filename="../UI/UserInterface.py" line="4099"/>
         <source>The application needs to be restarted. Do it now?</source>
         <translation>程序需要重启。现在重启?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4146"/>
+        <location filename="../UI/UserInterface.py" line="4180"/>
         <source>Configure Tool Groups ...</source>
         <translation>配置工具组…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4150"/>
+        <location filename="../UI/UserInterface.py" line="4184"/>
         <source>Configure current Tool Group ...</source>
         <translation>配置当前工具组…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4101"/>
+        <location filename="../UI/UserInterface.py" line="4135"/>
         <source>&amp;Builtin Tools</source>
         <translation>内建工具(&amp;B)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4118"/>
+        <location filename="../UI/UserInterface.py" line="4152"/>
         <source>&amp;Plugin Tools</source>
         <translation>插件工具(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4267"/>
+        <location filename="../UI/UserInterface.py" line="4301"/>
         <source>&amp;Show all</source>
         <translation>全部显示(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4269"/>
+        <location filename="../UI/UserInterface.py" line="4303"/>
         <source>&amp;Hide all</source>
         <translation>全部隐藏(&amp;H)</translation>
     </message>
@@ -80329,47 +80349,47 @@
         <translation type="obsolete">当前项目未定义主脚本。终止</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5275"/>
+        <location filename="../UI/UserInterface.py" line="5309"/>
         <source>Problem</source>
         <translation>问题</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5470"/>
+        <location filename="../UI/UserInterface.py" line="5504"/>
         <source>Process Generation Error</source>
         <translation>进程生成错误</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6009"/>
+        <location filename="../UI/UserInterface.py" line="6043"/>
         <source>Open Browser</source>
         <translation>打开浏览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6009"/>
+        <location filename="../UI/UserInterface.py" line="6043"/>
         <source>Could not start a web browser</source>
         <translation>无法启动网络浏览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5147"/>
-        <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="5181"/>
+        <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="5215"/>
         <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="5415"/>
+        <location filename="../UI/UserInterface.py" line="5449"/>
         <source>External Tools</source>
         <translation>外部工具</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5809"/>
+        <location filename="../UI/UserInterface.py" line="5843"/>
         <source>Documentation Missing</source>
         <translation>文档缺失</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5792"/>
+        <location filename="../UI/UserInterface.py" line="5826"/>
         <source>Documentation</source>
         <translation>文档</translation>
     </message>
@@ -80379,132 +80399,132 @@
         <translation type="obsolete">&lt;p&gt;未配置 PyQt4 文档起点。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6411"/>
+        <location filename="../UI/UserInterface.py" line="6445"/>
         <source>Save tasks</source>
         <translation>保存任务</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6440"/>
+        <location filename="../UI/UserInterface.py" line="6474"/>
         <source>Read tasks</source>
         <translation>读取任务</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6536"/>
+        <location filename="../UI/UserInterface.py" line="6570"/>
         <source>Save session</source>
         <translation>保存会话</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6520"/>
+        <location filename="../UI/UserInterface.py" line="6554"/>
         <source>Read session</source>
         <translation>读取会话</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6804"/>
+        <location filename="../UI/UserInterface.py" line="6838"/>
         <source>Drop Error</source>
         <translation>降落误差</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7175"/>
+        <location filename="../UI/UserInterface.py" line="7209"/>
         <source>Error during updates check</source>
         <translation>检查更新时出错</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6989"/>
+        <location filename="../UI/UserInterface.py" line="7023"/>
         <source>&amp;Cancel</source>
         <translation>取消(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7156"/>
+        <location filename="../UI/UserInterface.py" line="7190"/>
         <source>Update available</source>
         <translation>可用更新</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7175"/>
+        <location filename="../UI/UserInterface.py" line="7209"/>
         <source>Could not perform updates check.</source>
         <translation>无法完成更新检查。</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7199"/>
+        <location filename="../UI/UserInterface.py" line="7233"/>
         <source>&lt;h3&gt;Available versions&lt;/h3&gt;&lt;table&gt;</source>
         <translation>&lt;h3&gt;可用版本&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7251"/>
+        <location filename="../UI/UserInterface.py" line="7285"/>
         <source>First time usage</source>
         <translation>第一次使用</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1896"/>
+        <location filename="../UI/UserInterface.py" line="1930"/>
         <source>Left Sidebar</source>
         <translation>左侧边栏</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1896"/>
+        <location filename="../UI/UserInterface.py" line="1930"/>
         <source>&amp;Left Sidebar</source>
         <translation>左侧边栏(&amp;L)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1900"/>
+        <location filename="../UI/UserInterface.py" line="1934"/>
         <source>Toggle the left sidebar window</source>
         <translation>切换左侧边栏窗口</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1901"/>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <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="1923"/>
+        <location filename="../UI/UserInterface.py" line="1957"/>
         <source>Bottom Sidebar</source>
         <translation>底栏</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1923"/>
+        <location filename="../UI/UserInterface.py" line="1957"/>
         <source>&amp;Bottom Sidebar</source>
         <translation>底栏(&amp;B)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1927"/>
+        <location filename="../UI/UserInterface.py" line="1961"/>
         <source>Toggle the bottom sidebar window</source>
         <translation>切换底栏窗口</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1929"/>
+        <location filename="../UI/UserInterface.py" line="1963"/>
         <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="1750"/>
+        <location filename="../UI/UserInterface.py" line="1784"/>
         <source>&amp;Debug-Viewer</source>
         <translation>调试浏览器(&amp;D)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2404"/>
+        <location filename="../UI/UserInterface.py" line="2438"/>
         <source>SQL Browser</source>
         <translation>SQL 浏览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2404"/>
+        <location filename="../UI/UserInterface.py" line="2438"/>
         <source>SQL &amp;Browser...</source>
         <translation>SQL 浏览器(&amp;B)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2409"/>
+        <location filename="../UI/UserInterface.py" line="2443"/>
         <source>Browse a SQL database</source>
         <translation>浏览 SQL 数据库</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2410"/>
+        <location filename="../UI/UserInterface.py" line="2444"/>
         <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="2461"/>
+        <location filename="../UI/UserInterface.py" line="2495"/>
         <source>Icon Editor</source>
         <translation>图标编辑器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2461"/>
+        <location filename="../UI/UserInterface.py" line="2495"/>
         <source>&amp;Icon Editor...</source>
         <translation>图标编辑器(&amp;I)…</translation>
     </message>
@@ -80529,176 +80549,176 @@
         <translation type="obsolete">打开 PySide 文档</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1569"/>
+        <location filename="../UI/UserInterface.py" line="1603"/>
         <source>{0} - Passive Mode</source>
         <translation>{0} - 被动模式</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1576"/>
+        <location filename="../UI/UserInterface.py" line="1610"/>
         <source>{0} - {1} - Passive Mode</source>
         <translation>{0} - {1} - 被动模式</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1580"/>
+        <location filename="../UI/UserInterface.py" line="1614"/>
         <source>{0} - {1} - {2} - Passive Mode</source>
         <translation>{0} - {1} - {2} - 被动模式</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3563"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>External Tools/{0}</source>
         <translation>外部工具/{0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5275"/>
+        <location filename="../UI/UserInterface.py" line="5309"/>
         <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="5000"/>
+        <location filename="../UI/UserInterface.py" line="5034"/>
         <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="5070"/>
+        <location filename="../UI/UserInterface.py" line="5104"/>
         <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="5114"/>
+        <location filename="../UI/UserInterface.py" line="5148"/>
         <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="5161"/>
+        <location filename="../UI/UserInterface.py" line="5195"/>
         <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="5231"/>
+        <location filename="../UI/UserInterface.py" line="5265"/>
         <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="5288"/>
+        <location filename="../UI/UserInterface.py" line="5322"/>
         <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="5311"/>
+        <location filename="../UI/UserInterface.py" line="5345"/>
         <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="5406"/>
+        <location filename="../UI/UserInterface.py" line="5440"/>
         <source>No tool entry found for external tool &apos;{0}&apos; in tool group &apos;{1}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5415"/>
+        <location filename="../UI/UserInterface.py" line="5449"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5454"/>
+        <location filename="../UI/UserInterface.py" line="5488"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation>正在启动进程“{0} {1}”。
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5470"/>
+        <location filename="../UI/UserInterface.py" line="5504"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5548"/>
+        <location filename="../UI/UserInterface.py" line="5582"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation>进程“{0}”已退出。
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5809"/>
+        <location filename="../UI/UserInterface.py" line="5843"/>
         <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6411"/>
+        <location filename="../UI/UserInterface.py" line="6445"/>
         <source>&lt;p&gt;The tasks 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="../UI/UserInterface.py" line="6440"/>
-        <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="6474"/>
+        <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="6508"/>
         <source>&lt;p&gt;The session 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="../UI/UserInterface.py" line="6520"/>
+        <location filename="../UI/UserInterface.py" line="6554"/>
         <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="6804"/>
+        <location filename="../UI/UserInterface.py" line="6838"/>
         <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="6998"/>
+        <location filename="../UI/UserInterface.py" line="7032"/>
         <source>Trying host {0}</source>
         <translation>正在尝试主机 {0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1122"/>
+        <location filename="../UI/UserInterface.py" line="1123"/>
         <source>Cooperation</source>
         <translation>协作</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Alt+Shift+O</source>
         <translation>Alt+Shift+O</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1178"/>
+        <location filename="../UI/UserInterface.py" line="1179"/>
         <source>Symbols</source>
         <translation>符号</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>Alt+Shift+Y</source>
         <translation>Alt+Shift+Y</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1187"/>
+        <location filename="../UI/UserInterface.py" line="1188"/>
         <source>Numbers</source>
         <translation>数字</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Alt+Shift+B</source>
         <translation>Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6241"/>
+        <location filename="../UI/UserInterface.py" line="6275"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation>键盘快捷键文件 (*.e4k)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2867"/>
+        <location filename="../UI/UserInterface.py" line="2901"/>
         <source>Python 3 Documentation</source>
         <translation>Python 3 文档</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2867"/>
+        <location filename="../UI/UserInterface.py" line="2901"/>
         <source>Python &amp;3 Documentation</source>
         <translation>Python &amp;3 文档</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2871"/>
+        <location filename="../UI/UserInterface.py" line="2905"/>
         <source>Open Python 3 Documentation</source>
         <translation>打开 Python 3 文档</translation>
     </message>
@@ -80718,343 +80738,343 @@
         <translation type="obsolete">打开 Python 2 文档</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7064"/>
+        <location filename="../UI/UserInterface.py" line="7098"/>
         <source>Error getting versions information</source>
         <translation>获取版本信息出错</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7057"/>
+        <location filename="../UI/UserInterface.py" line="7091"/>
         <source>The versions information could not be downloaded. Please go online and try again.</source>
         <translation>无法获取版本信息。请连线并再试一次。</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7064"/>
+        <location filename="../UI/UserInterface.py" line="7098"/>
         <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source>
         <translation>过去7天均无法获取版本信息。请连线并再试一次。</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="695"/>
+        <location filename="../UI/UserInterface.py" line="696"/>
         <source>Setting View Profile...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="708"/>
+        <location filename="../UI/UserInterface.py" line="709"/>
         <source>Reading Tasks...</source>
         <translation>读取任务…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="713"/>
+        <location filename="../UI/UserInterface.py" line="714"/>
         <source>Reading Templates...</source>
         <translation>读取模板…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="718"/>
+        <location filename="../UI/UserInterface.py" line="719"/>
         <source>Starting Debugger...</source>
         <translation>启动调试器…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>New Window</source>
         <translation>新建窗口</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>New &amp;Window</source>
         <translation>新建窗口(&amp;W)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1662"/>
+        <location filename="../UI/UserInterface.py" line="1696"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation>Ctrl+Shift+N</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2251"/>
+        <location filename="../UI/UserInterface.py" line="2285"/>
         <source>Unittest Rerun Failed</source>
         <translation>单元测试再次运行失败</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2251"/>
+        <location filename="../UI/UserInterface.py" line="2285"/>
         <source>Rerun Failed Tests...</source>
         <translation>重新运行失败的测试…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2256"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Rerun failed tests of the last run</source>
         <translation>重新运行上一次运行中失败的测试</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2258"/>
+        <location filename="../UI/UserInterface.py" line="2292"/>
         <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last unittest 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="2390"/>
+        <location filename="../UI/UserInterface.py" line="2424"/>
         <source>Compare &amp;Files side by side...</source>
         <translation>并排比较文件(&amp;F)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2475"/>
+        <location filename="../UI/UserInterface.py" line="2509"/>
         <source>Snapshot</source>
         <translation>快照</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2475"/>
+        <location filename="../UI/UserInterface.py" line="2509"/>
         <source>&amp;Snapshot...</source>
         <translation>快照(&amp;S)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2480"/>
+        <location filename="../UI/UserInterface.py" line="2514"/>
         <source>Take snapshots of a screen region</source>
         <translation>截取屏幕区域的快照</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2482"/>
+        <location filename="../UI/UserInterface.py" line="2516"/>
         <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="5383"/>
+        <location filename="../UI/UserInterface.py" line="5417"/>
         <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="7270"/>
+        <location filename="../UI/UserInterface.py" line="7304"/>
         <source>Select Workspace Directory</source>
         <translation>选择工作区目录</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
+        <location filename="../UI/UserInterface.py" line="1891"/>
         <source>Left Toolbox</source>
         <translation>左工具箱</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1869"/>
+        <location filename="../UI/UserInterface.py" line="1903"/>
         <source>Right Toolbox</source>
         <translation>右工具箱</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1721"/>
+        <location filename="../UI/UserInterface.py" line="1755"/>
         <source>Switch the input focus to the Project-Viewer window.</source>
         <translation>将输入焦点切换至项目查看器窗口。</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1723"/>
+        <location filename="../UI/UserInterface.py" line="1757"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1738"/>
+        <location filename="../UI/UserInterface.py" line="1772"/>
         <source>Switch the input focus to the Multiproject-Viewer window.</source>
         <translation>将输入焦点切换至多项目查看器窗口。</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1740"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1756"/>
-        <source>Switch the input focus to the Debug-Viewer window.</source>
-        <translation>将输入焦点切换至调试查看器窗口。</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1758"/>
-        <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"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1774"/>
-        <source>Switch the input focus to the Shell window.</source>
-        <translation>将输入焦点切换至 Shell 窗口。</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1776"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
-        <source>&amp;File-Browser</source>
-        <translation>文件浏览器(&amp;F)</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1791"/>
-        <source>Switch the input focus to the File-Browser window.</source>
-        <translation>将输入焦点切换至文件浏览器窗口。</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1793"/>
-        <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="1802"/>
-        <source>Lo&amp;g-Viewer</source>
-        <translation>日志浏览器(&amp;G)</translation>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1790"/>
+        <source>Switch the input focus to the Debug-Viewer window.</source>
+        <translation>将输入焦点切换至调试查看器窗口。</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1792"/>
+        <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"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1808"/>
-        <source>Switch the input focus to the Log-Viewer window.</source>
-        <translation>将输入焦点切换至日志查看器窗口。</translation>
+        <source>Switch the input focus to the Shell window.</source>
+        <translation>将输入焦点切换至 Shell 窗口。</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1810"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1819"/>
+        <source>&amp;File-Browser</source>
+        <translation>文件浏览器(&amp;F)</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1825"/>
+        <source>Switch the input focus to the File-Browser window.</source>
+        <translation>将输入焦点切换至文件浏览器窗口。</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1827"/>
+        <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="1836"/>
+        <source>Lo&amp;g-Viewer</source>
+        <translation>日志浏览器(&amp;G)</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1842"/>
+        <source>Switch the input focus to the Log-Viewer window.</source>
+        <translation>将输入焦点切换至日志查看器窗口。</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1844"/>
         <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="1820"/>
+        <location filename="../UI/UserInterface.py" line="1854"/>
         <source>&amp;Task-Viewer</source>
         <translation>任务浏览器(&amp;T)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1826"/>
-        <source>Switch the input focus to the Task-Viewer window.</source>
-        <translation>将输入焦点切换至任务浏览器窗口。</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
-        <source>Templ&amp;ate-Viewer</source>
-        <translation>模板浏览器(&amp;A)</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1845"/>
-        <source>Switch the input focus to the Template-Viewer window.</source>
-        <translation>将输入焦点切换至模板浏览器窗口。</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1847"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
-        <source>&amp;Left Toolbox</source>
-        <translation>左工具箱(&amp;L)</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1860"/>
-        <source>Toggle the Left Toolbox window</source>
-        <translation>切换左工具箱窗口</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1861"/>
-        <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="1869"/>
-        <source>&amp;Right Toolbox</source>
-        <translation>右工具箱(&amp;R)</translation>
+        <source>Switch the input focus to the Task-Viewer window.</source>
+        <translation>将输入焦点切换至任务浏览器窗口。</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1873"/>
+        <source>Templ&amp;ate-Viewer</source>
+        <translation>模板浏览器(&amp;A)</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1879"/>
+        <source>Switch the input focus to the Template-Viewer window.</source>
+        <translation>将输入焦点切换至模板浏览器窗口。</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1881"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1891"/>
+        <source>&amp;Left Toolbox</source>
+        <translation>左工具箱(&amp;L)</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1894"/>
+        <source>Toggle the Left Toolbox window</source>
+        <translation>切换左工具箱窗口</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1895"/>
+        <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="1903"/>
+        <source>&amp;Right Toolbox</source>
+        <translation>右工具箱(&amp;R)</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1907"/>
         <source>Toggle the Right Toolbox window</source>
         <translation>切换右工具箱窗口</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1874"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <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="1909"/>
+        <location filename="../UI/UserInterface.py" line="1943"/>
         <source>Right Sidebar</source>
         <translation>右侧边栏</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1909"/>
+        <location filename="../UI/UserInterface.py" line="1943"/>
         <source>&amp;Right Sidebar</source>
         <translation>右侧边栏(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1913"/>
+        <location filename="../UI/UserInterface.py" line="1947"/>
         <source>Toggle the right sidebar window</source>
         <translation>切换右侧边栏窗口</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1915"/>
+        <location filename="../UI/UserInterface.py" line="1949"/>
         <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="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Cooperation-Viewer</source>
         <translation>协作浏览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1972"/>
         <source>Co&amp;operation-Viewer</source>
         <translation>协作浏览器(&amp;O)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1944"/>
+        <location filename="../UI/UserInterface.py" line="1978"/>
         <source>Switch the input focus to the Cooperation-Viewer window.</source>
         <translation>将输入焦点切换至协作浏览器窗口。</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1946"/>
+        <location filename="../UI/UserInterface.py" line="1980"/>
         <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="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>Symbols-Viewer</source>
         <translation>符号查看器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <source>S&amp;ymbols-Viewer</source>
         <translation>符号查看器(&amp;Y)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1981"/>
+        <location filename="../UI/UserInterface.py" line="2015"/>
         <source>Switch the input focus to the Symbols-Viewer window.</source>
         <translation>将输入焦点切换至符号查看器窗口。</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1983"/>
+        <location filename="../UI/UserInterface.py" line="2017"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Numbers-Viewer</source>
         <translation>数字查看器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <source>Num&amp;bers-Viewer</source>
         <translation>数字查看器(&amp;B)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2000"/>
+        <location filename="../UI/UserInterface.py" line="2034"/>
         <source>Switch the input focus to the Numbers-Viewer window.</source>
         <translation>将输入焦点切换至数字查看器窗口。</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2002"/>
+        <location filename="../UI/UserInterface.py" line="2036"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3141"/>
+        <location filename="../UI/UserInterface.py" line="3175"/>
         <source>&amp;Windows</source>
         <translation>窗口(&amp;W)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1828"/>
+        <location filename="../UI/UserInterface.py" line="1862"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>IRC</source>
         <translation>IRC</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>&amp;IRC</source>
         <translation>&amp;IRC</translation>
     </message>
@@ -81064,67 +81084,67 @@
         <translation type="obsolete">Meta+Shift+I</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1963"/>
+        <location filename="../UI/UserInterface.py" line="1997"/>
         <source>Switch the input focus to the IRC window.</source>
         <translation>将输入焦点切换至 IRC 窗口。</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1965"/>
+        <location filename="../UI/UserInterface.py" line="1999"/>
         <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="2309"/>
+        <location filename="../UI/UserInterface.py" line="2343"/>
         <source>Qt-Designer</source>
         <translation>Qt 设计师</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2309"/>
+        <location filename="../UI/UserInterface.py" line="2343"/>
         <source>Qt-&amp;Designer...</source>
         <translation>Qt 设计师(&amp;D)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2314"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Start Qt-Designer</source>
         <translation>启动 Qt 设计师</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2315"/>
+        <location filename="../UI/UserInterface.py" line="2349"/>
         <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="2335"/>
+        <location filename="../UI/UserInterface.py" line="2369"/>
         <source>Qt-Linguist</source>
         <translation>Qt 语言家</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2335"/>
+        <location filename="../UI/UserInterface.py" line="2369"/>
         <source>Qt-&amp;Linguist...</source>
         <translation>Qt 语言家(&amp;L)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2340"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Start Qt-Linguist</source>
         <translation>启动 Qt 语言家</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2341"/>
+        <location filename="../UI/UserInterface.py" line="2375"/>
         <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="2831"/>
+        <location filename="../UI/UserInterface.py" line="2865"/>
         <source>Qt5 Documentation</source>
         <translation>Qt5 文档</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2831"/>
+        <location filename="../UI/UserInterface.py" line="2865"/>
         <source>Qt&amp;5 Documentation</source>
         <translation>Qt&amp;5 文档</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2835"/>
+        <location filename="../UI/UserInterface.py" line="2869"/>
         <source>Open Qt5 Documentation</source>
         <translation>打开 Qt5 文档</translation>
     </message>
@@ -81134,42 +81154,42 @@
         <translation type="obsolete">&lt;p&gt;状态栏的这一部分允许对当前编辑器、shell 或终端进行缩放。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2639"/>
+        <location filename="../UI/UserInterface.py" line="2673"/>
         <source>Manage SSL Certificates</source>
         <translation>管理 SSL 证书</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2639"/>
+        <location filename="../UI/UserInterface.py" line="2673"/>
         <source>Manage SSL Certificates...</source>
         <translation>管理 SSL 证书…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2644"/>
+        <location filename="../UI/UserInterface.py" line="2678"/>
         <source>Manage the saved SSL certificates</source>
         <translation>管理保存的 SSL 证书</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2646"/>
+        <location filename="../UI/UserInterface.py" line="2680"/>
         <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="2655"/>
+        <location filename="../UI/UserInterface.py" line="2689"/>
         <source>Edit Message Filters</source>
         <translation>编辑消息过滤器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2655"/>
+        <location filename="../UI/UserInterface.py" line="2689"/>
         <source>Edit Message Filters...</source>
         <translation>编辑消息过滤器…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2660"/>
+        <location filename="../UI/UserInterface.py" line="2694"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation>编辑消息过滤器使得不期望的消息不显示</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2662"/>
+        <location filename="../UI/UserInterface.py" line="2696"/>
         <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>
@@ -81179,122 +81199,122 @@
         <translation type="obsolete">PyQt&amp;4 文档</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2846"/>
+        <location filename="../UI/UserInterface.py" line="2880"/>
         <source>PyQt5 Documentation</source>
         <translation>PyQt5 文档</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2846"/>
+        <location filename="../UI/UserInterface.py" line="2880"/>
         <source>PyQt&amp;5 Documentation</source>
         <translation>PyQt&amp;5 文档</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2850"/>
+        <location filename="../UI/UserInterface.py" line="2884"/>
         <source>Open PyQt5 Documentation</source>
         <translation>打开 PyQt5 文档</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5687"/>
+        <location filename="../UI/UserInterface.py" line="5721"/>
         <source>&lt;p&gt;The PyQt5 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation>&lt;p&gt;未配置 PyQt5 文档起始位置。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2805"/>
+        <location filename="../UI/UserInterface.py" line="2839"/>
         <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Qt5 文档&lt;/b&gt;&lt;p&gt;显示 Qt5 文档。依赖于您的设置,这可能会在 eric 的内置帮助查看器内显示,或是启动一个网页浏览器,或是启动 Qt 助手。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2873"/>
+        <location filename="../UI/UserInterface.py" line="2907"/>
         <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="6989"/>
+        <location filename="../UI/UserInterface.py" line="7023"/>
         <source>%v/%m</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2174"/>
+        <location filename="../UI/UserInterface.py" line="2208"/>
         <source>Show Error Log</source>
         <translation>显示错误日志</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2170"/>
+        <location filename="../UI/UserInterface.py" line="2204"/>
         <source>Show Error &amp;Log...</source>
         <translation>显示错误日志(&amp;L)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2175"/>
+        <location filename="../UI/UserInterface.py" line="2209"/>
         <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="6993"/>
+        <location filename="../UI/UserInterface.py" line="7027"/>
         <source>Version Check</source>
         <translation>版本检查</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1668"/>
+        <location filename="../UI/UserInterface.py" line="1702"/>
         <source>Open a new eric6 instance</source>
         <translation>打开新的 eric6 实例</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1670"/>
+        <location filename="../UI/UserInterface.py" line="1704"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric6 IDE.&lt;/p&gt;</source>
         <translation>&lt;b&gt;新建窗口&lt;/b&gt;&lt;p&gt;打开新的 eric6 IDE 实例。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2113"/>
+        <location filename="../UI/UserInterface.py" line="2147"/>
         <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric6 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 search in the Qt help collection.&lt;/p&gt;</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2148"/>
+        <location filename="../UI/UserInterface.py" line="2182"/>
         <source>&lt;b&gt;Check for Updates...&lt;/b&gt;&lt;p&gt;Checks the internet for updates of eric6.&lt;/p&gt;</source>
         <translation>&lt;b&gt;检查更新…&lt;/b&gt;&lt;p&gt;从互联网检查 eric6 的更新。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2161"/>
+        <location filename="../UI/UserInterface.py" line="2195"/>
         <source>&lt;b&gt;Show downloadable versions...&lt;/b&gt;&lt;p&gt;Shows the eric6 versions available for download from the internet.&lt;/p&gt;</source>
         <translation>&lt;b&gt;显示可下载版本…&lt;/b&gt;&lt;p&gt;显示可以从互联网下载的 eric6 版本。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2445"/>
+        <location filename="../UI/UserInterface.py" line="2479"/>
         <source>eric6 Web Browser</source>
         <translation>eric6 网页浏览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2445"/>
+        <location filename="../UI/UserInterface.py" line="2479"/>
         <source>eric6 &amp;Web Browser...</source>
         <translation>eric6 网页浏览器(&amp;W)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2450"/>
+        <location filename="../UI/UserInterface.py" line="2484"/>
         <source>Start the eric6 Web Browser</source>
         <translation>启动 eric6 网页浏览器器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2452"/>
+        <location filename="../UI/UserInterface.py" line="2486"/>
         <source>&lt;b&gt;eric6 Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric6 Web Browser.&lt;/p&gt;</source>
         <translation>&lt;b&gt;eric6 网页浏览器&lt;/b&gt;&lt;p&gt;使用 eric6 网页浏览器浏览互联网。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2466"/>
+        <location filename="../UI/UserInterface.py" line="2500"/>
         <source>Start the eric6 Icon Editor</source>
         <translation>启动 eric6 图标编辑器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2468"/>
+        <location filename="../UI/UserInterface.py" line="2502"/>
         <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Icon Editor for editing simple icons.&lt;/p&gt;</source>
         <translation>&lt;b&gt;图标编辑器&lt;/b&gt;&lt;p&gt;启动 eric6 图标编辑器来编辑简单的图标。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2554"/>
+        <location filename="../UI/UserInterface.py" line="2588"/>
         <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 eric6.&lt;/p&gt;</source>
         <translation>&lt;b&gt;显示外部工具&lt;/b&gt;&lt;p&gt;打开一个对话框显示 eric6 使用的所有外部工具的路径和版本。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2895"/>
+        <location filename="../UI/UserInterface.py" line="2929"/>
         <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 eric6 installation directory.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Eric API 文档&lt;/b&gt;&lt;p&gt;显示 Eric API 文档。文档位置为 Eric6 安装文件夹下的文档或源代码子文件夹。&lt;/p&gt;</translation>
     </message>
@@ -81304,388 +81324,388 @@
         <translation type="obsolete">Qt 版本3 不被 eric6 支持。</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7156"/>
+        <location filename="../UI/UserInterface.py" line="7190"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric6 is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation>eric6 的 &lt;b&gt;{0}&lt;/b&gt; 更新已经可用,位于 &lt;b&gt;{1}&lt;/b&gt;。您是否希望下载它?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7168"/>
+        <location filename="../UI/UserInterface.py" line="7202"/>
         <source>Eric6 is up to date</source>
         <translation>Eric6 已是最新版本</translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="7202"/>
+        <source>You are using the latest version of eric6</source>
+        <translation>您正在使用 eric6 的最新版本</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7285"/>
+        <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
+        <translation>尚未配置 eric6。将打开配置对话框。</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="673"/>
+        <source>Generating Plugins Toolbars...</source>
+        <translation>生成插件工具栏…</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4155"/>
+        <source>&amp;User Tools</source>
+        <translation>用户工具(&amp;U)</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4227"/>
+        <source>No User Tools Configured</source>
+        <translation>没有配置的用户工具</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7043"/>
+        <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
+        <translation>因为当前处在 &lt;b&gt;离线&lt;/b&gt; 状态,无法获取版本信息。请连线并再试一次。</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2464"/>
+        <source>Hex Editor</source>
+        <translation>十六进制编辑器</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2464"/>
+        <source>&amp;Hex Editor...</source>
+        <translation>十六进制编辑器(&amp;H)…</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2469"/>
+        <source>Start the eric6 Hex Editor</source>
+        <translation>启动 eric6 十六进制编辑器</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2471"/>
+        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;十六进制编辑器&lt;/b&gt;&lt;p&gt;启动 eric6 十六进制编辑器来查看、修改二进制文件。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2712"/>
+        <source>Clear private data</source>
+        <translation type="unfinished">清空隐私数据</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2714"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1670"/>
+        <source>Save session...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1675"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6592"/>
+        <source>Load session</source>
+        <translation type="unfinished">载入会话</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1683"/>
+        <source>Load session...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1688"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6592"/>
+        <source>eric6 Session Files (*.e5s)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6643"/>
+        <source>Crash Session found!</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6643"/>
+        <source>A session file of a crashed session was found. Shall this session be restored?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="676"/>
+        <source>Cleaning Plugins Download Area...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="668"/>
+        <source>Initializing Plugins...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7178"/>
+        <source>Update Check</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="7178"/>
+        <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="7168"/>
-        <source>You are using the latest version of eric6</source>
-        <translation>您正在使用 eric6 的最新版本</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7251"/>
-        <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
-        <translation>尚未配置 eric6。将打开配置对话框。</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="672"/>
-        <source>Generating Plugins Toolbars...</source>
-        <translation>生成插件工具栏…</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4121"/>
-        <source>&amp;User Tools</source>
-        <translation>用户工具(&amp;U)</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4193"/>
-        <source>No User Tools Configured</source>
-        <translation>没有配置的用户工具</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7009"/>
-        <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
-        <translation>因为当前处在 &lt;b&gt;离线&lt;/b&gt; 状态,无法获取版本信息。请连线并再试一次。</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2430"/>
-        <source>Hex Editor</source>
-        <translation>十六进制编辑器</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2430"/>
-        <source>&amp;Hex Editor...</source>
-        <translation>十六进制编辑器(&amp;H)…</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2435"/>
-        <source>Start the eric6 Hex Editor</source>
-        <translation>启动 eric6 十六进制编辑器</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2437"/>
-        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric6 Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;十六进制编辑器&lt;/b&gt;&lt;p&gt;启动 eric6 十六进制编辑器来查看、修改二进制文件。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2678"/>
-        <source>Clear private data</source>
-        <translation type="unfinished">清空隐私数据</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2680"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1636"/>
-        <source>Save session...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1641"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6558"/>
-        <source>Load session</source>
-        <translation type="unfinished">载入会话</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
-        <source>Load session...</source>
+        <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2047"/>
+        <source>Code Documentation Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2870"/>
+        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2886"/>
+        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2944"/>
+        <source>PySide2 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2944"/>
+        <source>PySide&amp;2 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2948"/>
+        <source>Open PySide2 Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2950"/>
+        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5826"/>
+        <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2820"/>
+        <source>Virtualenv Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2814"/>
+        <source>&amp;Virtualenv Manager...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2822"/>
+        <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2837"/>
+        <source>Virtualenv Configurator</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2831"/>
+        <source>Virtualenv &amp;Configurator...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3182"/>
+        <source>Left Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3194"/>
+        <source>Bottom Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3201"/>
+        <source>Right Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3221"/>
+        <source>Plug-ins</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1654"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6558"/>
-        <source>eric6 Session Files (*.e5s)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6609"/>
-        <source>Crash Session found!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6609"/>
-        <source>A session file of a crashed session was found. Shall this session be restored?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="675"/>
-        <source>Cleaning Plugins Download Area...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="667"/>
-        <source>Initializing Plugins...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7144"/>
-        <source>Update Check</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7144"/>
-        <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="7134"/>
-        <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2013"/>
-        <source>Code Documentation Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2836"/>
-        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2852"/>
-        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2910"/>
-        <source>PySide2 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2910"/>
-        <source>PySide&amp;2 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2914"/>
-        <source>Open PySide2 Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2916"/>
-        <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&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5792"/>
-        <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2786"/>
-        <source>Virtualenv Manager</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2780"/>
-        <source>&amp;Virtualenv Manager...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2788"/>
-        <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2803"/>
-        <source>Virtualenv Configurator</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2797"/>
-        <source>Virtualenv &amp;Configurator...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3148"/>
-        <source>Left Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3160"/>
-        <source>Bottom Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3167"/>
-        <source>Right Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3187"/>
-        <source>Plug-ins</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1620"/>
         <source>Restart</source>
         <translation type="unfinished">重启</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1620"/>
+        <location filename="../UI/UserInterface.py" line="1654"/>
         <source>Ctrl+Shift+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1626"/>
+        <location filename="../UI/UserInterface.py" line="1660"/>
         <source>Restart the IDE</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1627"/>
+        <location filename="../UI/UserInterface.py" line="1661"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5966"/>
+        <location filename="../UI/UserInterface.py" line="6000"/>
         <source>Start Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5905"/>
+        <location filename="../UI/UserInterface.py" line="5939"/>
         <source>The eric6 web browser could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5966"/>
+        <location filename="../UI/UserInterface.py" line="6000"/>
         <source>&lt;p&gt;The eric6 web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
+        <location filename="../UI/UserInterface.py" line="2085"/>
         <source>Conda</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2033"/>
+        <location filename="../UI/UserInterface.py" line="2067"/>
         <source>PyPI</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3498"/>
+        <location filename="../UI/UserInterface.py" line="3532"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2069"/>
+        <location filename="../UI/UserInterface.py" line="2103"/>
         <source>MicroPython</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1957"/>
+        <location filename="../UI/UserInterface.py" line="1991"/>
         <source>Ctrl+Alt+Shift+I</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2013"/>
+        <location filename="../UI/UserInterface.py" line="2047"/>
         <source>Ctrl+Alt+Shift+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2019"/>
+        <location filename="../UI/UserInterface.py" line="2053"/>
         <source>Switch the input focus to the Code Documentation Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2022"/>
+        <location filename="../UI/UserInterface.py" line="2056"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2033"/>
+        <location filename="../UI/UserInterface.py" line="2067"/>
         <source>Ctrl+Alt+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2039"/>
+        <location filename="../UI/UserInterface.py" line="2073"/>
         <source>Switch the input focus to the PyPI window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2041"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
-        <source>Ctrl+Alt+Shift+C</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2057"/>
-        <source>Switch the input focus to the Conda window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2059"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2069"/>
-        <source>Ctrl+Alt+Shift+M</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2075"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2085"/>
+        <source>Ctrl+Alt+Shift+C</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2091"/>
+        <source>Switch the input focus to the Conda window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2093"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2103"/>
+        <source>Ctrl+Alt+Shift+M</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2109"/>
         <source>Switch the input focus to the MicroPython window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2077"/>
+        <location filename="../UI/UserInterface.py" line="2111"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3145"/>
+        <location filename="../UI/UserInterface.py" line="3179"/>
         <source>Central Park</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3672"/>
+        <location filename="../UI/UserInterface.py" line="3706"/>
         <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="5009"/>
+        <location filename="../UI/UserInterface.py" line="5043"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5079"/>
+        <location filename="../UI/UserInterface.py" line="5113"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5123"/>
+        <location filename="../UI/UserInterface.py" line="5157"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2182"/>
+        <location filename="../UI/UserInterface.py" line="2216"/>
         <source>Show Install Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2182"/>
+        <location filename="../UI/UserInterface.py" line="2216"/>
         <source>Show Install &amp;Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2186"/>
+        <location filename="../UI/UserInterface.py" line="2220"/>
         <source>Show Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2188"/>
+        <location filename="../UI/UserInterface.py" line="2222"/>
         <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"></translation>
     </message>
@@ -86141,6 +86161,21 @@
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="744"/>
+        <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the shell window. A dialog is shown to enter the search text and options for the search.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="765"/>
+        <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="786"/>
+        <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
@@ -86608,32 +86643,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="323"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="333"/>
         <source>&lt;virtualenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="341"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="351"/>
         <source>&lt;No suitable virtualenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="343"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="353"/>
         <source>virtualenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="377"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="387"/>
         <source>&lt;pyvenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="397"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="407"/>
         <source>&lt;No suitable pyvenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="399"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="409"/>
         <source>pyvenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -86768,7 +86803,7 @@
         <translation type="unfinished">文本文件 (*.txt);;所有文件 (*)</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="411"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="421"/>
         <source>conda Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>

eric ide

mercurial