Merged with branch 'eric7' in order to prepare a new release. eric7-maintenance release-24.06

Sun, 02 Jun 2024 09:51:20 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 02 Jun 2024 09:51:20 +0200
branch
eric7-maintenance
changeset 10733
d96c69a235fc
parent 10695
161fdb080c76 (current diff)
parent 10732
db0333eea9f5 (diff)
child 10734
2b015db9761a

Merged with branch 'eric7' in order to prepare a new release.

docs/changelog.md file | annotate | diff | comparison | revisions
eric7.epj file | annotate | diff | comparison | revisions
pyproject.toml file | annotate | diff | comparison | revisions
scripts/install.py file | annotate | diff | comparison | revisions
src/eric7/APIs/Python3/eric7.api file | annotate | diff | comparison | revisions
src/eric7/Debugger/DebugServer.py file | annotate | diff | comparison | revisions
src/eric7/Debugger/DebuggerInterfacePython.py file | annotate | diff | comparison | revisions
src/eric7/Documentation/Help/source.qch file | annotate | diff | comparison | revisions
src/eric7/Documentation/Help/source.qhp file | annotate | diff | comparison | revisions
src/eric7/QScintilla/Editor.py file | annotate | diff | comparison | revisions
src/eric7/UI/UserInterface.py file | annotate | diff | comparison | revisions
src/eric7/Utilities/__init__.py file | annotate | diff | comparison | revisions
src/eric7/eric7_testing.py file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_cs.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_de.qm file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_de.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_empty.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_en.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_es.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_fr.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_it.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_pt.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_ru.qm file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_ru.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_tr.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_zh_CN.ts file | annotate | diff | comparison | revisions
--- a/docs/changelog.md	Wed Apr 24 10:14:44 2024 +0200
+++ b/docs/changelog.md	Sun Jun 02 09:51:20 2024 +0200
@@ -1,5 +1,17 @@
 # Change Log
 
+### Version 24.6
+- bug fixes
+- Editor
+    - Added a key event handler to make the keypad ',' always insert a '.'
+      character because that is what is needed in programming.
+- General
+    - Added a `Help` menu entry to generate some version information and copy
+      that to the clipboard (see issue 562).
+- Web Browser
+    - Added the capability to enable the rendering of all web pages using a
+      dark theme (PyQt/Qt >= 6.7.0).
+
 ### Version 24.5
 - bug fixes
 - General
--- a/eric7.epj	Wed Apr 24 10:14:44 2024 +0200
+++ b/eric7.epj	Sun Jun 02 09:51:20 2024 +0200
@@ -1029,6 +1029,7 @@
         "skip-string-normalization": false,
         "source": "project",
         "target-version": [
+          "py313",
           "py312",
           "py311",
           "py310",
@@ -2458,6 +2459,7 @@
       "src/eric7/WebBrowser/data/__init__.py",
       "src/eric7/__init__.py",
       "src/eric7/__main__.py",
+      "src/eric7/__version__.py",
       "src/eric7/eric7_api.py",
       "src/eric7/eric7_browser.py",
       "src/eric7/eric7_browser.pyw",
--- a/pyproject.toml	Wed Apr 24 10:14:44 2024 +0200
+++ b/pyproject.toml	Sun Jun 02 09:51:20 2024 +0200
@@ -143,7 +143,7 @@
 include-package-data = false
 
 [tool.setuptools.dynamic]
-version = {attr = "eric7.UI.Info.VersionOnly"}
+version = {attr = "eric7.__version__.VersionOnly"}
 
 [tool.setuptools.packages.find]
 where = ["src"]
@@ -190,7 +190,7 @@
 #
 
 [tool.black]
-target-version = ["py38", "py39", "py310", "py311", "py312"]
+target-version = ["py38", "py39", "py310", "py311", "py312", "py313"]
 line-length = 88
 extend-exclude = '''
 /(
--- a/scripts/install.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/scripts/install.py	Sun Jun 02 09:51:20 2024 +0200
@@ -219,12 +219,12 @@
     @param dst destination file name
     @type str
     """
-    if os.path.exists(os.path.join("eric", "src", "eric7", "UI", "Info.py")):
+    if os.path.exists(os.path.join("eric", "src", "eric7", "__version__.py")):
         # Installing from installer archive
-        from eric.src.eric7.UI.Info import Version  # noqa: I101, I102
-    elif os.path.exists(os.path.join("src", "eric7", "UI", "Info.py")):
+        from eric.src.eric7.__version__ import Version  # noqa: I101, I102
+    elif os.path.exists(os.path.join("src", "eric7", "__version__.py")):
         # Installing from source tree
-        from src.eric7.UI.Info import Version  # noqa: I101, I102
+        from src.eric7.__version__ import Version  # noqa: I101, I102
     else:
         Version = "Unknown"
 
@@ -1231,12 +1231,12 @@
         os.path.join(directories["icns"], "eric.icns"),
     )
 
-    if os.path.exists(os.path.join("eric", "eric7", "UI", "Info.py")):
+    if os.path.exists(os.path.join("eric", "eric7", "__version__.py")):
         # Installing from archive
-        from eric.eric7.UI.Info import CopyrightShort, Version  # noqa: I101, I102
-    elif os.path.exists(os.path.join("eric7", "UI", "Info.py")):
+        from eric.eric7.__version__ import CopyrightShort, Version  # noqa: I101, I102
+    elif os.path.exists(os.path.join("eric7", "__version__.py")):
         # Installing from source tree
-        from eric7.UI.Info import CopyrightShort, Version  # noqa: I101
+        from eric7.__version__ import CopyrightShort, Version  # noqa: I101
     else:
         Version = "Unknown"
         CopyrightShort = "(c) 2002 - 2024 Detlev Offenbach"
--- a/src/eric7/APIs/Python3/eric7.api	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/APIs/Python3/eric7.api	Sun Jun 02 09:51:20 2024 +0200
@@ -10689,8 +10689,6 @@
 eric7.UI.Info.FeatureAddress?7
 eric7.UI.Info.Homepage?7
 eric7.UI.Info.Program?7
-eric7.UI.Info.Version?7
-eric7.UI.Info.VersionOnly?7
 eric7.UI.InstallInfoDialog.InstallInfoDialog.on_deleteButton_clicked?4()
 eric7.UI.InstallInfoDialog.InstallInfoDialog.on_editButton_toggled?4(checked)
 eric7.UI.InstallInfoDialog.InstallInfoDialog.on_saveButton_clicked?4()
@@ -13364,6 +13362,8 @@
 eric7.WebBrowser.ZoomManager.ZoomValuesModel.ZoomValuesModel.removeRows?4(row, count, parent=None)
 eric7.WebBrowser.ZoomManager.ZoomValuesModel.ZoomValuesModel.rowCount?4(parent=None)
 eric7.WebBrowser.ZoomManager.ZoomValuesModel.ZoomValuesModel?1(manager, parent=None)
+eric7.__version__.Version?7
+eric7.__version__.VersionOnly?7
 eric7.eric7_api.createArgumentParser?4()
 eric7.eric7_api.main?4()
 eric7.eric7_browser.SettingsDir?7
--- a/src/eric7/CycloneDXInterface/CycloneDXUtilities.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/CycloneDXInterface/CycloneDXUtilities.py	Sun Jun 02 09:51:20 2024 +0200
@@ -342,7 +342,7 @@
 
         __EricToolVersion = str(meta_version("eric-ide"))
     except Exception:
-        from eric7.UI.Info import Version  # __IGNORE_WARNING_I101__
+        from eric7.__version__ import Version  # __IGNORE_WARNING_I101__
 
         __EricToolVersion = Version
 
--- a/src/eric7/Debugger/DebugServer.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Debugger/DebugServer.py	Sun Jun 02 09:51:20 2024 +0200
@@ -562,7 +562,7 @@
                         configOverride=configOverride,
                     )
                 else:
-                    if project.getProjectData(dataKey="EMBEDDED_VENV"):
+                    if not venvName and project.getProjectData(dataKey="EMBEDDED_VENV"):
                         venvName = self.getProjectEnvironmentString()
 
                     (
--- a/src/eric7/Debugger/DebuggerInterfacePython.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Debugger/DebuggerInterfacePython.py	Sun Jun 02 09:51:20 2024 +0200
@@ -1404,8 +1404,15 @@
         @param sock reference to the socket to read data from
         @type QTcpSocket
         """
+        headerSize = struct.calcsize(b"!II")
+
         while sock and sock.bytesAvailable():
-            header = sock.read(struct.calcsize(b"!II"))
+            now = time.monotonic()
+            while sock.bytesAvailable() < headerSize:
+                sock.waitForReadyRead(50)
+                if time.monotonic() - now > 2.0:  # 2 seconds timeout
+                    return
+            header = sock.read(headerSize)
             length, datahash = struct.unpack(b"!II", header)
 
             data = bytearray()
--- a/src/eric7/Debugger/VariablesViewer.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Debugger/VariablesViewer.py	Sun Jun 02 09:51:20 2024 +0200
@@ -1031,11 +1031,12 @@
         @type QModelIndex
         """
         node = self.proxyModel.mapToSource(index).internalPointer()
-        if node.hasChildren and index.column() == 0:
-            state = self.isExpanded(index)
-            self.setExpanded(index, not state)
-        else:
-            self.__showVariableDetails(index)
+        if node:
+            if node.hasChildren and index.column() == 0:
+                state = self.isExpanded(index)
+                self.setExpanded(index, not state)
+            else:
+                self.__showVariableDetails(index)
 
     def __mdlRequestExpand(self, modelIndex):
         """
@@ -1054,8 +1055,12 @@
         self.menu = QMenu()
         self.menu.addAction(self.tr("Show Details..."), self.__showDetails)
         self.menu.addSeparator()
-        self.menu.addAction(self.tr("Expand"), self.__expandChildren)
-        self.menu.addAction(self.tr("Collapse"), self.__collapseChildren)
+        self.__expandChildrenAct = self.menu.addAction(
+            self.tr("Expand Subitems"), self.__expandChildren
+        )
+        self.__collapseChildrenAct = self.menu.addAction(
+            self.tr("Collapse Subitems"), self.__collapseChildren
+        )
         self.menu.addAction(self.tr("Collapse All"), self.collapseAll)
         self.menu.addSeparator()
         self.menu.addAction(self.tr("Refresh"), self.__refreshView)
@@ -1079,7 +1084,11 @@
         @type QPoint
         """
         gcoord = self.mapToGlobal(coord)
-        if self.indexAt(coord).isValid():
+        index = self.indexAt(coord)
+        if index.isValid():
+            expanded = self.isExpanded(index)
+            self.__expandChildrenAct.setEnabled(expanded)
+            self.__collapseChildrenAct.setEnabled(expanded)
             self.menu.popup(gcoord)
         else:
             self.backMenu.popup(gcoord)
@@ -1090,12 +1099,13 @@
         """
         index = self.currentIndex()
         node = self.proxyModel.mapToSource(index).internalPointer()
-        for child in node.children:
-            if child.hasChildren:
-                row = node.children.index(child)
-                idx = self.varModel.createIndex(row, 0, child)
-                idx = self.proxyModel.mapFromSource(idx)
-                self.expand(idx)
+        if node:
+            for child in node.children:
+                if child.hasChildren:
+                    row = node.children.index(child)
+                    idx = self.varModel.createIndex(row, 0, child)
+                    idx = self.proxyModel.mapFromSource(idx)
+                    self.expand(idx)
 
     def __collapseChildren(self):
         """
@@ -1103,12 +1113,13 @@
         """
         index = self.currentIndex()
         node = self.proxyModel.mapToSource(index).internalPointer()
-        for child in node.children:
-            row = node.children.index(child)
-            idx = self.varModel.createIndex(row, 0, child)
-            idx = self.proxyModel.mapFromSource(idx)
-            if self.isExpanded(idx):
-                self.collapse(idx)
+        if node:
+            for child in node.children:
+                row = node.children.index(child)
+                idx = self.varModel.createIndex(row, 0, child)
+                idx = self.proxyModel.mapFromSource(idx)
+                if self.isExpanded(idx):
+                    self.collapse(idx)
 
     def __refreshView(self):
         """
@@ -1136,6 +1147,8 @@
         from .VariableDetailDialog import VariableDetailDialog
 
         node = self.proxyModel.mapToSource(index).internalPointer()
+        if node is None:
+            return
 
         val = node.value
         vtype = node.type
Binary file src/eric7/Documentation/Help/source.qch has changed
--- a/src/eric7/Documentation/Help/source.qhp	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Documentation/Help/source.qhp	Sun Jun 02 09:51:20 2024 +0200
@@ -1539,6 +1539,7 @@
             <section title="eric7.WebBrowser.WebInspector" ref="eric7.WebBrowser.WebInspector.html" />
           </section>
           <section title="eric7.__main__" ref="eric7.__main__.html" />
+          <section title="eric7.__version__" ref="eric7.__version__.html" />
           <section title="eric7.eric7_api" ref="eric7.eric7_api.html" />
           <section title="eric7.eric7_browser" ref="eric7.eric7_browser.html" />
           <section title="eric7.eric7_compare" ref="eric7.eric7_compare.html" />
@@ -17782,6 +17783,7 @@
       <keyword name="UserInterface.__configToolBars" id="UserInterface.__configToolBars" ref="eric7.UI.UserInterface.html#UserInterface.__configToolBars" />
       <keyword name="UserInterface.__configViewProfiles" id="UserInterface.__configViewProfiles" ref="eric7.UI.UserInterface.html#UserInterface.__configViewProfiles" />
       <keyword name="UserInterface.__connectToWebBrowser" id="UserInterface.__connectToWebBrowser" ref="eric7.UI.UserInterface.html#UserInterface.__connectToWebBrowser" />
+      <keyword name="UserInterface.__copyVersions" id="UserInterface.__copyVersions" ref="eric7.UI.UserInterface.html#UserInterface.__copyVersions" />
       <keyword name="UserInterface.__createDockWindow" id="UserInterface.__createDockWindow" ref="eric7.UI.UserInterface.html#UserInterface.__createDockWindow" />
       <keyword name="UserInterface.__createLayout" id="UserInterface.__createLayout" ref="eric7.UI.UserInterface.html#UserInterface.__createLayout" />
       <keyword name="UserInterface.__createObjects" id="UserInterface.__createObjects" ref="eric7.UI.UserInterface.html#UserInterface.__createObjects" />
@@ -19635,6 +19637,7 @@
       <keyword name="__setAction" id="__setAction" ref="eric7.Preferences.Shortcuts.html#__setAction" />
       <keyword name="__showwarning" id="__showwarning" ref="eric7.Utilities.__init__.html#__showwarning" />
       <keyword name="__tomlSyntaxCheck" id="__tomlSyntaxCheck" ref="eric7.Plugins.CheckerPlugins.SyntaxChecker.tomlCheckSyntax.html#__tomlSyntaxCheck" />
+      <keyword name="__version__ (Module)" id="__version__ (Module)" ref="eric7.__version__.html" />
       <keyword name="__yamlSyntaxCheck" id="__yamlSyntaxCheck" ref="eric7.Plugins.CheckerPlugins.SyntaxChecker.yamlCheckSyntax.html#__yamlSyntaxCheck" />
       <keyword name="_addCycloneDXDependency" id="_addCycloneDXDependency" ref="eric7.CycloneDXInterface.CycloneDXUtilities.html#_addCycloneDXDependency" />
       <keyword name="_add_check" id="_add_check" ref="eric7.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.html#_add_check" />
@@ -22055,6 +22058,7 @@
       <file>eric7.WebBrowser.ZoomManager.ZoomValuesDialog.html</file>
       <file>eric7.WebBrowser.ZoomManager.ZoomValuesModel.html</file>
       <file>eric7.__main__.html</file>
+      <file>eric7.__version__.html</file>
       <file>eric7.eric7_api.html</file>
       <file>eric7.eric7_browser.html</file>
       <file>eric7.eric7_compare.html</file>
--- a/src/eric7/Documentation/Source/eric7.UI.Info.html	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Documentation/Source/eric7.UI.Info.html	Sun Jun 02 09:51:20 2024 +0200
@@ -19,8 +19,6 @@
 <tr><td>FeatureAddress</td></tr>
 <tr><td>Homepage</td></tr>
 <tr><td>Program</td></tr>
-<tr><td>Version</td></tr>
-<tr><td>VersionOnly</td></tr>
 </table>
 
 <h3>Classes</h3>
--- a/src/eric7/Documentation/Source/eric7.UI.UserInterface.html	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Documentation/Source/eric7.UI.UserInterface.html	Sun Jun 02 09:51:20 2024 +0200
@@ -380,6 +380,10 @@
 <td>Private method to connect to a started web browser.</td>
 </tr>
 <tr>
+<td><a href="#UserInterface.__copyVersions">__copyVersions</a></td>
+<td>Private method to generated version information and copy that to the clipboard.</td>
+</tr>
+<tr>
 <td><a href="#UserInterface.__createDockWindow">__createDockWindow</a></td>
 <td>Private method to create a dock window with common properties.</td>
 </tr>
@@ -1588,6 +1592,13 @@
 int
 </dd>
 </dl>
+<a NAME="UserInterface.__copyVersions" ID="UserInterface.__copyVersions"></a>
+<h4>UserInterface.__copyVersions</h4>
+<b>__copyVersions</b>(<i></i>)
+<p>
+        Private method to generated version information and copy that to the clipboard.
+</p>
+
 <a NAME="UserInterface.__createDockWindow" ID="UserInterface.__createDockWindow"></a>
 <h4>UserInterface.__createDockWindow</h4>
 <b>__createDockWindow</b>(<i>name</i>)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/eric7/Documentation/Source/eric7.__version__.html	Sun Jun 02 09:51:20 2024 +0200
@@ -0,0 +1,31 @@
+<!DOCTYPE html>
+<html><head>
+<title>eric7.__version__</title>
+<meta charset="UTF-8">
+<link rel="stylesheet" href="styles.css">
+</head>
+<body>
+<a NAME="top" ID="top"></a>
+<h1>eric7.__version__</h1>
+<p>
+Module containing some eric-ide version information.
+</p>
+
+<h3>Global Attributes</h3>
+<table>
+<tr><td>Version</td></tr>
+<tr><td>VersionOnly</td></tr>
+</table>
+
+<h3>Classes</h3>
+<table>
+<tr><td>None</td></tr>
+</table>
+
+<h3>Functions</h3>
+<table>
+<tr><td>None</td></tr>
+</table>
+
+<hr />
+</body></html>
--- a/src/eric7/Documentation/Source/index-eric7.html	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Documentation/Source/index-eric7.html	Sun Jun 02 09:51:20 2024 +0200
@@ -216,6 +216,10 @@
 <td>Main script to enable starting eric7 with 'python -m eric7'.</td>
 </tr>
 <tr>
+<td><a href="eric7.__version__.html">__version__</a></td>
+<td>Module containing some eric-ide version information.</td>
+</tr>
+<tr>
 <td><a href="eric7.eric7_api.html">eric7_api</a></td>
 <td>eric API Generator.</td>
 </tr>
--- a/src/eric7/EricCore/EricFileSystemWatcher.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/EricCore/EricFileSystemWatcher.py	Sun Jun 02 09:51:20 2024 +0200
@@ -11,7 +11,13 @@
 
 from PyQt6.QtCore import QObject, pyqtSignal, pyqtSlot
 from watchdog.events import EVENT_TYPE_CLOSED, EVENT_TYPE_OPENED, FileSystemEventHandler
-from watchdog.observers import Observer
+
+from eric7.SystemUtilities import OSUtilities
+
+if OSUtilities.isMacPlatform():
+    from watchdog.observers.kqueue import KqueueObserver as Observer
+else:
+    from watchdog.observers import Observer
 
 
 class _EricFileSystemEventHandler(QObject, FileSystemEventHandler):
--- a/src/eric7/EricNetwork/EricJsonServer.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/EricNetwork/EricJsonServer.py	Sun Jun 02 09:51:20 2024 +0200
@@ -10,6 +10,7 @@
 import contextlib
 import json
 import struct
+import time
 import zlib
 
 from PyQt6.QtCore import (
@@ -149,6 +150,8 @@
         @param idString id of the connection
         @type str
         """
+        headerSize = struct.calcsize(b"!II")
+
         if idString:
             try:
                 connection = self.__connections[idString]
@@ -158,15 +161,26 @@
             connection = self.__connection
 
         while connection and connection.bytesAvailable():
-            header = connection.read(struct.calcsize(b"!II"))
+            now = time.monotonic()
+            while connection.bytesAvailable() < headerSize:
+                connection.waitForReadyRead(50)
+                if time.monotonic() - now > 2.0:  # 2 seconds timeout
+                    return
+            header = connection.read(headerSize)
             length, datahash = struct.unpack(b"!II", header)
 
             data = bytearray()
+            now = time.monotonic()
             while len(data) < length:
                 maxSize = length - len(data)
                 if connection.bytesAvailable() < maxSize:
                     connection.waitForReadyRead(50)
-                data += connection.read(maxSize)
+                newData = connection.read(maxSize)
+                if newData:
+                    data += newData
+                else:
+                    if time.monotonic() - now > 2.0:  # 2 seconds timeout
+                        break
 
             if zlib.adler32(data) & 0xFFFFFFFF != datahash:
                 # corrupted data -> discard and continue
--- a/src/eric7/HelpViewer/HelpViewerImplQWE.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/HelpViewer/HelpViewerImplQWE.py	Sun Jun 02 09:51:20 2024 +0200
@@ -471,6 +471,8 @@
         ):
             self.__helpViewerWidget.searchPrev()
             evt.accept()
+        elif key == Qt.Key.Key_Escape:
+            self.findText("")
 
     def _mouseReleaseEvent(self, evt):
         """
--- a/src/eric7/HelpViewer/HelpViewerWidget.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/HelpViewer/HelpViewerWidget.py	Sun Jun 02 09:51:20 2024 +0200
@@ -44,6 +44,7 @@
 from eric7.QtHelpInterface.HelpIndexWidget import HelpIndexWidget
 from eric7.QtHelpInterface.HelpSearchWidget import HelpSearchWidget
 from eric7.QtHelpInterface.HelpTocWidget import HelpTocWidget
+from eric7.SystemUtilities import QtUtilities
 
 from .HelpBookmarksWidget import HelpBookmarksWidget
 from .OpenPagesWidget import OpenPagesWidget
@@ -1278,6 +1279,19 @@
             Preferences.getWebBrowser("PdfViewerEnabled"),
         )
 
+        if QtUtilities.qVersionTuple() >= (6, 6, 0):
+            # Qt 6.6+
+            settings.setAttribute(
+                QWebEngineSettings.WebAttribute.ReadingFromCanvasEnabled, False
+            )
+
+        if QtUtilities.qVersionTuple() >= (6, 7, 0):
+            # Qt 6.7+
+            settings.setAttribute(
+                QWebEngineSettings.WebAttribute.ForceDarkMode,
+                Preferences.getWebBrowser("ForceDarkMode"),
+            )
+
     #######################################################################
     ## Search widget related methods below
     #######################################################################
--- a/src/eric7/Network/IRC/IrcChannelWidget.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Network/IRC/IrcChannelWidget.py	Sun Jun 02 09:51:20 2024 +0200
@@ -32,11 +32,12 @@
 )
 
 from eric7 import Preferences, Utilities
+from eric7.__version__ import Version
 from eric7.EricGui import EricPixmapCache
 from eric7.EricWidgets import EricFileDialog, EricMessageBox
 from eric7.EricWidgets.EricApplication import ericApp
 from eric7.SystemUtilities import OSUtilities
-from eric7.UI.Info import Copyright, Version
+from eric7.UI.Info import Copyright
 
 from .IrcUtilities import getChannelModesDict, ircFilter, ircTimestamp
 from .Ui_IrcChannelWidget import Ui_IrcChannelWidget
--- a/src/eric7/Network/IRC/IrcWidget.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Network/IRC/IrcWidget.py	Sun Jun 02 09:51:20 2024 +0200
@@ -28,10 +28,11 @@
     SSL_AVAILABLE = False
 
 from eric7 import Preferences
+from eric7.__version__ import Version
 from eric7.EricGui import EricPixmapCache
 from eric7.EricWidgets import EricMessageBox
 from eric7.SystemUtilities import OSUtilities
-from eric7.UI.Info import Copyright, Version
+from eric7.UI.Info import Copyright
 
 from .IrcNetworkManager import IrcNetworkManager
 from .Ui_IrcWidget import Ui_IrcWidget
--- a/src/eric7/PipInterface/PipPackageDetailsDialog.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/PipInterface/PipPackageDetailsDialog.py	Sun Jun 02 09:51:20 2024 +0200
@@ -182,17 +182,11 @@
                         self.__formatSize(download["size"]),
                     ],
                 )
-                pgpLink = (
-                    ' (<a href="{0}">pgp</a>)'.format(download["url"] + ".asc")
-                    if download["has_sig"]
-                    else ""
-                )
                 urlLabel = QLabel(
-                    '<a href="{0}#md5={2}">{1}</a>{3}'.format(
+                    '<a href="{0}#md5={2}">{1}</a>'.format(
                         download["url"],
                         download["filename"],
                         download["md5_digest"],
-                        pgpLink,
                     )
                 )
                 urlLabel.setTextInteractionFlags(
--- a/src/eric7/PluginManager/PluginRepositoryDialog.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/PluginManager/PluginRepositoryDialog.py	Sun Jun 02 09:51:20 2024 +0200
@@ -440,9 +440,7 @@
         self.__installButton.setEnabled(enable)
 
         self.selectedLabel.setText(
-            self.tr("Selected: <b>{0}</b>").format(
-                len(self.repositoryList.selectedItems())
-            )
+            self.tr("Selected: <b>{0}</b>").format(len(self.__selectedItems()))
         )
 
     def reloadList(self):
--- a/src/eric7/Plugins/AboutPlugin/AboutDialog.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Plugins/AboutPlugin/AboutDialog.py	Sun Jun 02 09:51:20 2024 +0200
@@ -11,12 +11,13 @@
 from PyQt6.QtWidgets import QDialog
 
 from eric7 import Preferences
+from eric7.__version__ import Version
 from eric7.EricGui import EricPixmapCache
 from eric7.UI import Info
 
 from .Ui_AboutDialog import Ui_AboutDialog
 
-titleText = "<b>{0} - {1}</b>".format(Info.Program, Info.Version)
+titleText = "<b>{0} - {1}</b>".format(Info.Program, Version)
 
 aboutText = QCoreApplication.translate(
     "AboutDialog",
--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/NameOrder/ImportNode.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/NameOrder/ImportNode.py	Sun Jun 02 09:51:20 2024 +0200
@@ -105,7 +105,8 @@
                 else (group, self.nodeType, checker.moduleKey(self.moduleName))
             )
         else:
-            m = self.moduleName
+            m = self.moduleName.replace("_", " ")
+            # sort '__' before '_' before other characters
             dotIndex = m.find(".")
             topName = "." * level + (m if dotIndex == -1 else m[:dotIndex])
             level = -level
--- a/src/eric7/Plugins/PluginAbout.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Plugins/PluginAbout.py	Sun Jun 02 09:51:20 2024 +0200
@@ -10,6 +10,7 @@
 from PyQt6.QtCore import QObject
 from PyQt6.QtGui import QAction
 
+from eric7.__version__ import VersionOnly
 from eric7.EricGui import EricPixmapCache
 from eric7.EricGui.EricAction import EricAction
 from eric7.EricWidgets import EricMessageBox
@@ -21,7 +22,7 @@
     "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
     "autoactivate": True,
     "deactivateable": True,
-    "version": Info.VersionOnly,
+    "version": VersionOnly,
     "className": "AboutPlugin",
     "packageName": "__core__",
     "shortDescription": "Show the About dialogs.",
@@ -133,9 +134,11 @@
             if act:
                 menu.insertAction(act, self.aboutAct)
                 menu.insertAction(act, self.aboutQtAct)
+                menu.insertSeparator(act)
             else:
                 menu.addAction(self.aboutAct)
                 menu.addAction(self.aboutQtAct)
+                menu.addSeparator()
 
     def __about(self):
         """
--- a/src/eric7/Plugins/PluginCodeStyleChecker.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Plugins/PluginCodeStyleChecker.py	Sun Jun 02 09:51:20 2024 +0200
@@ -14,11 +14,11 @@
 from PyQt6.QtCore import QCoreApplication, QObject, pyqtSignal
 
 from eric7 import Preferences
+from eric7.__version__ import VersionOnly
 from eric7.EricGui.EricAction import EricAction
 from eric7.EricWidgets.EricApplication import ericApp
 from eric7.Project.ProjectBrowserModel import ProjectBrowserFileItem
 from eric7.SystemUtilities import PythonUtilities
-from eric7.UI import Info
 
 # Start-Of-Header
 __header__ = {
@@ -26,7 +26,7 @@
     "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
     "autoactivate": True,
     "deactivateable": True,
-    "version": Info.VersionOnly,
+    "version": VersionOnly,
     "className": "CodeStyleCheckerPlugin",
     "packageName": "__core__",
     "shortDescription": "Show the Python Code Style Checker dialog.",
--- a/src/eric7/Plugins/PluginEricapi.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Plugins/PluginEricapi.py	Sun Jun 02 09:51:20 2024 +0200
@@ -12,11 +12,11 @@
 from PyQt6.QtCore import QCoreApplication, QObject, pyqtSlot
 from PyQt6.QtWidgets import QDialog
 
+from eric7.__version__ import VersionOnly
 from eric7.EricGui.EricAction import EricAction
 from eric7.EricWidgets.EricApplication import ericApp
 from eric7.Globals import getConfig
 from eric7.SystemUtilities import FileSystemUtilities, OSUtilities, PythonUtilities
-from eric7.UI import Info
 
 # Start-Of-Header
 __header__ = {
@@ -24,7 +24,7 @@
     "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
     "autoactivate": True,
     "deactivateable": True,
-    "version": Info.VersionOnly,
+    "version": VersionOnly,
     "className": "EricapiPlugin",
     "packageName": "__core__",
     "shortDescription": "Show the Ericapi dialogs.",
--- a/src/eric7/Plugins/PluginEricdoc.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Plugins/PluginEricdoc.py	Sun Jun 02 09:51:20 2024 +0200
@@ -13,6 +13,7 @@
 from PyQt6.QtWidgets import QDialog
 
 from eric7 import Preferences
+from eric7.__version__ import VersionOnly
 from eric7.EricGui.EricAction import EricAction
 from eric7.EricWidgets.EricApplication import ericApp
 from eric7.Globals import getConfig
@@ -22,7 +23,6 @@
     PythonUtilities,
     QtUtilities,
 )
-from eric7.UI import Info
 
 # Start-Of-Header
 __header__ = {
@@ -30,7 +30,7 @@
     "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
     "autoactivate": True,
     "deactivateable": True,
-    "version": Info.VersionOnly,
+    "version": VersionOnly,
     "className": "EricdocPlugin",
     "packageName": "__core__",
     "shortDescription": "Show the Ericdoc dialogs.",
--- a/src/eric7/Plugins/PluginSyntaxChecker.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Plugins/PluginSyntaxChecker.py	Sun Jun 02 09:51:20 2024 +0200
@@ -13,11 +13,11 @@
 from PyQt6.QtCore import QObject
 
 from eric7 import Preferences
+from eric7.__version__ import VersionOnly
 from eric7.EricGui.EricAction import EricAction
 from eric7.EricWidgets.EricApplication import ericApp
 from eric7.Globals import getConfig
 from eric7.Project.ProjectBrowserModel import ProjectBrowserFileItem
-from eric7.UI import Info
 
 # Start-Of-Header
 __header__ = {
@@ -25,7 +25,7 @@
     "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
     "autoactivate": True,
     "deactivateable": True,
-    "version": Info.VersionOnly,
+    "version": VersionOnly,
     "className": "SyntaxCheckerPlugin",
     "packageName": "__core__",
     "shortDescription": "Show the Syntax Checker dialog.",
--- a/src/eric7/Plugins/PluginTranslator.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Plugins/PluginTranslator.py	Sun Jun 02 09:51:20 2024 +0200
@@ -12,9 +12,9 @@
 from PyQt6.QtCore import QCoreApplication, QObject, pyqtSignal
 
 from eric7 import Preferences
+from eric7.__version__ import VersionOnly
 from eric7.EricWidgets.EricApplication import ericApp
 from eric7.Plugins.UiExtensionPlugins.Translator.Translator import Translator
-from eric7.UI import Info
 
 # Start-Of-Header
 __header__ = {
@@ -22,7 +22,7 @@
     "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
     "autoactivate": True,
     "deactivateable": True,
-    "version": Info.VersionOnly,
+    "version": VersionOnly,
     "className": "TranslatorPlugin",
     "packageName": "__core__",
     "shortDescription": "Translation utility using various translators.",
--- a/src/eric7/Plugins/PluginVcsGit.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Plugins/PluginVcsGit.py	Sun Jun 02 09:51:20 2024 +0200
@@ -13,11 +13,11 @@
 from PyQt6.QtCore import QByteArray, QCoreApplication, QObject
 
 from eric7 import Preferences
+from eric7.__version__ import VersionOnly
 from eric7.EricWidgets.EricApplication import ericApp
 from eric7.Plugins.VcsPlugins.vcsGit.GitUtilities import getConfigPath
 from eric7.Preferences.Shortcuts import readShortcuts
 from eric7.SystemUtilities import FileSystemUtilities, OSUtilities
-from eric7.UI import Info
 
 # Start-Of-Header
 __header__ = {
@@ -25,7 +25,7 @@
     "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
     "autoactivate": False,
     "deactivateable": True,
-    "version": Info.VersionOnly,
+    "version": VersionOnly,
     "pluginType": "version_control",
     "pluginTypename": "Git",
     "className": "VcsGitPlugin",
--- a/src/eric7/Plugins/PluginVcsMercurial.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Plugins/PluginVcsMercurial.py	Sun Jun 02 09:51:20 2024 +0200
@@ -13,6 +13,7 @@
 from PyQt6.QtCore import QByteArray, QCoreApplication, QObject
 
 from eric7 import Preferences
+from eric7.__version__ import VersionOnly
 from eric7.EricWidgets.EricApplication import ericApp
 from eric7.Plugins.VcsPlugins.vcsMercurial.HgUtilities import (
     getConfigPath,
@@ -20,7 +21,6 @@
 )
 from eric7.Preferences.Shortcuts import readShortcuts
 from eric7.SystemUtilities import FileSystemUtilities
-from eric7.UI import Info
 
 # Start-Of-Header
 __header__ = {
@@ -28,7 +28,7 @@
     "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
     "autoactivate": False,
     "deactivateable": True,
-    "version": Info.VersionOnly,
+    "version": VersionOnly,
     "pluginType": "version_control",
     "pluginTypename": "Mercurial",
     "className": "VcsMercurialPlugin",
--- a/src/eric7/Plugins/PluginVcsPySvn.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Plugins/PluginVcsPySvn.py	Sun Jun 02 09:51:20 2024 +0200
@@ -14,10 +14,10 @@
 from PyQt6.QtCore import QCoreApplication, QObject
 
 from eric7 import Preferences
+from eric7.__version__ import VersionOnly
 from eric7.EricWidgets.EricApplication import ericApp
 from eric7.Plugins.VcsPlugins.vcsPySvn.SvnUtilities import getConfigPath, getServersPath
 from eric7.Preferences.Shortcuts import readShortcuts
-from eric7.UI import Info
 
 # Start-Of-Header
 __header__ = {
@@ -25,7 +25,7 @@
     "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
     "autoactivate": False,
     "deactivateable": True,
-    "version": Info.VersionOnly,
+    "version": VersionOnly,
     "pluginType": "version_control",
     "pluginTypename": "PySvn",
     "className": "VcsPySvnPlugin",
--- a/src/eric7/Plugins/PluginVcsSubversion.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Plugins/PluginVcsSubversion.py	Sun Jun 02 09:51:20 2024 +0200
@@ -13,6 +13,7 @@
 from PyQt6.QtCore import QCoreApplication, QObject
 
 from eric7 import Preferences
+from eric7.__version__ import VersionOnly
 from eric7.EricWidgets.EricApplication import ericApp
 from eric7.Plugins.VcsPlugins.vcsSubversion.SvnUtilities import (
     getConfigPath,
@@ -20,7 +21,6 @@
 )
 from eric7.Preferences.Shortcuts import readShortcuts
 from eric7.SystemUtilities import FileSystemUtilities, OSUtilities
-from eric7.UI import Info
 
 # Start-Of-Header
 __header__ = {
@@ -28,7 +28,7 @@
     "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
     "autoactivate": False,
     "deactivateable": True,
-    "version": Info.VersionOnly,
+    "version": VersionOnly,
     "pluginType": "version_control",
     "pluginTypename": "Subversion",
     "className": "VcsSubversionPlugin",
--- a/src/eric7/Plugins/PluginVmListspace.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Plugins/PluginVmListspace.py	Sun Jun 02 09:51:20 2024 +0200
@@ -12,7 +12,7 @@
 from PyQt6.QtCore import QT_TRANSLATE_NOOP, QObject
 from PyQt6.QtGui import QPixmap
 
-from eric7.UI import Info
+from eric7.__version__ import VersionOnly
 
 # Start-Of-Header
 __header__ = {
@@ -20,7 +20,7 @@
     "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
     "autoactivate": False,
     "deactivateable": False,
-    "version": Info.VersionOnly,
+    "version": VersionOnly,
     "pluginType": "viewmanager",
     "pluginTypename": "listspace",
     "displayString": QT_TRANSLATE_NOOP("VmListspacePlugin", "Listspace"),
--- a/src/eric7/Plugins/PluginVmTabview.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Plugins/PluginVmTabview.py	Sun Jun 02 09:51:20 2024 +0200
@@ -12,7 +12,7 @@
 from PyQt6.QtCore import QT_TRANSLATE_NOOP, QObject
 from PyQt6.QtGui import QPixmap
 
-from eric7.UI import Info
+from eric7.__version__ import VersionOnly
 
 # Start-Of-Header
 __header__ = {
@@ -20,7 +20,7 @@
     "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
     "autoactivate": False,
     "deactivateable": False,
-    "version": Info.VersionOnly,
+    "version": VersionOnly,
     "pluginType": "viewmanager",
     "pluginTypename": "tabview",
     "displayString": QT_TRANSLATE_NOOP("VmTabviewPlugin", "Tabbed View"),
--- a/src/eric7/Plugins/PluginWizardDotDesktop.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Plugins/PluginWizardDotDesktop.py	Sun Jun 02 09:51:20 2024 +0200
@@ -10,10 +10,10 @@
 from PyQt6.QtCore import QObject
 from PyQt6.QtWidgets import QDialog
 
+from eric7.__version__ import VersionOnly
 from eric7.EricGui.EricAction import EricAction
 from eric7.EricWidgets import EricMessageBox
 from eric7.EricWidgets.EricApplication import ericApp
-from eric7.UI import Info
 
 # Start-of-Header
 __header__ = {
@@ -21,7 +21,7 @@
     "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
     "autoactivate": True,
     "deactivateable": True,
-    "version": Info.VersionOnly,
+    "version": VersionOnly,
     "className": "DotDesktopWizard",
     "packageName": "__core__",
     "shortDescription": "Wizard for the creation of a .desktop file.",
--- a/src/eric7/Plugins/PluginWizardEricMessageBox.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Plugins/PluginWizardEricMessageBox.py	Sun Jun 02 09:51:20 2024 +0200
@@ -10,10 +10,10 @@
 from PyQt6.QtCore import QObject
 from PyQt6.QtWidgets import QDialog
 
+from eric7.__version__ import VersionOnly
 from eric7.EricGui.EricAction import EricAction
 from eric7.EricWidgets import EricMessageBox
 from eric7.EricWidgets.EricApplication import ericApp
-from eric7.UI import Info
 
 # Start-Of-Header
 __header__ = {
@@ -21,7 +21,7 @@
     "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
     "autoactivate": True,
     "deactivateable": True,
-    "version": Info.VersionOnly,
+    "version": VersionOnly,
     "className": "EricMessageBoxWizard",
     "packageName": "__core__",
     "shortDescription": "Show the EricMessageBox wizard.",
--- a/src/eric7/Plugins/PluginWizardEricPlugin.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Plugins/PluginWizardEricPlugin.py	Sun Jun 02 09:51:20 2024 +0200
@@ -12,10 +12,10 @@
 from PyQt6.QtCore import QObject
 from PyQt6.QtWidgets import QDialog
 
+from eric7.__version__ import VersionOnly
 from eric7.EricGui.EricAction import EricAction
 from eric7.EricWidgets import EricMessageBox
 from eric7.EricWidgets.EricApplication import ericApp
-from eric7.UI import Info
 
 # Start-of-Header
 __header__ = {
@@ -23,7 +23,7 @@
     "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
     "autoactivate": True,
     "deactivateable": True,
-    "version": Info.VersionOnly,
+    "version": VersionOnly,
     "className": "WizardEricPluginWizard",
     "packageName": "__core__",
     "shortDescription": "Wizard for the creation of an eric plug-in file.",
--- a/src/eric7/Plugins/PluginWizardPyRegExp.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Plugins/PluginWizardPyRegExp.py	Sun Jun 02 09:51:20 2024 +0200
@@ -10,10 +10,10 @@
 from PyQt6.QtCore import QObject
 from PyQt6.QtWidgets import QDialog
 
+from eric7.__version__ import VersionOnly
 from eric7.EricGui.EricAction import EricAction
 from eric7.EricWidgets import EricMessageBox
 from eric7.EricWidgets.EricApplication import ericApp
-from eric7.UI import Info
 
 # Start-Of-Header
 __header__ = {
@@ -21,7 +21,7 @@
     "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
     "autoactivate": True,
     "deactivateable": True,
-    "version": Info.VersionOnly,
+    "version": VersionOnly,
     "className": "PyRegExpWizard",
     "packageName": "__core__",
     "shortDescription": "Show the Python re wizard.",
--- a/src/eric7/Plugins/PluginWizardQColorDialog.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Plugins/PluginWizardQColorDialog.py	Sun Jun 02 09:51:20 2024 +0200
@@ -10,10 +10,10 @@
 from PyQt6.QtCore import QObject
 from PyQt6.QtWidgets import QDialog
 
+from eric7.__version__ import VersionOnly
 from eric7.EricGui.EricAction import EricAction
 from eric7.EricWidgets import EricMessageBox
 from eric7.EricWidgets.EricApplication import ericApp
-from eric7.UI import Info
 
 # Start-Of-Header
 __header__ = {
@@ -21,7 +21,7 @@
     "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
     "autoactivate": True,
     "deactivateable": True,
-    "version": Info.VersionOnly,
+    "version": VersionOnly,
     "className": "ColorDialogWizard",
     "packageName": "__core__",
     "shortDescription": "Show the QColorDialog wizard.",
--- a/src/eric7/Plugins/PluginWizardQFileDialog.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Plugins/PluginWizardQFileDialog.py	Sun Jun 02 09:51:20 2024 +0200
@@ -12,10 +12,10 @@
 from PyQt6.QtCore import QObject
 from PyQt6.QtWidgets import QDialog
 
+from eric7.__version__ import VersionOnly
 from eric7.EricGui.EricAction import EricAction
 from eric7.EricWidgets import EricMessageBox
 from eric7.EricWidgets.EricApplication import ericApp
-from eric7.UI import Info
 
 # Start-Of-Header
 __header__ = {
@@ -23,7 +23,7 @@
     "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
     "autoactivate": True,
     "deactivateable": True,
-    "version": Info.VersionOnly,
+    "version": VersionOnly,
     "className": "FileDialogWizard",
     "packageName": "__core__",
     "shortDescription": "Show the QFileDialog wizard.",
--- a/src/eric7/Plugins/PluginWizardQFontDialog.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Plugins/PluginWizardQFontDialog.py	Sun Jun 02 09:51:20 2024 +0200
@@ -10,10 +10,10 @@
 from PyQt6.QtCore import QObject
 from PyQt6.QtWidgets import QDialog
 
+from eric7.__version__ import VersionOnly
 from eric7.EricGui.EricAction import EricAction
 from eric7.EricWidgets import EricMessageBox
 from eric7.EricWidgets.EricApplication import ericApp
-from eric7.UI import Info
 
 # Start-Of-Header
 __header__ = {
@@ -21,7 +21,7 @@
     "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
     "autoactivate": True,
     "deactivateable": True,
-    "version": Info.VersionOnly,
+    "version": VersionOnly,
     "className": "FontDialogWizard",
     "packageName": "__core__",
     "shortDescription": "Show the QFontDialog wizard.",
--- a/src/eric7/Plugins/PluginWizardQInputDialog.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Plugins/PluginWizardQInputDialog.py	Sun Jun 02 09:51:20 2024 +0200
@@ -10,10 +10,10 @@
 from PyQt6.QtCore import QObject
 from PyQt6.QtWidgets import QDialog
 
+from eric7.__version__ import VersionOnly
 from eric7.EricGui.EricAction import EricAction
 from eric7.EricWidgets import EricMessageBox
 from eric7.EricWidgets.EricApplication import ericApp
-from eric7.UI import Info
 
 # Start-Of-Header
 __header__ = {
@@ -21,7 +21,7 @@
     "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
     "autoactivate": True,
     "deactivateable": True,
-    "version": Info.VersionOnly,
+    "version": VersionOnly,
     "className": "InputDialogWizard",
     "packageName": "__core__",
     "shortDescription": "Show the QInputDialog wizard.",
--- a/src/eric7/Plugins/PluginWizardQMessageBox.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Plugins/PluginWizardQMessageBox.py	Sun Jun 02 09:51:20 2024 +0200
@@ -10,10 +10,10 @@
 from PyQt6.QtCore import QObject
 from PyQt6.QtWidgets import QDialog
 
+from eric7.__version__ import VersionOnly
 from eric7.EricGui.EricAction import EricAction
 from eric7.EricWidgets import EricMessageBox
 from eric7.EricWidgets.EricApplication import ericApp
-from eric7.UI import Info
 
 # Start-Of-Header
 __header__ = {
@@ -21,7 +21,7 @@
     "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
     "autoactivate": True,
     "deactivateable": True,
-    "version": Info.VersionOnly,
+    "version": VersionOnly,
     "className": "MessageBoxWizard",
     "packageName": "__core__",
     "shortDescription": "Show the QMessageBox wizard.",
--- a/src/eric7/Plugins/PluginWizardQRegularExpression.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Plugins/PluginWizardQRegularExpression.py	Sun Jun 02 09:51:20 2024 +0200
@@ -10,10 +10,10 @@
 from PyQt6.QtCore import QObject
 from PyQt6.QtWidgets import QDialog
 
+from eric7.__version__ import VersionOnly
 from eric7.EricGui.EricAction import EricAction
 from eric7.EricWidgets import EricMessageBox
 from eric7.EricWidgets.EricApplication import ericApp
-from eric7.UI import Info
 
 # Start-Of-Header
 __header__ = {
@@ -21,7 +21,7 @@
     "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
     "autoactivate": True,
     "deactivateable": True,
-    "version": Info.VersionOnly,
+    "version": VersionOnly,
     "className": "QRegularExpressionWizard",
     "packageName": "__core__",
     "shortDescription": "Show the QRegularExpression wizard.",
--- a/src/eric7/Plugins/PluginWizardSetup.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Plugins/PluginWizardSetup.py	Sun Jun 02 09:51:20 2024 +0200
@@ -11,10 +11,10 @@
 
 from PyQt6.QtCore import QObject
 
+from eric7.__version__ import VersionOnly
 from eric7.EricGui.EricAction import EricAction
 from eric7.EricWidgets import EricMessageBox
 from eric7.EricWidgets.EricApplication import ericApp
-from eric7.UI import Info
 
 # Start-of-Header
 __header__ = {
@@ -22,7 +22,7 @@
     "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
     "autoactivate": True,
     "deactivateable": True,
-    "version": Info.VersionOnly,
+    "version": VersionOnly,
     "className": "SetupWizard",
     "packageName": "__core__",
     "shortDescription": "Wizard for the creation of a setup.py file.",
--- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/HisteditExtension/HgHisteditEditor.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/HisteditExtension/HgHisteditEditor.py	Sun Jun 02 09:51:20 2024 +0200
@@ -29,7 +29,7 @@
     @return created argument parser object
     @rtype argparse.ArgumentParser
     """
-    from eric7.UI.Info import Version
+    from eric7.__version__ import Version
 
     # 1. create the argument parser
     parser = argparse.ArgumentParser(
--- a/src/eric7/Preferences/ConfigurationPages/WebBrowserPage.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Preferences/ConfigurationPages/WebBrowserPage.py	Sun Jun 02 09:51:20 2024 +0200
@@ -248,6 +248,13 @@
         else:
             self.readingFromCanvasCheckBox.setEnabled(False)
 
+        if qVersionTuple() >= (6, 7, 0):
+            self.forceDarkModeCheckBox.setChecked(
+                Preferences.getWebBrowser("ForceDarkMode")
+            )
+        else:
+            self.forceDarkModeCheckBox.setEnabled(False)
+
     def save(self):
         """
         Public slot to save the Help Viewers configuration.
@@ -436,6 +443,11 @@
                 "ReadingFromCanvasEnabled", self.readingFromCanvasCheckBox.isChecked()
             )
 
+        if self.forceDarkModeCheckBox.isEnabled():
+            Preferences.setWebBrowser(
+                "ForceDarkMode", self.forceDarkModeCheckBox.isChecked()
+            )
+
     @pyqtSlot()
     def on_setCurrentPageButton_clicked(self):
         """
--- a/src/eric7/Preferences/ConfigurationPages/WebBrowserPage.ui	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Preferences/ConfigurationPages/WebBrowserPage.ui	Sun Jun 02 09:51:20 2024 +0200
@@ -187,6 +187,16 @@
         </property>
        </widget>
       </item>
+      <item row="7" column="1">
+       <widget class="QCheckBox" name="forceDarkModeCheckBox">
+        <property name="toolTip">
+         <string>Select to render all web contents using a dark theme.</string>
+        </property>
+        <property name="text">
+         <string>Force Dark Mode</string>
+        </property>
+       </widget>
+      </item>
      </layout>
     </widget>
    </item>
@@ -1282,6 +1292,7 @@
   <tabstop>webRtcPublicOnlyCheckBox</tabstop>
   <tabstop>dnsPrefetchCheckBox</tabstop>
   <tabstop>navigateOnDropCheckBox</tabstop>
+  <tabstop>forceDarkModeCheckBox</tabstop>
   <tabstop>startupCombo</tabstop>
   <tabstop>newTabCombo</tabstop>
   <tabstop>homePageEdit</tabstop>
--- a/src/eric7/Preferences/__init__.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Preferences/__init__.py	Sun Jun 02 09:51:20 2024 +0200
@@ -1349,6 +1349,12 @@
                 )
             )
 
+        if QtUtilities.qVersionTuple() >= (6, 7, 0):
+            # Qt 6.7+
+            cls.webBrowserDefaults["ForceDarkMode"] = webEngineSettings.testAttribute(
+                QWebEngineSettings.WebAttribute.ForceDarkMode
+            )
+
         cls.webEngineSettingsIntitialized = True
 
     webEngineSettingsIntitialized = False
@@ -3314,6 +3320,7 @@
         "PushServiceEnabled",
         "NavigateOnDropEnabled",
         "ReadingFromCanvasEnabled",
+        "ForceDarkMode",
     ]:
         return toBool(
             Prefs.settings.value("WebBrowser/" + key, Prefs.webBrowserDefaults[key])
--- a/src/eric7/QScintilla/Editor.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/QScintilla/Editor.py	Sun Jun 02 09:51:20 2024 +0200
@@ -37,6 +37,7 @@
     QActionGroup,
     QCursor,
     QFont,
+    QKeyEvent,
     QPainter,
     QPalette,
     QPixmap,
@@ -7978,6 +7979,26 @@
             self.endUndoAction()
             self.setSelection(sline, sindex + 1, eline, eindex + 1)
 
+        if (
+            ev.key() == Qt.Key.Key_Comma
+            and ev.modifiers() & Qt.KeyboardModifier.KeypadModifier
+        ):
+            # Change the numpad ',' to always insert a '.' because that is what
+            # is needed in programming.
+
+            # Create a new QKeyEvent to substitute the original one
+            ev = QKeyEvent(
+                ev.type(),
+                Qt.Key.Key_Period,
+                ev.modifiers(),
+                ".",
+                ev.isAutoRepeat(),
+                ev.count(),
+            )
+
+            super().keyPressEvent(ev)
+            return
+
         txt = ev.text()
 
         # See it is text to insert.
--- a/src/eric7/QScintilla/Shell.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/QScintilla/Shell.py	Sun Jun 02 09:51:20 2024 +0200
@@ -396,7 +396,7 @@
         venvManager = ericApp().getObject("VirtualEnvManager")
         for venvName in sorted(venvManager.getVirtualenvNames()):
             self.lmenu.addAction(venvName)
-        if self.__project.isOpen():
+        if self.__project and self.__project.isOpen():
             self.lmenu.addSeparator()
             self.lmenu.addAction(self.tr("Project"))
 
@@ -1908,7 +1908,7 @@
                                 "Project",
                                 "project",
                             ):
-                                if self.__project.isOpen():
+                                if self.__project and self.__project.isOpen():
                                     self.dbs.startClient(
                                         False,
                                         forProject=True,
@@ -2154,7 +2154,8 @@
         venvName = (
             self.dbs.getProjectEnvironmentString()
             if (
-                self.__project.isOpen()
+                self.__project
+                and self.__project.isOpen()
                 and self.__currentVenv
                 == self.__project.getProjectVenv(resolveDebugger=False)
             )
@@ -2176,7 +2177,7 @@
         """
         venvName = action.text()
         if venvName == self.tr("Project"):
-            if self.__project.isOpen():
+            if self.__project and self.__project.isOpen():
                 self.__currentWorkingDirectory = self.__project.getProjectPath()
             self.dbs.startClient(
                 False, forProject=True, workingDir=self.__currentWorkingDirectory
--- a/src/eric7/Tools/TrayStarter.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Tools/TrayStarter.py	Sun Jun 02 09:51:20 2024 +0200
@@ -19,11 +19,12 @@
 from PyQt6.QtWidgets import QApplication, QDialog, QMenu, QSystemTrayIcon
 
 from eric7 import Globals, Preferences
+from eric7.__version__ import Version
 from eric7.EricGui import EricPixmapCache
 from eric7.EricWidgets import EricMessageBox
 from eric7.EricWidgets.EricApplication import ericApp
 from eric7.SystemUtilities import DesktopUtilities, FileSystemUtilities, PythonUtilities
-from eric7.UI.Info import Program, Version
+from eric7.UI.Info import Program
 
 
 class TrayStarter(QSystemTrayIcon):
--- a/src/eric7/UI/Info.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/UI/Info.py	Sun Jun 02 09:51:20 2024 +0200
@@ -9,8 +9,6 @@
 
 
 Program = "eric7"
-Version = "@@VERSION@@ (rev. @@REVISION@@)"
-VersionOnly = "99.0.0"
 Copyright = "Copyright (c) 2002 - 2024 Detlev Offenbach <detlev@die-offenbachs.de>"
 CopyrightShort = "(c) 2002 - 2024 Detlev Offenbach"
 BugAddress = "eric-bugs@eric-ide.python-projects.org"
--- a/src/eric7/UI/UserInterface.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/UI/UserInterface.py	Sun Jun 02 09:51:20 2024 +0200
@@ -37,7 +37,13 @@
     pyqtSlot,
     qVersion,
 )
-from PyQt6.QtGui import QAction, QDesktopServices, QKeySequence, QSessionManager
+from PyQt6.QtGui import (
+    QAction,
+    QDesktopServices,
+    QGuiApplication,
+    QKeySequence,
+    QSessionManager,
+)
 from PyQt6.QtNetwork import QNetworkAccessManager, QNetworkProxyFactory
 from PyQt6.QtWidgets import (
     QApplication,
@@ -54,6 +60,7 @@
 )
 
 from eric7 import Globals, Preferences, Testing, Utilities
+from eric7.__version__ import Version, VersionOnly
 from eric7.CondaInterface.Conda import Conda
 from eric7.Debugger.DebugServer import DebugServer
 from eric7.Debugger.DebugUI import DebugUI
@@ -93,7 +100,7 @@
 from eric7.Utilities.BackgroundService import BackgroundService
 from eric7.VirtualEnv.VirtualenvManager import VirtualenvManager
 
-from .Info import BugAddress, FeatureAddress, Program, Version, VersionOnly
+from .Info import BugAddress, FeatureAddress, Program
 from .NotificationWidget import NotificationTypes
 
 try:
@@ -2732,6 +2739,26 @@
         self.versionAct.triggered.connect(self.__showVersions)
         self.actions.append(self.versionAct)
 
+        self.copyVersionAct = EricAction(
+            self.tr("Copy Versions"),
+            self.tr("&Copy Versions"),
+            0,
+            0,
+            self,
+            "copy_versions",
+        )
+        self.copyVersionAct.setStatusTip(
+            self.tr("Copy version information to the clipboard")
+        )
+        self.copyVersionAct.setWhatsThis(
+            self.tr(
+                "<b>Copy Versions</b><p>This generates version information and copies"
+                " it to the clipboard.</p>"
+            )
+        )
+        self.copyVersionAct.triggered.connect(self.__copyVersions)
+        self.actions.append(self.copyVersionAct)
+
         self.showErrorLogAct = EricAction(
             self.tr("Show Error Log"),
             self.tr("Show Error &Log..."),
@@ -4068,6 +4095,7 @@
             self.__menus["help"].addAction(self.pyside6DocAct)
         self.__menus["help"].addSeparator()
         self.__menus["help"].addAction(self.versionAct)
+        self.__menus["help"].addAction(self.copyVersionAct)
         self.__menus["help"].addSeparator()
         self.__menus["help"].addAction(self.showInstallInfoAct)
         self.__menus["help"].addSeparator()
@@ -4595,6 +4623,18 @@
 
         VersionsDialog(self, Program, versionText)
 
+    def __copyVersions(self):
+        """
+        Private method to generated version information and copy that to the clipboard.
+        """
+        QGuiApplication.clipboard().setText(
+            "\n----\n\n{0}\n\n----\n\n{1}\n\n----\n\n{2}".format(
+                Utilities.generateVersionInfo("\n"),
+                Utilities.generatePluginsVersionInfo("\n"),
+                Utilities.generateDistroInfo("\n"),
+            )
+        )
+
     def __reportBug(self):
         """
         Private slot to handle the Report Bug dialog.
@@ -8489,7 +8529,10 @@
         @type QShowEvent
         """
         if self.__startup:
-            if Preferences.getGeometry("MainMaximized"):
+            if (
+                Preferences.getGeometry("MainMaximized")
+                and not DesktopUtilities.isWaylandSession()
+            ):
                 self.setWindowState(Qt.WindowState.WindowMaximized)
             self.__startup = False
 
--- a/src/eric7/Utilities/BackgroundService.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Utilities/BackgroundService.py	Sun Jun 02 09:51:20 2024 +0200
@@ -13,8 +13,8 @@
 import os
 import struct
 import sys
-
-from zlib import adler32
+import time
+import zlib
 
 from PyQt6.QtCore import QProcess, QThread, QTimer, pyqtSignal
 from PyQt6.QtNetwork import QHostAddress, QTcpServer
@@ -175,7 +175,7 @@
             packedData = json.dumps([fx, fn, data])
             packedData = bytes(packedData, "utf-8")
             header = struct.pack(
-                b"!II", len(packedData), adler32(packedData) & 0xFFFFFFFF
+                b"!II", len(packedData), zlib.adler32(packedData) & 0xFFFFFFFF
             )
             connection.write(header)
             connection.write(b"JOB   ")  # 6 character message type
@@ -189,22 +189,35 @@
         @type str
         @exception RuntimeError raised if hashes don't match
         """
+        headerSize = struct.calcsize(b"!II")
+
         data = ""
         fx = ""
 
         connection = self.connections[lang]
-        while connection.bytesAvailable():
-            header = connection.read(struct.calcsize(b"!II"))
+        while connection and connection.bytesAvailable():
+            now = time.monotonic()
+            while connection.bytesAvailable() < headerSize:
+                connection.waitForReadyRead(50)
+                if time.monotonic() - now > 2.0:  # 2 seconds timeout
+                    return
+            header = connection.read(headerSize)
             length, datahash = struct.unpack(b"!II", header)
 
             packedData = b""
+            now = time.monotonic()
             while len(packedData) < length:
                 maxSize = length - len(packedData)
                 if connection.bytesAvailable() < maxSize:
                     connection.waitForReadyRead(50)
-                packedData += connection.read(maxSize)
+                newData = connection.read(maxSize)
+                if newData:
+                    packedData += newData
+                else:
+                    if time.monotonic() - now > 2.0:  # 2 seconds timeout
+                        break
 
-            if adler32(packedData) & 0xFFFFFFFF != datahash:
+            if zlib.adler32(packedData) & 0xFFFFFFFF != datahash:
                 raise RuntimeError("Hashes not equal")
             packedData = packedData.decode("utf-8")
             # "check" if is's a tuple of 3 values
--- a/src/eric7/Utilities/__init__.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/Utilities/__init__.py	Sun Jun 02 09:51:20 2024 +0200
@@ -34,9 +34,10 @@
 )
 
 from eric7 import Preferences
+from eric7.__version__ import Version
 from eric7.EricWidgets.EricApplication import ericApp
 from eric7.SystemUtilities import DesktopUtilities, OSUtilities
-from eric7.UI.Info import Program, Version
+from eric7.UI.Info import Program
 
 
 def __showwarning(
--- a/src/eric7/ViewManager/ViewManager.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/ViewManager/ViewManager.py	Sun Jun 02 09:51:20 2024 +0200
@@ -7835,7 +7835,9 @@
         # reload editor settings
         for editor in self.editors:
             zoom = editor.getZoom()
+            contractedFolds = editor.contractedFolds()
             editor.readSettings()
+            editor.setContractedFolds(contractedFolds)
             editor.zoomTo(zoom)
 
         self.__enableSpellingActions()
--- a/src/eric7/WebBrowser/WebBrowserArgumentsCreator.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/WebBrowser/WebBrowserArgumentsCreator.py	Sun Jun 02 09:51:20 2024 +0200
@@ -21,7 +21,7 @@
     @return created argument parser object
     @rtype argparse.ArgumentParser
     """
-    from eric7.UI.Info import Version
+    from eric7.__version__ import Version
 
     # 1. create the argument parser
     parser = argparse.ArgumentParser(
--- a/src/eric7/WebBrowser/WebBrowserView.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/WebBrowser/WebBrowserView.py	Sun Jun 02 09:51:20 2024 +0200
@@ -49,11 +49,12 @@
 from PyQt6.QtWidgets import QApplication, QDialog, QMenu, QStyle
 
 from eric7 import Preferences
+from eric7.__version__ import VersionOnly
 from eric7.EricGui import EricPixmapCache
 from eric7.EricWidgets import EricFileDialog, EricMessageBox
 from eric7.EricWidgets.EricApplication import ericApp
 from eric7.SystemUtilities import FileSystemUtilities, OSUtilities
-from eric7.UI.Info import Homepage, VersionOnly
+from eric7.UI.Info import Homepage
 from eric7.WebBrowser.WebBrowserWindow import WebBrowserWindow
 from eric7.WebBrowser.ZoomManager import ZoomManager
 
@@ -81,6 +82,7 @@
         return False
 
 
+# TODO: add handler for page.webAuthUxRequested(QWebEngineWebAuthUxRequest) signal
 class WebBrowserView(QWebEngineView):
     """
     Class implementing the web browser view widget.
--- a/src/eric7/WebBrowser/WebBrowserWindow.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/WebBrowser/WebBrowserWindow.py	Sun Jun 02 09:51:20 2024 +0200
@@ -63,6 +63,7 @@
     QTHELP_AVAILABLE = False
 
 from eric7 import Globals, Preferences, Utilities
+from eric7.__version__ import Version
 from eric7.EricGui import EricPixmapCache
 from eric7.EricGui.EricAction import EricAction
 from eric7.EricGui.EricOverrideCursor import EricOverrideCursor
@@ -84,7 +85,6 @@
     PythonUtilities,
     QtUtilities,
 )
-from eric7.UI.Info import Version
 from eric7.UI.NotificationWidget import NotificationTypes
 from eric7.WebBrowser.Tools import WebIconProvider
 from eric7.WebBrowser.ZoomManager import ZoomManager
@@ -725,6 +725,12 @@
                 QWebEngineSettings.WebAttribute.ReadingFromCanvasEnabled,
                 Preferences.getWebBrowser("ReadingFromCanvasEnabled"),
             )
+        if QtUtilities.qVersionTuple() >= (6, 7, 0):
+            # Qt 6.7+
+            settings.setAttribute(
+                QWebEngineSettings.WebAttribute.ForceDarkMode,
+                Preferences.getWebBrowser("ForceDarkMode"),
+            )
 
     def __initActions(self):
         """
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/eric7/__version__.py	Sun Jun 02 09:51:20 2024 +0200
@@ -0,0 +1,11 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2024 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module containing some eric-ide version information.
+"""
+
+Version = "@@VERSION@@ (rev. @@REVISION@@)"
+VersionOnly = "99.0.0"
--- a/src/eric7/eric7_api.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/eric7_api.py	Sun Jun 02 09:51:20 2024 +0200
@@ -19,9 +19,9 @@
 import sys
 
 from eric7 import DocumentationTools
+from eric7.__version__ import Version
 from eric7.DocumentationTools.APIGenerator import APIGenerator
 from eric7.SystemUtilities import FileSystemUtilities, OSUtilities
-from eric7.UI.Info import Version
 from eric7.Utilities import ModuleParser
 
 
--- a/src/eric7/eric7_compare.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/eric7_compare.py	Sun Jun 02 09:51:20 2024 +0200
@@ -26,7 +26,7 @@
     @return created argument parser object
     @rtype argparse.ArgumentParser
     """
-    from eric7.UI.Info import Version
+    from eric7.__version__ import Version
 
     # 1. create the argument parser
     parser = argparse.ArgumentParser(
--- a/src/eric7/eric7_configure.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/eric7_configure.py	Sun Jun 02 09:51:20 2024 +0200
@@ -24,7 +24,7 @@
     @return created argument parser object
     @rtype argparse.ArgumentParser
     """
-    from eric7.UI.Info import Version
+    from eric7.__version__ import Version
 
     # 1. create the argument parser
     parser = argparse.ArgumentParser(
--- a/src/eric7/eric7_diff.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/eric7_diff.py	Sun Jun 02 09:51:20 2024 +0200
@@ -26,7 +26,7 @@
     @return created argument parser object
     @rtype argparse.ArgumentParser
     """
-    from eric7.UI.Info import Version
+    from eric7.__version__ import Version
 
     # 1. create the argument parser
     parser = argparse.ArgumentParser(
--- a/src/eric7/eric7_doc.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/eric7_doc.py	Sun Jun 02 09:51:20 2024 +0200
@@ -19,13 +19,13 @@
 import shutil
 import sys
 
+from eric7.__version__ import Version
 from eric7.DocumentationTools import TemplatesListsStyleCSS
 from eric7.DocumentationTools.Config import eric7docDefaultColors
 from eric7.DocumentationTools.IndexGenerator import IndexGenerator
 from eric7.DocumentationTools.ModuleDocumentor import ModuleDocument
 from eric7.DocumentationTools.QtHelpGenerator import QtHelpGenerator
 from eric7.SystemUtilities import FileSystemUtilities, OSUtilities
-from eric7.UI.Info import Version
 from eric7.Utilities import ModuleParser
 
 # list of supported filename extensions
--- a/src/eric7/eric7_editor.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/eric7_editor.py	Sun Jun 02 09:51:20 2024 +0200
@@ -26,7 +26,7 @@
     @return created argument parser object
     @rtype argparse.ArgumentParser
     """
-    from eric7.UI.Info import Version
+    from eric7.__version__ import Version
 
     # 1. create the argument parser
     parser = argparse.ArgumentParser(
--- a/src/eric7/eric7_hexeditor.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/eric7_hexeditor.py	Sun Jun 02 09:51:20 2024 +0200
@@ -26,7 +26,7 @@
     @return created argument parser object
     @rtype argparse.ArgumentParser
     """
-    from eric7.UI.Info import Version
+    from eric7.__version__ import Version
 
     # 1. create the argument parser
     parser = argparse.ArgumentParser(
--- a/src/eric7/eric7_iconeditor.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/eric7_iconeditor.py	Sun Jun 02 09:51:20 2024 +0200
@@ -26,7 +26,7 @@
     @return created argument parser object
     @rtype argparse.ArgumentParser
     """
-    from eric7.UI.Info import Version
+    from eric7.__version__ import Version
 
     # 1. create the argument parser
     parser = argparse.ArgumentParser(
--- a/src/eric7/eric7_ide.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/eric7_ide.py	Sun Jun 02 09:51:20 2024 +0200
@@ -67,7 +67,7 @@
     @return created argument parser object
     @rtype argparse.ArgumentParser
     """
-    from eric7.UI.Info import Version
+    from eric7.__version__ import Version
 
     # 1. create the argument parser
     parser = argparse.ArgumentParser(
--- a/src/eric7/eric7_mpy.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/eric7_mpy.py	Sun Jun 02 09:51:20 2024 +0200
@@ -24,7 +24,7 @@
     @return created argument parser object
     @rtype argparse.ArgumentParser
     """
-    from eric7.UI.Info import Version
+    from eric7.__version__ import Version
 
     # 1. create the argument parser
     parser = argparse.ArgumentParser(
--- a/src/eric7/eric7_pdf.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/eric7_pdf.py	Sun Jun 02 09:51:20 2024 +0200
@@ -26,7 +26,7 @@
     @return created argument parser object
     @rtype argparse.ArgumentParser
     """
-    from eric7.UI.Info import Version
+    from eric7.__version__ import Version
 
     # 1. create the argument parser
     parser = argparse.ArgumentParser(
--- a/src/eric7/eric7_pip.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/eric7_pip.py	Sun Jun 02 09:51:20 2024 +0200
@@ -25,7 +25,7 @@
     @return created argument parser object
     @rtype argparse.ArgumentParser
     """
-    from eric7.UI.Info import Version
+    from eric7.__version__ import Version
 
     # 1. create the argument parser
     parser = argparse.ArgumentParser(
--- a/src/eric7/eric7_plugininstall.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/eric7_plugininstall.py	Sun Jun 02 09:51:20 2024 +0200
@@ -25,7 +25,7 @@
     @return created argument parser object
     @rtype argparse.ArgumentParser
     """
-    from eric7.UI.Info import Version
+    from eric7.__version__ import Version
 
     # 1. create the argument parser
     parser = argparse.ArgumentParser(
--- a/src/eric7/eric7_pluginrepository.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/eric7_pluginrepository.py	Sun Jun 02 09:51:20 2024 +0200
@@ -25,7 +25,7 @@
     @return created argument parser object
     @rtype argparse.ArgumentParser
     """
-    from eric7.UI.Info import Version
+    from eric7.__version__ import Version
 
     # 1. create the argument parser
     parser = argparse.ArgumentParser(
--- a/src/eric7/eric7_pluginuninstall.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/eric7_pluginuninstall.py	Sun Jun 02 09:51:20 2024 +0200
@@ -25,7 +25,7 @@
     @return created argument parser object
     @rtype argparse.ArgumentParser
     """
-    from eric7.UI.Info import Version
+    from eric7.__version__ import Version
 
     # 1. create the argument parser
     parser = argparse.ArgumentParser(
--- a/src/eric7/eric7_qregularexpression.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/eric7_qregularexpression.py	Sun Jun 02 09:51:20 2024 +0200
@@ -26,7 +26,7 @@
     @return created argument parser object
     @rtype argparse.ArgumentParser
     """
-    from eric7.UI.Info import Version
+    from eric7.__version__ import Version
 
     # 1. create the argument parser
     parser = argparse.ArgumentParser(
--- a/src/eric7/eric7_re.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/eric7_re.py	Sun Jun 02 09:51:20 2024 +0200
@@ -26,7 +26,7 @@
     @return created argument parser object
     @rtype argparse.ArgumentParser
     """
-    from eric7.UI.Info import Version
+    from eric7.__version__ import Version
 
     # 1. create the argument parser
     parser = argparse.ArgumentParser(
--- a/src/eric7/eric7_shell.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/eric7_shell.py	Sun Jun 02 09:51:20 2024 +0200
@@ -27,7 +27,7 @@
     @return created argument parser object
     @rtype argparse.ArgumentParser
     """
-    from eric7.UI.Info import Version
+    from eric7.__version__ import Version
 
     # 1. create the argument parser
     parser = argparse.ArgumentParser(
--- a/src/eric7/eric7_snap.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/eric7_snap.py	Sun Jun 02 09:51:20 2024 +0200
@@ -25,7 +25,7 @@
     @return created argument parser object
     @rtype argparse.ArgumentParser
     """
-    from eric7.UI.Info import Version
+    from eric7.__version__ import Version
 
     # 1. create the argument parser
     parser = argparse.ArgumentParser(
--- a/src/eric7/eric7_sqlbrowser.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/eric7_sqlbrowser.py	Sun Jun 02 09:51:20 2024 +0200
@@ -25,7 +25,7 @@
     @return created argument parser object
     @rtype argparse.ArgumentParser
     """
-    from eric7.UI.Info import Version
+    from eric7.__version__ import Version
 
     # 1. create the argument parser
     parser = argparse.ArgumentParser(
--- a/src/eric7/eric7_testing.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/eric7_testing.py	Sun Jun 02 09:51:20 2024 +0200
@@ -26,7 +26,7 @@
     @return created argument parser object
     @rtype argparse.ArgumentParser
     """
-    from eric7.UI.Info import Version
+    from eric7.__version__ import Version
 
     # 1. create the argument parser
     parser = argparse.ArgumentParser(
--- a/src/eric7/eric7_tray.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/eric7_tray.py	Sun Jun 02 09:51:20 2024 +0200
@@ -26,7 +26,7 @@
     @return created argument parser object
     @rtype argparse.ArgumentParser
     """
-    from eric7.UI.Info import Version
+    from eric7.__version__ import Version
 
     # 1. create the argument parser
     parser = argparse.ArgumentParser(
--- a/src/eric7/eric7_trpreviewer.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/eric7_trpreviewer.py	Sun Jun 02 09:51:20 2024 +0200
@@ -26,7 +26,7 @@
     @return created argument parser object
     @rtype argparse.ArgumentParser
     """
-    from eric7.UI.Info import Version
+    from eric7.__version__ import Version
 
     # 1. create the argument parser
     parser = argparse.ArgumentParser(
--- a/src/eric7/eric7_uipreviewer.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/eric7_uipreviewer.py	Sun Jun 02 09:51:20 2024 +0200
@@ -26,7 +26,7 @@
     @return created argument parser object
     @rtype argparse.ArgumentParser
     """
-    from eric7.UI.Info import Version
+    from eric7.__version__ import Version
 
     # 1. create the argument parser
     parser = argparse.ArgumentParser(
--- a/src/eric7/eric7_virtualenv.py	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/eric7_virtualenv.py	Sun Jun 02 09:51:20 2024 +0200
@@ -25,7 +25,7 @@
     @return created argument parser object
     @rtype argparse.ArgumentParser
     """
-    from eric7.UI.Info import Version
+    from eric7.__version__ import Version
 
     # 1. create the argument parser
     parser = argparse.ArgumentParser(
--- a/src/eric7/i18n/eric7_cs.ts	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/i18n/eric7_cs.ts	Sun Jun 02 09:51:20 2024 +0200
@@ -1795,42 +1795,42 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="217" />
+      <location filename="../Utilities/BackgroundService.py" line="230" />
       <source>Initialization of Background Service</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="218" />
-      <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="231" />
+      <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="244" />
       <source>Restart background client?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="232" />
+      <location filename="../Utilities/BackgroundService.py" line="245" />
       <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It's used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Yes'&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Retry'&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'No'&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="261" />
+      <location filename="../Utilities/BackgroundService.py" line="274" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="502" />
+      <location filename="../Utilities/BackgroundService.py" line="515" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="511" />
+      <location filename="../Utilities/BackgroundService.py" line="524" />
       <source>Background client disconnected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="512" />
+      <location filename="../Utilities/BackgroundService.py" line="525" />
       <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
       <translation type="unfinished" />
     </message>
@@ -9332,665 +9332,665 @@
   <context>
     <name>DebugUI</name>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="210" />
+      <location filename="../Debugger/DebugUI.py" line="207" />
       <source>Notification</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2342" />
-      <location filename="../Debugger/DebugUI.py" line="237" />
+      <location filename="../Debugger/DebugUI.py" line="2339" />
+      <location filename="../Debugger/DebugUI.py" line="234" />
       <source>Run Script</source>
       <translation>Spustit skript</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="239" />
+      <location filename="../Debugger/DebugUI.py" line="236" />
       <source>&amp;Run Script...</source>
       <translation>Spustit sk&amp;ript...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="245" />
+      <location filename="../Debugger/DebugUI.py" line="242" />
       <source>Run the current Script</source>
       <translation>Spustit aktuální skript</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="247" />
+      <location filename="../Debugger/DebugUI.py" line="244" />
       <source>&lt;b&gt;Run Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Spustit skript&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a spuštění skriptu bez debugeru. Pokud jsou v souboru neuložené změny, měly by se nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2348" />
-      <location filename="../Debugger/DebugUI.py" line="2342" />
-      <location filename="../Debugger/DebugUI.py" line="258" />
+      <location filename="../Debugger/DebugUI.py" line="2345" />
+      <location filename="../Debugger/DebugUI.py" line="2339" />
+      <location filename="../Debugger/DebugUI.py" line="255" />
       <source>Run Project</source>
       <translation>Spustit projekt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="260" />
+      <location filename="../Debugger/DebugUI.py" line="257" />
       <source>Run &amp;Project...</source>
       <translation>Spustit &amp;projekt...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="266" />
+      <location filename="../Debugger/DebugUI.py" line="263" />
       <source>Run the current Project</source>
       <translation>Spustit aktuální projekt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="268" />
+      <location filename="../Debugger/DebugUI.py" line="265" />
       <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Spustit projekt&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a spuštění projektu bez debugeru. Pokud jsou v projektu neuložené změny, měly by se nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="280" />
+      <location filename="../Debugger/DebugUI.py" line="277" />
       <source>Coverage run of Script</source>
       <translation>Spustit skript s kontrolou pokrytí</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="282" />
+      <location filename="../Debugger/DebugUI.py" line="279" />
       <source>Coverage run of Script...</source>
       <translation>Spustit skript s kontrolou pokrytí...</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="286" />
+      <source>Perform a coverage run of the current Script</source>
+      <translation>Provede se spuštění běhu aktuálního skriptu s kontrolou pokrytí kódu</translation>
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="289" />
-      <source>Perform a coverage run of the current Script</source>
-      <translation>Provede se spuštění běhu aktuálního skriptu s kontrolou pokrytí kódu</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="292" />
       <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Spustit skript s kontrolou pokrytí&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a spuštění projektu pod kontrolou nástroje analýzy pokrytí kódu. Pokud jsou v souboru neuložené změny, měly by se nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="303" />
+      <location filename="../Debugger/DebugUI.py" line="300" />
       <source>Coverage run of Project</source>
       <translation>Spustit projekt s kontrolou pokrytí</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="305" />
+      <location filename="../Debugger/DebugUI.py" line="302" />
       <source>Coverage run of Project...</source>
       <translation>Spustit projekt s kontrolou pokrytí...</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="309" />
+      <source>Perform a coverage run of the current Project</source>
+      <translation>Provede se spuštění běhu aktuálního projektu s kontrolou pokrytí kódu</translation>
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="312" />
-      <source>Perform a coverage run of the current Project</source>
-      <translation>Provede se spuštění běhu aktuálního projektu s kontrolou pokrytí kódu</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="315" />
       <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Spustit projekt s kontrolou pokrytí&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a spuštění projektu pod kontrolou nástroje analýzy pokrytí kódu. Pokud jsou v projektu neuložené změny, měly by se nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="327" />
+      <location filename="../Debugger/DebugUI.py" line="324" />
       <source>Profile Script</source>
       <translation>Profilovat skript</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="329" />
+      <location filename="../Debugger/DebugUI.py" line="326" />
       <source>Profile Script...</source>
       <translation>Profilovat skript...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="335" />
+      <location filename="../Debugger/DebugUI.py" line="332" />
       <source>Profile the current Script</source>
       <translation>Profilovat aktuální skript</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="337" />
+      <location filename="../Debugger/DebugUI.py" line="334" />
       <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profilovat skript&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a spuštění projektu s profilováním kódu. Pokud jsou ve skriptu neuložené změny, měly by se nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="347" />
+      <location filename="../Debugger/DebugUI.py" line="344" />
       <source>Profile Project</source>
       <translation>Profilovat projekt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="349" />
+      <location filename="../Debugger/DebugUI.py" line="346" />
       <source>Profile Project...</source>
       <translation>Profilovat projekt...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="355" />
+      <location filename="../Debugger/DebugUI.py" line="352" />
       <source>Profile the current Project</source>
       <translation>Profilovat aktuální projekt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="357" />
+      <location filename="../Debugger/DebugUI.py" line="354" />
       <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profilovat projekt&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a spuštění projektu s profilováním kódu. Pokud jsou v projektu neuložené změny, měly by se nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2528" />
-      <location filename="../Debugger/DebugUI.py" line="368" />
+      <location filename="../Debugger/DebugUI.py" line="2525" />
+      <location filename="../Debugger/DebugUI.py" line="365" />
       <source>Debug Script</source>
       <translation>Debugovat skript</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="370" />
+      <location filename="../Debugger/DebugUI.py" line="367" />
       <source>&amp;Debug Script...</source>
       <translation>&amp;Debugovat skript...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="376" />
+      <location filename="../Debugger/DebugUI.py" line="373" />
       <source>Debug the current Script</source>
       <translation>Debugovat aktuální skript</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="378" />
+      <location filename="../Debugger/DebugUI.py" line="375" />
       <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Debugovat skript&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a aktuální řádky jako první python příkaz v aktuálním editačním okně. Pokud jsou ve skriptu neuložené změny, měly by se nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2534" />
-      <location filename="../Debugger/DebugUI.py" line="2528" />
-      <location filename="../Debugger/DebugUI.py" line="390" />
+      <location filename="../Debugger/DebugUI.py" line="2531" />
+      <location filename="../Debugger/DebugUI.py" line="2525" />
+      <location filename="../Debugger/DebugUI.py" line="387" />
       <source>Debug Project</source>
       <translation>Debugovat projekt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="392" />
+      <location filename="../Debugger/DebugUI.py" line="389" />
       <source>Debug &amp;Project...</source>
       <translation>Debugovat pro&amp;jekt...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="398" />
+      <location filename="../Debugger/DebugUI.py" line="395" />
       <source>Debug the current Project</source>
       <translation>Debugovat aktuální projekt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="400" />
+      <location filename="../Debugger/DebugUI.py" line="397" />
       <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Debugovat projekt&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a nastavení aktuální řádky jako první python příkaz hlavního skriptu v aktuálním projektu. Pokud jsou v projektu neuložené změny, měly by se měly nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="414" />
-      <location filename="../Debugger/DebugUI.py" line="412" />
+      <location filename="../Debugger/DebugUI.py" line="411" />
+      <location filename="../Debugger/DebugUI.py" line="409" />
       <source>Restart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="420" />
+      <location filename="../Debugger/DebugUI.py" line="417" />
       <source>Restart the last debugged script</source>
       <translation>Restartovat posledně debugovaný skript</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="422" />
+      <location filename="../Debugger/DebugUI.py" line="419" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="631" />
-      <location filename="../Debugger/DebugUI.py" line="436" />
-      <location filename="../Debugger/DebugUI.py" line="434" />
+      <location filename="../Debugger/DebugUI.py" line="628" />
+      <location filename="../Debugger/DebugUI.py" line="433" />
+      <location filename="../Debugger/DebugUI.py" line="431" />
       <source>Stop</source>
       <translation />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="442" />
+      <location filename="../Debugger/DebugUI.py" line="439" />
       <source>Stop the running script.</source>
       <translation>Zastavit běžící skript.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="444" />
+      <location filename="../Debugger/DebugUI.py" line="441" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="455" />
+      <location filename="../Debugger/DebugUI.py" line="452" />
       <source>Continue</source>
       <translation>Pokračovat</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="457" />
+      <location filename="../Debugger/DebugUI.py" line="454" />
       <source>&amp;Continue</source>
       <translation>&amp;Pokračovat</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="463" />
+      <location filename="../Debugger/DebugUI.py" line="460" />
       <source>Continue running the program from the current line</source>
       <translation>Pokračovat v běhu programu od aktuální řádky</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="465" />
+      <location filename="../Debugger/DebugUI.py" line="462" />
       <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Pokračovat&lt;/b&gt;&lt;p&gt;Pokračovat v běhu programu od aktuální řádky. Program se zastaví na nejbližším breakpointu nebo běží až do konce.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="476" />
+      <location filename="../Debugger/DebugUI.py" line="473" />
       <source>Continue to Cursor</source>
       <translation>Pokračovat až na kurzor</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="478" />
+      <location filename="../Debugger/DebugUI.py" line="475" />
       <source>Continue &amp;To Cursor</source>
       <translation>Pokračova&amp;t až na kurzor</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="485" />
+      <location filename="../Debugger/DebugUI.py" line="482" />
       <source>Continue running the program from the current line to the current cursor position</source>
       <translation>Pokračovat v běhu programu od aktuální řádky až na pozici kurzoru</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="491" />
+      <location filename="../Debugger/DebugUI.py" line="488" />
       <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Pokračovat až na kurzor&lt;/b&gt;&lt;p&gt;Běh programu pokračuje až na řádek, na kterém se nachází kurzor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="501" />
+      <location filename="../Debugger/DebugUI.py" line="498" />
       <source>Continue Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="503" />
+      <location filename="../Debugger/DebugUI.py" line="500" />
       <source>Continue &amp;Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="510" />
+      <location filename="../Debugger/DebugUI.py" line="507" />
       <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="516" />
+      <location filename="../Debugger/DebugUI.py" line="513" />
       <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="527" />
+      <location filename="../Debugger/DebugUI.py" line="524" />
       <source>Move Instruction Pointer to Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="529" />
+      <location filename="../Debugger/DebugUI.py" line="526" />
       <source>&amp;Jump To Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="536" />
+      <location filename="../Debugger/DebugUI.py" line="533" />
       <source>Skip the code from the current line to the current cursor position</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="542" />
+      <location filename="../Debugger/DebugUI.py" line="539" />
       <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="556" />
+      <location filename="../Debugger/DebugUI.py" line="553" />
       <source>Single Step</source>
       <translation>Krok dovnitř</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="558" />
+      <location filename="../Debugger/DebugUI.py" line="555" />
       <source>Sin&amp;gle Step</source>
       <translation>&amp;Krok dovnitř</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="564" />
+      <location filename="../Debugger/DebugUI.py" line="561" />
       <source>Execute a single Python statement</source>
       <translation>Vykonat jen jeden python příkaz</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="566" />
+      <location filename="../Debugger/DebugUI.py" line="563" />
       <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Krok dovnitř&lt;/b&gt;&lt;p&gt;Vykoná se jen jeden python příkaz. Pokud je příkaz &lt;tt&gt;import&lt;/tt&gt;, konstruktor třídy, metoda nebo funkce, tak debuger vstoupí dovnitř funkce a zastaví se na prvním příkazu v těle funkce.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="578" />
+      <location filename="../Debugger/DebugUI.py" line="575" />
       <source>Step Over</source>
       <translation>Krok přes</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="580" />
+      <location filename="../Debugger/DebugUI.py" line="577" />
       <source>Step &amp;Over</source>
       <translation>Kr&amp;ok přes</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="587" />
+      <location filename="../Debugger/DebugUI.py" line="584" />
       <source>Execute a single Python statement staying in the current frame</source>
       <translation>Vykonat jeden python příkaz ale nevstupovat do něj</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="593" />
+      <location filename="../Debugger/DebugUI.py" line="590" />
       <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Krok přes&lt;/b&gt;&lt;p&gt;Vykoná se jeden python příkaz. Pokud je příkaz &lt;tt&gt;import&lt;/tt&gt;, konstruktor třídy, metoda nebo funkce, tak debuger nevstupuje dovnitř funkce, ale vykoná ji celou a zastaví se až na následujícím příkazu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="606" />
+      <location filename="../Debugger/DebugUI.py" line="603" />
       <source>Step Out</source>
       <translation>Krok ven</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="608" />
+      <location filename="../Debugger/DebugUI.py" line="605" />
       <source>Step Ou&amp;t</source>
       <translation>Krok &amp;ven</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="612" />
+      <source>Execute Python statements until leaving the current frame</source>
+      <translation>Vykonávat python příkazy tak dlouho, dokud nedojde k opuštění těla kódu</translation>
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="615" />
-      <source>Execute Python statements until leaving the current frame</source>
-      <translation>Vykonávat python příkazy tak dlouho, dokud nedojde k opuštění těla kódu</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="618" />
       <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Krok ven&lt;/b&gt;&lt;p&gt;Provádí se python příkazy tak dlouho, dokud nedojde k opuštění těla aktuálního bloku kódu. Pokud je příkaz &lt;tt&gt;import&lt;/tt&gt;, konstruktor třídy, metoda nebo funkce, tak debuger provádí příkazy tak dlouho, dokud z daného bloku nevystoupí. Zastaví se až na příkazu následujícím za daným blokem.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="633" />
+      <location filename="../Debugger/DebugUI.py" line="630" />
       <source>&amp;Stop</source>
       <translation>&amp;Stop</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="639" />
+      <location filename="../Debugger/DebugUI.py" line="636" />
       <source>Stop debugging</source>
       <translation>Stop debugování</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="641" />
+      <location filename="../Debugger/DebugUI.py" line="638" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop běhu aktuální debug relace.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="647" />
+      <location filename="../Debugger/DebugUI.py" line="644" />
       <source>Variables Type Filter</source>
       <translation>Filtr typů proměnných</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="648" />
+      <location filename="../Debugger/DebugUI.py" line="645" />
       <source>Varia&amp;bles Type Filter...</source>
       <translation>&amp;Filtr typů proměnných...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="654" />
+      <location filename="../Debugger/DebugUI.py" line="651" />
       <source>Configure variables type filter</source>
       <translation>Nastavit filtr typů proměnných</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="656" />
+      <location filename="../Debugger/DebugUI.py" line="653" />
       <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Filtr typů proměnných&lt;/b&gt;&lt;p&gt;Nastavení filtru typů proměnných. Během debugování jsou v okně globálních nebo lokálních proměnných zobrazovány jen ty typy proměnných, které nebyly vybrány.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="667" />
+      <location filename="../Debugger/DebugUI.py" line="664" />
       <source>Exceptions Filter</source>
       <translation>Filtr výjimek</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="668" />
+      <location filename="../Debugger/DebugUI.py" line="665" />
       <source>&amp;Exceptions Filter...</source>
       <translation>Filtr výjim&amp;ek...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="674" />
+      <location filename="../Debugger/DebugUI.py" line="671" />
       <source>Configure exceptions filter</source>
       <translation>Konfigurace filtru výjimek</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="676" />
+      <location filename="../Debugger/DebugUI.py" line="673" />
       <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Filtr výjimek&lt;/b&gt;&lt;p&gt;Nastavení filtru výjimek. Během debugování jsou zvýrazněny jen ty výjimky, které jsou uvedeny v seznamu.&lt;/p&gt;&lt;p&gt;Všimněte si, že neošetřené výjimky jsou zvýrazněny nezávisle na seznamu filtru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="688" />
+      <location filename="../Debugger/DebugUI.py" line="685" />
       <source>Ignored Exceptions</source>
       <translation>Ignorované výjimky</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="689" />
+      <location filename="../Debugger/DebugUI.py" line="686" />
       <source>&amp;Ignored Exceptions...</source>
       <translation>&amp;Ignorované výjimky...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="695" />
+      <location filename="../Debugger/DebugUI.py" line="692" />
       <source>Configure ignored exceptions</source>
       <translation>Konfigurovat ignorované výjimky</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="697" />
+      <location filename="../Debugger/DebugUI.py" line="694" />
       <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ignorované výjimky&lt;/b&gt;&lt;p&gt;Seznam ignorovaných výjimek. Během debugování jsou zvýrazněny jen ty typy výjimek, které nejsou uvedeny v tomto seznamu.&lt;/p&gt;&lt;p&gt;Všimněte si prosím, že výjimky typu unhalted nelze ignorovat.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="719" />
-      <location filename="../Debugger/DebugUI.py" line="713" />
-      <location filename="../Debugger/DebugUI.py" line="711" />
+      <location filename="../Debugger/DebugUI.py" line="716" />
+      <location filename="../Debugger/DebugUI.py" line="710" />
+      <location filename="../Debugger/DebugUI.py" line="708" />
       <source>Toggle Breakpoint</source>
       <translation>Přepnout breakpoint</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="714" />
+      <location filename="../Debugger/DebugUI.py" line="711" />
       <source>Shift+F11</source>
       <comment>Debug|Toggle Breakpoint</comment>
       <translation />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="721" />
+      <location filename="../Debugger/DebugUI.py" line="718" />
       <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Přepnout breakpoint&lt;/b&gt;&lt;p&gt;Zapíná/vypíná breakpoint na aktuální řádce v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="739" />
-      <location filename="../Debugger/DebugUI.py" line="731" />
+      <location filename="../Debugger/DebugUI.py" line="736" />
+      <location filename="../Debugger/DebugUI.py" line="728" />
       <source>Edit Breakpoint</source>
       <translation>Editovat breakpoint</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="733" />
+      <location filename="../Debugger/DebugUI.py" line="730" />
       <source>Edit Breakpoint...</source>
       <translation>Editovat breakpoint...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="734" />
+      <location filename="../Debugger/DebugUI.py" line="731" />
       <source>Shift+F12</source>
       <comment>Debug|Edit Breakpoint</comment>
       <translation />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="741" />
+      <location filename="../Debugger/DebugUI.py" line="738" />
       <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Editovat breakpoint&lt;/b&gt;&lt;p&gt;Otevře dialog s editací vlastností breakpointů. Zpracovává aktuální řádku v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="759" />
-      <location filename="../Debugger/DebugUI.py" line="753" />
-      <location filename="../Debugger/DebugUI.py" line="751" />
+      <location filename="../Debugger/DebugUI.py" line="756" />
+      <location filename="../Debugger/DebugUI.py" line="750" />
+      <location filename="../Debugger/DebugUI.py" line="748" />
       <source>Next Breakpoint</source>
       <translation>Následující breakpoint</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="754" />
+      <location filename="../Debugger/DebugUI.py" line="751" />
       <source>Ctrl+Shift+PgDown</source>
       <comment>Debug|Next Breakpoint</comment>
       <translation />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="761" />
+      <location filename="../Debugger/DebugUI.py" line="758" />
       <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Následující breakpoint&lt;/b&gt;&lt;p&gt;Jít na následující breakpoint v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="778" />
-      <location filename="../Debugger/DebugUI.py" line="772" />
-      <location filename="../Debugger/DebugUI.py" line="770" />
+      <location filename="../Debugger/DebugUI.py" line="775" />
+      <location filename="../Debugger/DebugUI.py" line="769" />
+      <location filename="../Debugger/DebugUI.py" line="767" />
       <source>Previous Breakpoint</source>
       <translation>Předchozí breakpoint</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="773" />
+      <location filename="../Debugger/DebugUI.py" line="770" />
       <source>Ctrl+Shift+PgUp</source>
       <comment>Debug|Previous Breakpoint</comment>
       <translation />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="780" />
+      <location filename="../Debugger/DebugUI.py" line="777" />
       <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Předchozí breakpoint&lt;/b&gt;&lt;p&gt;Jít na předchozí brakpoint v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="796" />
-      <location filename="../Debugger/DebugUI.py" line="790" />
-      <location filename="../Debugger/DebugUI.py" line="789" />
+      <location filename="../Debugger/DebugUI.py" line="793" />
+      <location filename="../Debugger/DebugUI.py" line="787" />
+      <location filename="../Debugger/DebugUI.py" line="786" />
       <source>Clear Breakpoints</source>
       <translation>Zrušit breakpointy</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="798" />
+      <location filename="../Debugger/DebugUI.py" line="795" />
       <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Zrušit breakpointy&lt;/b&gt;&lt;p&gt;Zrušení breakpointů ve všech editorech.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="822" />
+      <location filename="../Debugger/DebugUI.py" line="819" />
       <source>&amp;Debug</source>
       <translation>&amp;Debugování</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="824" />
+      <location filename="../Debugger/DebugUI.py" line="821" />
       <source>Sta&amp;rt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="826" />
+      <location filename="../Debugger/DebugUI.py" line="823" />
       <source>&amp;Breakpoints</source>
       <translation>&amp;Breakpointy</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="869" />
-      <location filename="../Debugger/DebugUI.py" line="867" />
+      <location filename="../Debugger/DebugUI.py" line="866" />
+      <location filename="../Debugger/DebugUI.py" line="864" />
       <source>Start</source>
       <translation>Start</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="882" />
-      <location filename="../Debugger/DebugUI.py" line="880" />
+      <location filename="../Debugger/DebugUI.py" line="879" />
+      <location filename="../Debugger/DebugUI.py" line="877" />
       <source>Debug</source>
       <translation>Debug</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1345" />
+      <location filename="../Debugger/DebugUI.py" line="1342" />
       <source>Message: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1349" />
+      <location filename="../Debugger/DebugUI.py" line="1346" />
       <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1354" />
+      <location filename="../Debugger/DebugUI.py" line="1351" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1366" />
+      <location filename="../Debugger/DebugUI.py" line="1363" />
       <source>Program terminated</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1402" />
+      <location filename="../Debugger/DebugUI.py" line="1399" />
       <source>The program being debugged contains an unspecified syntax error.</source>
       <translation>Program, který je právě debugován, obsahuje nespecifikovanou syntaktickou chybu.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1422" />
+      <location filename="../Debugger/DebugUI.py" line="1419" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; na řádce &lt;b&gt;{1}&lt;/b&gt;, písmeno &lt;b&gt;{2}&lt;/b&gt;, obsahuje syntaktickou chybu &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1450" />
+      <location filename="../Debugger/DebugUI.py" line="1447" />
       <source>An unhandled exception occured. See the shell window for details.</source>
       <translation>Objevila se neošetřená výjimka. Detaily naleznete v shell okně.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1497" />
+      <location filename="../Debugger/DebugUI.py" line="1494" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Debugovaný program vyvolal výjimku  &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;Soubor: &lt;b&gt;{2}&lt;/b&gt;, řádek: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Zastavit zde?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1515" />
+      <location filename="../Debugger/DebugUI.py" line="1512" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</source>
       <translation>&lt;p&gt;Debugovaný program vyvolal výjimku  &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1573" />
+      <location filename="../Debugger/DebugUI.py" line="1570" />
       <source>&lt;p&gt;The program generate the signal "{0}".&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1591" />
+      <location filename="../Debugger/DebugUI.py" line="1588" />
       <source>The program being debugged has terminated unexpectedly.</source>
       <translation>Debugovaný program byl neočekávaně ukončen.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1652" />
+      <location filename="../Debugger/DebugUI.py" line="1649" />
       <source>No locals available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1699" />
+      <location filename="../Debugger/DebugUI.py" line="1696" />
       <source>Breakpoint Condition Error</source>
       <translation>Chyba v podmíněném breakpointu</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1700" />
+      <location filename="../Debugger/DebugUI.py" line="1697" />
       <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Podmínka breakpointu &lt;b&gt;{0}, {1}&lt;/b&gt; obsahuje syntaktickou chybu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1757" />
+      <location filename="../Debugger/DebugUI.py" line="1754" />
       <source>Watch Expression Error</source>
       <translation>Chyba sledovacího bodu</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1758" />
+      <location filename="../Debugger/DebugUI.py" line="1755" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Sledovací bod &lt;b&gt;{0}&lt;/b&gt; obsahuje syntaktickou chybu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1786" />
+      <location filename="../Debugger/DebugUI.py" line="1783" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Sledovací bod '&lt;b&gt;{0}&lt;/b&gt;' již existuje.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1791" />
+      <location filename="../Debugger/DebugUI.py" line="1788" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Sledovací bod '&lt;b&gt;{0}&lt;/b&gt;' pro proměnnou &lt;b&gt;{1}&lt;/b&gt; již existuje.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1797" />
+      <location filename="../Debugger/DebugUI.py" line="1794" />
       <source>Watch expression already exists</source>
       <translation>Sledovací bod již existuje</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1962" />
-      <location filename="../Debugger/DebugUI.py" line="1953" />
+      <location filename="../Debugger/DebugUI.py" line="1959" />
+      <location filename="../Debugger/DebugUI.py" line="1950" />
       <source>Coverage Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1955" />
+      <location filename="../Debugger/DebugUI.py" line="1952" />
       <source>Coverage Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2349" />
-      <location filename="../Debugger/DebugUI.py" line="2158" />
-      <location filename="../Debugger/DebugUI.py" line="1963" />
+      <location filename="../Debugger/DebugUI.py" line="2346" />
+      <location filename="../Debugger/DebugUI.py" line="2155" />
+      <location filename="../Debugger/DebugUI.py" line="1960" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>V aktuálním projektu není definován hlavní skript. Zrušeno</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2157" />
-      <location filename="../Debugger/DebugUI.py" line="2148" />
+      <location filename="../Debugger/DebugUI.py" line="2154" />
+      <location filename="../Debugger/DebugUI.py" line="2145" />
       <source>Profile Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2150" />
+      <location filename="../Debugger/DebugUI.py" line="2147" />
       <source>Profile Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2535" />
+      <location filename="../Debugger/DebugUI.py" line="2532" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation>V aktuálním projektu není definován hlavní skript. Debugování není možné.</translation>
     </message>
@@ -10705,12 +10705,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1451" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1458" />
       <source>Debug Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1452" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1459" />
       <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -12533,7 +12533,7 @@
   <context>
     <name>Editor</name>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3527" />
+      <location filename="../QScintilla/Editor.py" line="3525" />
       <location filename="../QScintilla/Editor.py" line="470" />
       <location filename="../QScintilla/Editor.py" line="455" />
       <source>Open File</source>
@@ -12605,7 +12605,7 @@
       <translation>Zrušit komentář</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9939" />
+      <location filename="../QScintilla/Editor.py" line="9937" />
       <location filename="../QScintilla/Editor.py" line="969" />
       <source>Generate Docstring</source>
       <translation type="unfinished" />
@@ -12883,7 +12883,7 @@
       <translation type="unfinished">Pravopis</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9026" />
+      <location filename="../QScintilla/Editor.py" line="9024" />
       <location filename="../QScintilla/Editor.py" line="1367" />
       <source>Check spelling...</source>
       <translation>Zatrhnout kontrolu...</translation>
@@ -12944,7 +12944,7 @@
       <translation>Editovat breakpoint...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6498" />
+      <location filename="../QScintilla/Editor.py" line="6496" />
       <location filename="../QScintilla/Editor.py" line="1452" />
       <source>Enable breakpoint</source>
       <translation>Aktivovat breakpoint</translation>
@@ -13106,444 +13106,444 @@
       <translation>Pokoušíte se změnit soubor, který je otevřen jen pro čtení. Prosím, uložte jej nejdříve do jiného souboru.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="2701" />
+      <location filename="../QScintilla/Editor.py" line="2699" />
       <source>Add Breakpoint</source>
       <translation type="unfinished">Přidat breakpoint</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="2702" />
+      <location filename="../QScintilla/Editor.py" line="2700" />
       <source>No Python byte code will be created for the selected line. No break point will be set!</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3056" />
+      <location filename="../QScintilla/Editor.py" line="3054" />
       <source>Printing...</source>
       <translation>Tisk...</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="3071" />
+      <source>Printing completed</source>
+      <translation>Tisk je hotov</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="3073" />
-      <source>Printing completed</source>
-      <translation>Tisk je hotov</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="3075" />
       <source>Error while printing</source>
       <translation>Chyba během tisku</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3078" />
+      <location filename="../QScintilla/Editor.py" line="3076" />
       <source>Printing aborted</source>
       <translation>Tisk byl zrušen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3460" />
+      <location filename="../QScintilla/Editor.py" line="3458" />
       <source>File Modified</source>
       <translation>Soubor je modifikován</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3461" />
+      <location filename="../QScintilla/Editor.py" line="3459" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; obsahuje neuložené změny.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3528" />
+      <location filename="../QScintilla/Editor.py" line="3526" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; nemůže být přejmenován.&lt;br /&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3719" />
-      <location filename="../QScintilla/Editor.py" line="3700" />
-      <location filename="../QScintilla/Editor.py" line="3660" />
+      <location filename="../QScintilla/Editor.py" line="3717" />
+      <location filename="../QScintilla/Editor.py" line="3698" />
+      <location filename="../QScintilla/Editor.py" line="3658" />
       <source>Save File</source>
       <translation>Uložit soubor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3661" />
+      <location filename="../QScintilla/Editor.py" line="3659" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; nemůže být přejmenován.&lt;br /&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3720" />
+      <location filename="../QScintilla/Editor.py" line="3718" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3864" />
+      <location filename="../QScintilla/Editor.py" line="3862" />
       <source>Save File to Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3865" />
+      <location filename="../QScintilla/Editor.py" line="3863" />
       <source>Enter the complete device file path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5653" />
+      <location filename="../QScintilla/Editor.py" line="5651" />
       <source>Autocompletion</source>
       <translation>Autodoplňování</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5654" />
+      <location filename="../QScintilla/Editor.py" line="5652" />
       <source>Autocompletion is not available because there is no autocompletion source set.</source>
       <translation>Autodoplňování není dostupné protože zdrojová část autodoplňování nebyla nalezena.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5788" />
+      <location filename="../QScintilla/Editor.py" line="5786" />
       <source>Auto-Completion Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5789" />
+      <location filename="../QScintilla/Editor.py" line="5787" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6085" />
+      <location filename="../QScintilla/Editor.py" line="6083" />
       <source>Call-Tips Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6086" />
+      <location filename="../QScintilla/Editor.py" line="6084" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6502" />
+      <location filename="../QScintilla/Editor.py" line="6500" />
       <source>Disable breakpoint</source>
       <translation>Deaktivovat breakpoint</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6917" />
+      <location filename="../QScintilla/Editor.py" line="6915" />
       <source>Code Coverage</source>
       <translation>Pokrytí kódu</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6918" />
+      <location filename="../QScintilla/Editor.py" line="6916" />
       <source>Please select a coverage file</source>
       <translation>Prosím, vyberte soubor s pokrytím kódu</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6993" />
-      <location filename="../QScintilla/Editor.py" line="6985" />
+      <location filename="../QScintilla/Editor.py" line="6991" />
+      <location filename="../QScintilla/Editor.py" line="6983" />
       <source>Show Code Coverage Annotations</source>
       <translation>Zobrazit poznámky pokrytí kódu</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6986" />
+      <location filename="../QScintilla/Editor.py" line="6984" />
       <source>All lines have been covered.</source>
       <translation>Všechny řádky byly pokryty.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6994" />
+      <location filename="../QScintilla/Editor.py" line="6992" />
       <source>There is no coverage file available.</source>
       <translation>Soubor s pokrytím není dostupný.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7102" />
+      <location filename="../QScintilla/Editor.py" line="7100" />
       <source>Profile Data</source>
       <translation>Profilovat data</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7103" />
+      <location filename="../QScintilla/Editor.py" line="7101" />
       <source>Please select a profile file</source>
       <translation>Prosím, vyberte soubor s profilem</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7265" />
-      <location filename="../QScintilla/Editor.py" line="7259" />
+      <location filename="../QScintilla/Editor.py" line="7263" />
+      <location filename="../QScintilla/Editor.py" line="7257" />
       <source>Syntax Error</source>
       <translation>Chyba syntaxe</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7266" />
+      <location filename="../QScintilla/Editor.py" line="7264" />
       <source>No syntax error message available.</source>
       <translation>Hlášení syntaktické chyby není dostupné.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7513" />
-      <location filename="../QScintilla/Editor.py" line="7507" />
+      <location filename="../QScintilla/Editor.py" line="7511" />
+      <location filename="../QScintilla/Editor.py" line="7505" />
       <source>Warning</source>
       <translation type="unfinished">Varování</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7513" />
+      <location filename="../QScintilla/Editor.py" line="7511" />
       <source>No warning messages available.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7590" />
+      <source>Info: {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7606" />
       <location filename="../QScintilla/Editor.py" line="7592" />
-      <source>Info: {0}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7608" />
-      <location filename="../QScintilla/Editor.py" line="7594" />
       <source>Error: {0}</source>
       <translation type="unfinished">Chyby: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7596" />
+      <location filename="../QScintilla/Editor.py" line="7594" />
       <source>Style: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7601" />
+      <location filename="../QScintilla/Editor.py" line="7599" />
       <source>Warning: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7729" />
       <source>Macro Name</source>
       <translation>Název makra</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7729" />
       <source>Select a macro name:</source>
       <translation>Vyberte název makra:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7757" />
+      <location filename="../QScintilla/Editor.py" line="7755" />
       <source>Load macro file</source>
       <translation>Načíst soubor makra</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7803" />
-      <location filename="../QScintilla/Editor.py" line="7759" />
-      <source>Macro files (*.macro)</source>
-      <translation>Macro soubory (*.macro)</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7781" />
-      <location filename="../QScintilla/Editor.py" line="7771" />
-      <source>Error loading macro</source>
-      <translation>Chyba při načítání makra</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7772" />
-      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Soubor s makrem &lt;b&gt;{0}&lt;/b&gt; nelze načíst.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7782" />
-      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Soubor s makrem &lt;b&gt;{0}&lt;/b&gt; je poškozen.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="7801" />
+      <location filename="../QScintilla/Editor.py" line="7757" />
+      <source>Macro files (*.macro)</source>
+      <translation>Macro soubory (*.macro)</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7779" />
+      <location filename="../QScintilla/Editor.py" line="7769" />
+      <source>Error loading macro</source>
+      <translation>Chyba při načítání makra</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7770" />
+      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Soubor s makrem &lt;b&gt;{0}&lt;/b&gt; nelze načíst.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7780" />
+      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Soubor s makrem &lt;b&gt;{0}&lt;/b&gt; je poškozen.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7799" />
       <source>Save macro file</source>
       <translation>Uložit soubor s makrem</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7819" />
+      <location filename="../QScintilla/Editor.py" line="7817" />
       <source>Save macro</source>
       <translation>Uložit makro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7820" />
+      <location filename="../QScintilla/Editor.py" line="7818" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7835" />
+      <location filename="../QScintilla/Editor.py" line="7833" />
       <source>Error saving macro</source>
       <translation>Chyba při ukládání makra</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7836" />
+      <location filename="../QScintilla/Editor.py" line="7834" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation>&lt;p&gt;So souboru s makrem &lt;b&gt;{0}&lt;/b&gt; nelze zapisovat.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7849" />
+      <location filename="../QScintilla/Editor.py" line="7847" />
       <source>Start Macro Recording</source>
       <translation>Spustit záznam makra</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7850" />
+      <location filename="../QScintilla/Editor.py" line="7848" />
       <source>Macro recording is already active. Start new?</source>
       <translation>Nahrávání makra již probíhá. Spustit nové?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7876" />
+      <location filename="../QScintilla/Editor.py" line="7874" />
       <source>Macro Recording</source>
       <translation>Záznam makra</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7877" />
+      <location filename="../QScintilla/Editor.py" line="7875" />
       <source>Enter name of the macro:</source>
       <translation>Vložte název makra:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8060" />
+      <location filename="../QScintilla/Editor.py" line="8058" />
       <source>{0} (ro)</source>
       <translation>{0} (ro)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8245" />
+      <location filename="../QScintilla/Editor.py" line="8243" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8251" />
+      <location filename="../QScintilla/Editor.py" line="8249" />
       <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8258" />
+      <location filename="../QScintilla/Editor.py" line="8256" />
       <source>File changed</source>
       <translation>Soubor změněn</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8351" />
+      <location filename="../QScintilla/Editor.py" line="8349" />
       <source>Reload File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8352" />
+      <location filename="../QScintilla/Editor.py" line="8350" />
       <source>&lt;p&gt;The editor contains unsaved modifications.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reloading it.&lt;/p&gt;&lt;p&gt;Shall the editor really be reloaded?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8452" />
+      <location filename="../QScintilla/Editor.py" line="8450" />
       <source>Drop Error</source>
       <translation>Zahodit chybu</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8453" />
+      <location filename="../QScintilla/Editor.py" line="8451" />
       <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="../QScintilla/Editor.py" line="8472" />
+      <source>Resources</source>
+      <translation>Zdroje</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="8474" />
-      <source>Resources</source>
-      <translation>Zdroje</translation>
+      <source>Add file...</source>
+      <translation>Přidat soubor...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="8475" />
+      <source>Add files...</source>
+      <translation>Přidat soubory...</translation>
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="8476" />
-      <source>Add file...</source>
-      <translation>Přidat soubor...</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="8477" />
-      <source>Add files...</source>
-      <translation>Přidat soubory...</translation>
+      <source>Add aliased file...</source>
+      <translation>Přidat zástupce souboru...</translation>
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="8478" />
-      <source>Add aliased file...</source>
-      <translation>Přidat zástupce souboru...</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="8480" />
       <source>Add localized resource...</source>
       <translation>Přidat lokalizované resource...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8483" />
+      <location filename="../QScintilla/Editor.py" line="8481" />
       <source>Add resource frame</source>
       <translation>Přidat resource frame</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8503" />
+      <location filename="../QScintilla/Editor.py" line="8501" />
       <source>Add file resource</source>
       <translation>Přidat soubor resource</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8517" />
+      <location filename="../QScintilla/Editor.py" line="8515" />
       <source>Add file resources</source>
       <translation>Přidat soubory resource</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8541" />
-      <location filename="../QScintilla/Editor.py" line="8535" />
+      <location filename="../QScintilla/Editor.py" line="8539" />
+      <location filename="../QScintilla/Editor.py" line="8533" />
       <source>Add aliased file resource</source>
       <translation>Přidat zástupce souboru resource</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8542" />
+      <location filename="../QScintilla/Editor.py" line="8540" />
       <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
       <translation>Zástupce pro soubor &lt;b&gt;{0}&lt;/b&gt;:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8617" />
+      <location filename="../QScintilla/Editor.py" line="8615" />
       <source>Package Diagram</source>
       <translation>Diagram balíčku</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8618" />
+      <location filename="../QScintilla/Editor.py" line="8616" />
       <source>Include class attributes?</source>
       <translation>Včetně atributů třídy?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8638" />
+      <location filename="../QScintilla/Editor.py" line="8636" />
       <source>Imports Diagram</source>
       <translation>Importovat diagram</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8639" />
+      <location filename="../QScintilla/Editor.py" line="8637" />
       <source>Include imports from external modules?</source>
       <translation>Zahrnout importy z externích modulů?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8658" />
+      <location filename="../QScintilla/Editor.py" line="8656" />
       <source>Application Diagram</source>
       <translation>Diagram aplikace</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8659" />
+      <location filename="../QScintilla/Editor.py" line="8657" />
       <source>Include module names?</source>
       <translation>Včetně jmen modulů?</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="9028" />
+      <source>Add to dictionary</source>
+      <translation>Přidat do slovníku</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="9030" />
-      <source>Add to dictionary</source>
-      <translation>Přidat do slovníku</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="9032" />
       <source>Ignore All</source>
       <translation>Ignorovat vše</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9479" />
+      <location filename="../QScintilla/Editor.py" line="9477" />
       <source>Sort Lines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9480" />
+      <location filename="../QScintilla/Editor.py" line="9478" />
       <source>The selection contains illegal data for a numerical sort.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9573" />
+      <location filename="../QScintilla/Editor.py" line="9571" />
       <source>Register Mouse Click Handler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9574" />
+      <location filename="../QScintilla/Editor.py" line="9572" />
       <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9667" />
+      <location filename="../QScintilla/Editor.py" line="9665" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9673" />
+      <location filename="../QScintilla/Editor.py" line="9671" />
       <source>{0:4d}    {1}
     =&gt;  {2}</source>
       <comment>line number, source code, file name</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9742" />
+      <location filename="../QScintilla/Editor.py" line="9740" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9743" />
+      <location filename="../QScintilla/Editor.py" line="9741" />
       <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -18740,12 +18740,12 @@
   <context>
     <name>EricApplication</name>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="227" />
+      <location filename="../EricWidgets/EricApplication.py" line="226" />
       <source>Loading Style Sheet</source>
       <translation type="unfinished">Načtení kaskádového stylu</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="230" />
+      <location filename="../EricWidgets/EricApplication.py" line="229" />
       <source>&lt;p&gt;The Qt Style Sheet file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Soubor Qt Style Sheet &lt;b&gt;{0}&lt;/b&gt; nelze vytvořit.&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
@@ -18902,12 +18902,12 @@
   <context>
     <name>EricJsonServer</name>
     <message>
-      <location filename="../EricNetwork/EricJsonServer.py" line="185" />
+      <location filename="../EricNetwork/EricJsonServer.py" line="199" />
       <source>JSON Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricNetwork/EricJsonServer.py" line="186" />
+      <location filename="../EricNetwork/EricJsonServer.py" line="200" />
       <source>&lt;p&gt;The response received from the client could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -19378,39 +19378,39 @@
   <context>
     <name>EricPathPickerBase</name>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="178" />
-      <location filename="../EricWidgets/EricPathPicker.py" line="107" />
-      <location filename="../EricWidgets/EricPathPicker.py" line="100" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="177" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="106" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="99" />
       <source>Enter Path Name</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="175" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="174" />
       <source>Enter Path Names separated by ';'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="520" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="519" />
       <source>Choose a file to open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="522" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="521" />
       <source>Choose files to open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="524" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="523" />
       <source>Choose files and directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="530" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="529" />
       <source>Choose a file to save</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="532" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="531" />
       <source>Choose a directory</source>
       <translation type="unfinished" />
     </message>
@@ -20192,12 +20192,12 @@
   <context>
     <name>EricTldExtractor</name>
     <message>
-      <location filename="../EricNetwork/EricTldExtractor.py" line="294" />
+      <location filename="../EricNetwork/EricTldExtractor.py" line="293" />
       <source>TLD Data File not found</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricNetwork/EricTldExtractor.py" line="295" />
+      <location filename="../EricNetwork/EricTldExtractor.py" line="294" />
       <source>&lt;p&gt;The file 'effective_tld_names.dat' was not found!&lt;br/&gt;You can download it from '&lt;a href="{0}"&gt;&lt;b&gt;here&lt;/b&gt;&lt;/a&gt;' to one of the following paths:&lt;/p&gt;&lt;ul&gt;{1}&lt;/ul&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -32147,77 +32147,77 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="573" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="575" />
       <source>Backward</source>
       <translation type="unfinished">Nazpět</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="578" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="580" />
       <source>Forward</source>
       <translation type="unfinished">Dopředu</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="583" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="585" />
       <source>Reload</source>
       <translation type="unfinished">Obnovit</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="595" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="597" />
       <source>Copy Page URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="601" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="603" />
       <source>Bookmark Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="609" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="611" />
       <source>Zoom in</source>
       <translation type="unfinished">Přiblížit</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="614" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="616" />
       <source>Zoom out</source>
       <translation type="unfinished">Oddálit</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="619" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="621" />
       <source>Zoom reset</source>
       <translation type="unfinished">Resetovat lupu</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="625" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="627" />
       <source>Copy</source>
       <translation type="unfinished">Kopírovat</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="631" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="633" />
       <source>Select All</source>
       <translation type="unfinished">Vybrat vše</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="638" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="640" />
       <source>Close</source>
       <translation type="unfinished">Zavřít</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="643" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="645" />
       <source>Close Others</source>
       <translation type="unfinished">Zavřít ostatní</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="661" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="663" />
       <source>Open Link in New Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="668" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="670" />
       <source>Open Link in Background Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="676" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="678" />
       <source>Copy URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
@@ -32225,184 +32225,184 @@
   <context>
     <name>HelpViewerWidget</name>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="126" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="127" />
       <source>Open a local file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="132" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="133" />
       <source>Select action from menu</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="148" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="149" />
       <source>Move one page backward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="153" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="154" />
       <source>Move one page forward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="165" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="166" />
       <source>Reload the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="176" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="177" />
       <source>Zoom in on the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="182" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="183" />
       <source>Zoom out on the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="189" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="190" />
       <source>Reset the zoom level of the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="201" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="202" />
       <source>Add a new empty page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="207" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="208" />
       <source>Close the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="218" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="219" />
       <source>Show or hide the search pane</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="294" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="295" />
       <source>Show list of open pages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="297" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="298" />
       <source>Show the table of contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="300" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="301" />
       <source>Show the help document index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="303" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="304" />
       <source>Show the help search window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="306" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="307" />
       <source>Show list of bookmarks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
-      <source>eric API Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="445" />
-      <source>Python 3 Documentation</source>
+      <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="446" />
-      <source>Qt5 Documentation</source>
-      <translation type="unfinished">Qt4 dokumentace {5 ?}</translation>
+      <source>Python 3 Documentation</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="447" />
-      <source>Qt6 Documentation</source>
-      <translation type="unfinished">Qt4 dokumentace {6 ?}</translation>
+      <source>Qt5 Documentation</source>
+      <translation type="unfinished">Qt4 dokumentace {5 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
-      <source>PyQt5 Documentation</source>
-      <translation type="unfinished">PyQt4 dokumentace {5 ?}</translation>
+      <source>Qt6 Documentation</source>
+      <translation type="unfinished">Qt4 dokumentace {6 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
-      <source>PyQt6 Documentation</source>
-      <translation type="unfinished">PyQt4 dokumentace {6 ?}</translation>
+      <source>PyQt5 Documentation</source>
+      <translation type="unfinished">PyQt4 dokumentace {5 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
+      <source>PyQt6 Documentation</source>
+      <translation type="unfinished">PyQt4 dokumentace {6 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
+      <source>PySide2 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="452" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="508" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="509" />
       <source>Open HTML File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="510" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="511" />
       <source>HTML Files (*.htm *.html);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="697" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="698" />
       <source>Help Engine</source>
       <translation type="unfinished">Engine nápovědy</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="721" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="722" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished">Vyhledat dokumentaci...</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="732" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="733" />
       <source>eric Help Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="757" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="758" />
       <source>Manage QtHelp Documents</source>
       <translation type="unfinished">Uspořádat dokumenty QtNápovědy</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="760" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="761" />
       <source>Reindex Documentation</source>
       <translation type="unfinished">Znovu indexovat dokumentaci</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="765" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="766" />
       <source>Configure Help Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="858" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="838" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="859" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="839" />
       <source>Clear History</source>
       <translation type="unfinished">Vyčistit historii</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="961" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="962" />
       <source>Updating search index</source>
       <translation type="unfinished">Aktualizovat index pro hledání</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1019" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1020" />
       <source>Filtered by: </source>
       <translation type="unfinished">Filtrováno: </translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1055" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1050" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1056" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1051" />
       <source>Unfiltered</source>
       <translation type="unfinished">Nefiltrováno</translation>
     </message>
@@ -41963,22 +41963,22 @@
   <context>
     <name>Histedit</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="76" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="75" />
       <source>Starting histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="104" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="102" />
       <source>Continue histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="131" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="129" />
       <source>Abort histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="159" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="157" />
       <source>Edit Plan</source>
       <translation type="unfinished" />
     </message>
@@ -50106,17 +50106,17 @@
   <context>
     <name>LogViewerPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="36" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="33" />
       <source>&lt;b&gt;Message Filters for Standard Output&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stdout.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="43" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="40" />
       <source>&lt;b&gt;Message Filters for Standard Error &lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stderr.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="50" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="47" />
       <source>&lt;b&gt;Message Filters for both&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stdout or stderr.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -51674,8 +51674,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="364" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="347" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="361" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="344" />
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.ui" line="0" />
       <source>Press to show the password</source>
@@ -51959,66 +51959,66 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="56" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="53" />
       <source>Automatic</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="55" />
+      <source>Light</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="58" />
-      <source>Light</source>
+      <source>Dark</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="61" />
-      <source>Dark</source>
+      <source>Blue Cerulean</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="64" />
-      <source>Blue Cerulean</source>
+      <source>Brown Sand</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="67" />
-      <source>Brown Sand</source>
+      <source>Blue NCS</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="70" />
-      <source>Blue NCS</source>
+      <source>High Contrast</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="73" />
-      <source>High Contrast</source>
+      <source>Blue Icy</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="76" />
-      <source>Blue Icy</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="79" />
       <source>Qt</source>
       <translation type="unfinished">Qt</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="90" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="88" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="85" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="82" />
+      <source>All Files (*)</source>
+      <translation type="unfinished">Všechny soubory (*)</translation>
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="93" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="91" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="88" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="85" />
-      <source>All Files (*)</source>
-      <translation type="unfinished">Všechny soubory (*)</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="96" />
       <source>open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="360" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="343" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="357" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="340" />
       <source>Press to hide the password</source>
       <translation type="unfinished" />
     </message>
@@ -58267,62 +58267,62 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="44" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="42" />
       <source>Enter requirements file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="47" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="45" />
       <source>Press to select the requirements file through a file selection dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="50" />
+      <source>Text Files (*.txt);;All Files (*)</source>
+      <translation type="unfinished">Textové soubory (*.txt);;Všechny soubory (*)</translation>
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="52" />
-      <source>Text Files (*.txt);;All Files (*)</source>
-      <translation type="unfinished">Textové soubory (*.txt);;Všechny soubory (*)</translation>
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="54" />
       <source>Enter 'pyproject.toml' file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="57" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="55" />
       <source>Press to select the 'pyproject.toml' file through a file selection dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="60" />
+      <source>TOML Files (*.toml);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="62" />
-      <source>TOML Files (*.toml);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="64" />
       <source>Enter package file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="67" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="65" />
       <source>Press to select the package file through a file selection dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="73" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="71" />
       <source>Python Wheel (*.whl);;Archive Files (*.tar.gz *.zip);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="80" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="78" />
       <source>Enter file name:</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="81" />
+      <source>Press to select a file through a file selection dialog.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="83" />
-      <source>Press to select a file through a file selection dialog.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="85" />
       <source>All Files (*)</source>
       <translation type="unfinished">Všechny soubory (*)</translation>
     </message>
@@ -60754,18 +60754,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1901" />
+      <location filename="../Preferences/__init__.py" line="1907" />
       <source>Export Preferences</source>
       <translation>Předvolby exportu</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1930" />
-      <location filename="../Preferences/__init__.py" line="1903" />
+      <location filename="../Preferences/__init__.py" line="1936" />
+      <location filename="../Preferences/__init__.py" line="1909" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1928" />
+      <location filename="../Preferences/__init__.py" line="1934" />
       <source>Import Preferences</source>
       <translation>Předvolby importu</translation>
     </message>
@@ -62442,9 +62442,9 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6752" />
-      <location filename="../Project/Project.py" line="6723" />
-      <location filename="../Project/Project.py" line="6677" />
+      <location filename="../Project/Project.py" line="6746" />
+      <location filename="../Project/Project.py" line="6717" />
+      <location filename="../Project/Project.py" line="6671" />
       <location filename="../Project/Project.py" line="4820" />
       <source>Execute Make</source>
       <translation type="unfinished" />
@@ -62465,7 +62465,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6729" />
+      <location filename="../Project/Project.py" line="6723" />
       <location filename="../Project/Project.py" line="4839" />
       <source>Test for Changes</source>
       <translation type="unfinished" />
@@ -63000,37 +63000,37 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6678" />
+      <location filename="../Project/Project.py" line="6672" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6724" />
+      <location filename="../Project/Project.py" line="6718" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6732" />
+      <location filename="../Project/Project.py" line="6726" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6737" />
+      <location filename="../Project/Project.py" line="6731" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6753" />
+      <location filename="../Project/Project.py" line="6747" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7172" />
+      <location filename="../Project/Project.py" line="7166" />
       <source>Interpreter Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7173" />
+      <location filename="../Project/Project.py" line="7167" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation type="unfinished" />
     </message>
@@ -73991,7 +73991,7 @@
       <translation type="unfinished">Zobrazit zdroj</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2178" />
+      <location filename="../QScintilla/Shell.py" line="2179" />
       <location filename="../QScintilla/Shell.py" line="1907" />
       <location filename="../QScintilla/Shell.py" line="1906" />
       <location filename="../QScintilla/Shell.py" line="401" />
@@ -74120,59 +74120,59 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2329" />
+      <location filename="../QScintilla/Shell.py" line="2330" />
       <source>Drop Error</source>
       <translation>Zahodit chybu</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2330" />
+      <location filename="../QScintilla/Shell.py" line="2331" />
       <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="../QScintilla/Shell.py" line="2576" />
-      <location filename="../QScintilla/Shell.py" line="2562" />
-      <location filename="../QScintilla/Shell.py" line="2541" />
-      <source>Save Shell Contents</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="2543" />
-      <source>Text Files (*.txt);;All Files (*)</source>
-      <translation type="unfinished">Textové soubory (*.txt);;Všechny soubory (*)</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="2563" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-      <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Shell.py" line="2577" />
+      <location filename="../QScintilla/Shell.py" line="2563" />
+      <location filename="../QScintilla/Shell.py" line="2542" />
+      <source>Save Shell Contents</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2544" />
+      <source>Text Files (*.txt);;All Files (*)</source>
+      <translation type="unfinished">Textové soubory (*.txt);;Všechny soubory (*)</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2564" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2578" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; nelze uložit.&lt;br /&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2591" />
+      <location filename="../QScintilla/Shell.py" line="2592" />
       <source>&lt;tr&gt;&lt;td&gt;%restart&lt;/td&gt;&lt;td&gt;Kill the shell and start a new one.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%clear&lt;/td&gt;&lt;td&gt;Clear the display of the shell window.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%start [environment]&lt;/td&gt;&lt;td&gt;Start a shell for a virtual environment with the given name. If no name is given, a default shell is started.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%envs&lt;br/&gt;%environments&lt;/td&gt;&lt;td&gt;Show a list of known virtual environment names.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%which&lt;/td&gt;&lt;td&gt;Show the name of the active virtual environment.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%hist [n]&lt;br/&gt;%history [n]&lt;/td&gt;&lt;td&gt;Show the most recent 'n' entries of the history. If 'n' is not given, show all entries.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%shist&lt;br/&gt;%shistory&lt;br/&gt;%select_history&lt;/td&gt;&lt;td&gt;Select a command from the history.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%chist&lt;br/&gt;%chistory&lt;br/&gt;%clear_history&lt;/td&gt;&lt;td&gt;Clear the current history after confirmation.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%help&lt;/td&gt;&lt;td&gt;Show this help text.&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2613" />
+      <location filename="../QScintilla/Shell.py" line="2614" />
       <source>&lt;tr&gt;&lt;td&gt;%quit&lt;br/&gt;%quit()&lt;br/&gt;%exit&lt;br/&gt;%exit()&lt;/td&gt;&lt;td&gt;Exit the application.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;These commands are available through the window menus as well.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2621" />
+      <location filename="../QScintilla/Shell.py" line="2622" />
       <source>&lt;/table&gt;&lt;p&gt;These commands are available through the context menu as well.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2628" />
-      <source>Shell Special Commands</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/Shell.py" line="2629" />
+      <source>Shell Special Commands</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2630" />
       <source>The shell supports these special commands:</source>
       <translation type="unfinished" />
     </message>
@@ -89901,2546 +89901,2566 @@
   <context>
     <name>UserInterface</name>
     <message>
-      <location filename="../UI/UserInterface.py" line="308" />
+      <location filename="../UI/UserInterface.py" line="314" />
       <source>Initializing Basic Services...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="343" />
+      <location filename="../UI/UserInterface.py" line="349" />
       <source>Initializing Plugin Manager...</source>
       <translation>Inicializace Plugin manažera...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="350" />
+      <location filename="../UI/UserInterface.py" line="356" />
       <source>Generating Main User Interface...</source>
       <translation>Generování hlavního uživatelského rozhraní...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="408" />
+      <location filename="../UI/UserInterface.py" line="414" />
       <source>Setting up signal/slot-connections...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="602" />
+      <location filename="../UI/UserInterface.py" line="607" />
       <source>Initializing Tools...</source>
       <translation>Inicializace nástrojů...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="613" />
+      <location filename="../UI/UserInterface.py" line="618" />
       <source>Registering Objects...</source>
       <translation>Registrování objektů...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="647" />
+      <location filename="../UI/UserInterface.py" line="652" />
       <source>Initializing Actions...</source>
       <translation>Inicializace akcí...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="649" />
+      <location filename="../UI/UserInterface.py" line="654" />
       <source>Initializing Menus...</source>
       <translation>Inicializace menu...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="651" />
+      <location filename="../UI/UserInterface.py" line="656" />
       <source>Initializing Toolbars...</source>
       <translation>Inicializace nástrojových lišt...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="653" />
+      <location filename="../UI/UserInterface.py" line="658" />
       <source>Initializing Statusbar...</source>
       <translation>Inicializace statusbaru...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="680" />
+      <location filename="../UI/UserInterface.py" line="685" />
       <source>Initializing Single Application Server...</source>
       <translation>Inicializace jednouživatelského aplikačního serveru...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="686" />
-      <source>Initializing Plugins...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="689" />
-      <source>Activating Plugins...</source>
-      <translation>Aktivace pluginů...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="691" />
-      <source>Generating Plugins Toolbars...</source>
+      <source>Initializing Plugins...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="694" />
+      <source>Activating Plugins...</source>
+      <translation>Aktivace pluginů...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="696" />
+      <source>Generating Plugins Toolbars...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="699" />
       <source>Cleaning Plugins Download Area...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="704" />
+      <location filename="../UI/UserInterface.py" line="709" />
       <source>Restoring Toolbarmanager...</source>
       <translation>Obnovit manažer nástrojových lišt...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="712" />
+      <location filename="../UI/UserInterface.py" line="717" />
       <source>Setting View Profile...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="725" />
-      <source>Reading Tasks...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="730" />
-      <source>Reading Templates...</source>
+      <source>Reading Tasks...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="735" />
+      <source>Reading Templates...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="740" />
       <source>Starting Debugger...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2195" />
-      <location filename="../UI/UserInterface.py" line="1086" />
+      <location filename="../UI/UserInterface.py" line="2200" />
+      <location filename="../UI/UserInterface.py" line="1091" />
       <source>Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2241" />
-      <location filename="../UI/UserInterface.py" line="1096" />
+      <location filename="../UI/UserInterface.py" line="2246" />
+      <location filename="../UI/UserInterface.py" line="1101" />
       <source>Horizontal Toolbox</source>
       <translation>Vodorovná nástrojová lišta</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2218" />
-      <location filename="../UI/UserInterface.py" line="1107" />
+      <location filename="../UI/UserInterface.py" line="2223" />
+      <location filename="../UI/UserInterface.py" line="1112" />
       <source>Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2037" />
-      <location filename="../UI/UserInterface.py" line="1301" />
-      <location filename="../UI/UserInterface.py" line="1117" />
+      <location filename="../UI/UserInterface.py" line="2042" />
+      <location filename="../UI/UserInterface.py" line="1306" />
+      <location filename="../UI/UserInterface.py" line="1122" />
       <source>Multiproject-Viewer</source>
       <translation>Prohlížeč multiprojektu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2015" />
-      <location filename="../UI/UserInterface.py" line="1307" />
-      <location filename="../UI/UserInterface.py" line="1123" />
+      <location filename="../UI/UserInterface.py" line="2020" />
+      <location filename="../UI/UserInterface.py" line="1312" />
+      <location filename="../UI/UserInterface.py" line="1128" />
       <source>Project-Viewer</source>
       <translation>Prohlížeč projektu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2577" />
-      <location filename="../UI/UserInterface.py" line="2576" />
-      <location filename="../UI/UserInterface.py" line="1314" />
-      <location filename="../UI/UserInterface.py" line="1130" />
+      <location filename="../UI/UserInterface.py" line="2582" />
+      <location filename="../UI/UserInterface.py" line="2581" />
+      <location filename="../UI/UserInterface.py" line="1319" />
+      <location filename="../UI/UserInterface.py" line="1135" />
       <source>Find/Replace In Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2600" />
-      <location filename="../UI/UserInterface.py" line="2599" />
-      <location filename="../UI/UserInterface.py" line="1321" />
-      <location filename="../UI/UserInterface.py" line="1137" />
+      <location filename="../UI/UserInterface.py" line="2605" />
+      <location filename="../UI/UserInterface.py" line="2604" />
+      <location filename="../UI/UserInterface.py" line="1326" />
+      <location filename="../UI/UserInterface.py" line="1142" />
       <source>Find File</source>
       <translation type="unfinished">Hledat soubor</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1327" />
-      <location filename="../UI/UserInterface.py" line="1143" />
+      <location filename="../UI/UserInterface.py" line="1332" />
+      <location filename="../UI/UserInterface.py" line="1148" />
       <source>VCS Status</source>
       <translation type="unfinished">VCS Status</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2170" />
-      <location filename="../UI/UserInterface.py" line="1334" />
-      <location filename="../UI/UserInterface.py" line="1150" />
+      <location filename="../UI/UserInterface.py" line="2175" />
+      <location filename="../UI/UserInterface.py" line="1339" />
+      <location filename="../UI/UserInterface.py" line="1155" />
       <source>Template-Viewer</source>
       <translation>Prohlížeč šablon</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2103" />
-      <location filename="../UI/UserInterface.py" line="1341" />
-      <location filename="../UI/UserInterface.py" line="1157" />
+      <location filename="../UI/UserInterface.py" line="2108" />
+      <location filename="../UI/UserInterface.py" line="1346" />
+      <location filename="../UI/UserInterface.py" line="1162" />
       <source>File-Browser</source>
       <translation>Browser souborů</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1348" />
-      <location filename="../UI/UserInterface.py" line="1164" />
+      <location filename="../UI/UserInterface.py" line="1353" />
+      <location filename="../UI/UserInterface.py" line="1169" />
       <source>Symbols</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2059" />
-      <location filename="../UI/UserInterface.py" line="1370" />
-      <location filename="../UI/UserInterface.py" line="1364" />
-      <location filename="../UI/UserInterface.py" line="1174" />
+      <location filename="../UI/UserInterface.py" line="2064" />
+      <location filename="../UI/UserInterface.py" line="1375" />
+      <location filename="../UI/UserInterface.py" line="1369" />
+      <location filename="../UI/UserInterface.py" line="1179" />
       <source>Debug-Viewer</source>
       <translation>Prohlížeč debugeru</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2431" />
-      <location filename="../UI/UserInterface.py" line="2430" />
-      <location filename="../UI/UserInterface.py" line="1377" />
-      <location filename="../UI/UserInterface.py" line="1181" />
+      <location filename="../UI/UserInterface.py" line="2436" />
+      <location filename="../UI/UserInterface.py" line="2435" />
+      <location filename="../UI/UserInterface.py" line="1382" />
+      <location filename="../UI/UserInterface.py" line="1186" />
       <source>Code Documentation Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2646" />
-      <location filename="../UI/UserInterface.py" line="2645" />
-      <location filename="../UI/UserInterface.py" line="1384" />
-      <location filename="../UI/UserInterface.py" line="1188" />
+      <location filename="../UI/UserInterface.py" line="2651" />
+      <location filename="../UI/UserInterface.py" line="2650" />
+      <location filename="../UI/UserInterface.py" line="1389" />
+      <location filename="../UI/UserInterface.py" line="1193" />
       <source>Help Viewer</source>
       <translation type="unfinished">Prohlížeč nápovědy</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3550" />
-      <location filename="../UI/UserInterface.py" line="2526" />
-      <location filename="../UI/UserInterface.py" line="2525" />
-      <location filename="../UI/UserInterface.py" line="1390" />
-      <location filename="../UI/UserInterface.py" line="1194" />
+      <location filename="../UI/UserInterface.py" line="3575" />
+      <location filename="../UI/UserInterface.py" line="2531" />
+      <location filename="../UI/UserInterface.py" line="2530" />
+      <location filename="../UI/UserInterface.py" line="1395" />
+      <location filename="../UI/UserInterface.py" line="1199" />
       <source>Plugin Repository</source>
       <translation>Repozitář pluginů</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2550" />
-      <location filename="../UI/UserInterface.py" line="2549" />
-      <location filename="../UI/UserInterface.py" line="1396" />
-      <location filename="../UI/UserInterface.py" line="1200" />
-      <source>Virtual Environments</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2458" />
-      <location filename="../UI/UserInterface.py" line="2457" />
+      <location filename="../UI/UserInterface.py" line="2555" />
+      <location filename="../UI/UserInterface.py" line="2554" />
       <location filename="../UI/UserInterface.py" line="1401" />
       <location filename="../UI/UserInterface.py" line="1205" />
+      <source>Virtual Environments</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2463" />
+      <location filename="../UI/UserInterface.py" line="2462" />
+      <location filename="../UI/UserInterface.py" line="1406" />
+      <location filename="../UI/UserInterface.py" line="1210" />
       <source>PyPI</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2480" />
-      <location filename="../UI/UserInterface.py" line="2479" />
-      <location filename="../UI/UserInterface.py" line="1408" />
-      <location filename="../UI/UserInterface.py" line="1210" />
+      <location filename="../UI/UserInterface.py" line="2485" />
+      <location filename="../UI/UserInterface.py" line="2484" />
+      <location filename="../UI/UserInterface.py" line="1413" />
+      <location filename="../UI/UserInterface.py" line="1215" />
       <source>Conda</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1415" />
-      <location filename="../UI/UserInterface.py" line="1217" />
+      <location filename="../UI/UserInterface.py" line="1420" />
+      <location filename="../UI/UserInterface.py" line="1222" />
       <source>Cooperation</source>
       <translation>Spolupráce</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2358" />
-      <location filename="../UI/UserInterface.py" line="1419" />
-      <location filename="../UI/UserInterface.py" line="1222" />
+      <location filename="../UI/UserInterface.py" line="2363" />
+      <location filename="../UI/UserInterface.py" line="1424" />
+      <location filename="../UI/UserInterface.py" line="1227" />
       <source>IRC</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2502" />
-      <location filename="../UI/UserInterface.py" line="2501" />
-      <location filename="../UI/UserInterface.py" line="1425" />
-      <location filename="../UI/UserInterface.py" line="1229" />
+      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="2506" />
+      <location filename="../UI/UserInterface.py" line="1430" />
+      <location filename="../UI/UserInterface.py" line="1234" />
       <source>MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2081" />
-      <location filename="../UI/UserInterface.py" line="1433" />
-      <location filename="../UI/UserInterface.py" line="1237" />
+      <location filename="../UI/UserInterface.py" line="2086" />
+      <location filename="../UI/UserInterface.py" line="1438" />
+      <location filename="../UI/UserInterface.py" line="1242" />
       <source>Shell</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2147" />
-      <location filename="../UI/UserInterface.py" line="1439" />
-      <location filename="../UI/UserInterface.py" line="1241" />
+      <location filename="../UI/UserInterface.py" line="2152" />
+      <location filename="../UI/UserInterface.py" line="1444" />
+      <location filename="../UI/UserInterface.py" line="1246" />
       <source>Task-Viewer</source>
       <translation>Prohlížeč úloh</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2125" />
-      <location filename="../UI/UserInterface.py" line="1445" />
-      <location filename="../UI/UserInterface.py" line="1245" />
+      <location filename="../UI/UserInterface.py" line="2130" />
+      <location filename="../UI/UserInterface.py" line="1450" />
+      <location filename="../UI/UserInterface.py" line="1250" />
       <source>Log-Viewer</source>
       <translation>Prohlížeč logu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1452" />
-      <location filename="../UI/UserInterface.py" line="1252" />
+      <location filename="../UI/UserInterface.py" line="1457" />
+      <location filename="../UI/UserInterface.py" line="1257" />
       <source>Numbers</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1827" />
+      <location filename="../UI/UserInterface.py" line="1832" />
       <source>{0} - Passive Mode</source>
       <translation>{0} - Pasivní mód</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1836" />
-      <location filename="../UI/UserInterface.py" line="1830" />
+      <location filename="../UI/UserInterface.py" line="1841" />
+      <location filename="../UI/UserInterface.py" line="1835" />
       <source>{0} - {1} - Passive Mode</source>
       <translation>{0} - {1} - pasivní mód</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1842" />
+      <location filename="../UI/UserInterface.py" line="1847" />
       <source>{0} - {1} - {2} - Passive Mode</source>
       <translation>{0} - {1} - {2} - pasivní mód</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1868" />
+      <location filename="../UI/UserInterface.py" line="1873" />
       <source>Quit</source>
       <translation>Konec</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1870" />
+      <location filename="../UI/UserInterface.py" line="1875" />
       <source>&amp;Quit</source>
       <translation>&amp;Konec</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1871" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1876" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1881" />
       <source>Quit the IDE</source>
       <translation>Ukončit IDE</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1878" />
+      <location filename="../UI/UserInterface.py" line="1883" />
       <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="1892" />
-      <location filename="../UI/UserInterface.py" line="1890" />
+      <location filename="../UI/UserInterface.py" line="1897" />
+      <location filename="../UI/UserInterface.py" line="1895" />
       <source>Restart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1893" />
-      <source>Ctrl+Shift+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1898" />
+      <source>Ctrl+Shift+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1903" />
       <source>Restart the IDE</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1900" />
+      <location filename="../UI/UserInterface.py" line="1905" />
       <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1918" />
-      <location filename="../UI/UserInterface.py" line="1911" />
+      <location filename="../UI/UserInterface.py" line="1923" />
+      <location filename="../UI/UserInterface.py" line="1916" />
       <source>Save session</source>
       <translation>Uložit relaci</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1912" />
+      <location filename="../UI/UserInterface.py" line="1917" />
       <source>Save session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1920" />
+      <location filename="../UI/UserInterface.py" line="1925" />
       <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7729" />
-      <location filename="../UI/UserInterface.py" line="1937" />
-      <location filename="../UI/UserInterface.py" line="1930" />
+      <location filename="../UI/UserInterface.py" line="7767" />
+      <location filename="../UI/UserInterface.py" line="1942" />
+      <location filename="../UI/UserInterface.py" line="1935" />
       <source>Load session</source>
       <translation type="unfinished">Načíst relaci</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1931" />
+      <location filename="../UI/UserInterface.py" line="1936" />
       <source>Load session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1939" />
+      <location filename="../UI/UserInterface.py" line="1944" />
       <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1949" />
+      <location filename="../UI/UserInterface.py" line="1954" />
       <source>New Window</source>
       <translation type="unfinished">Nové okno</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1951" />
+      <location filename="../UI/UserInterface.py" line="1956" />
       <source>New &amp;Window</source>
       <translation type="unfinished">&amp;Nové okno</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1952" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1957" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1962" />
       <source>Open a new eric instance</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1959" />
+      <location filename="../UI/UserInterface.py" line="1964" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1973" />
-      <location filename="../UI/UserInterface.py" line="1971" />
+      <location filename="../UI/UserInterface.py" line="1978" />
+      <location filename="../UI/UserInterface.py" line="1976" />
       <source>Edit Profile</source>
       <translation>Editační profil</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1980" />
+      <location filename="../UI/UserInterface.py" line="1985" />
       <source>Activate the edit view profile</source>
       <translation>Aktivovat profil editace</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1982" />
+      <location filename="../UI/UserInterface.py" line="1987" />
       <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Editační profil&lt;/b&gt;&lt;p&gt;Aktivování skupiny 'Editační profil'. Okna, která se v tomto profilu zobrazí lze nastavit v dialogu 'Konfigurace profilu pohledů'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1995" />
-      <location filename="../UI/UserInterface.py" line="1993" />
+      <location filename="../UI/UserInterface.py" line="2000" />
+      <location filename="../UI/UserInterface.py" line="1998" />
       <source>Debug Profile</source>
       <translation>Debugovací profil</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2002" />
+      <location filename="../UI/UserInterface.py" line="2007" />
       <source>Activate the debug view profile</source>
       <translation>Aktivovat debugovací profil</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2004" />
+      <location filename="../UI/UserInterface.py" line="2009" />
       <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Debugovací profil&lt;/b&gt;&lt;p&gt;Aktivování skupiny 'Debugovací profil'. Okna, která se v tomto profilu zobrazí lze nastavit v dialogu 'Konfigurace profilu pohledů'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2016" />
+      <location filename="../UI/UserInterface.py" line="2021" />
       <source>&amp;Project-Viewer</source>
       <translation>Prohlížeč &amp;projektu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2017" />
+      <location filename="../UI/UserInterface.py" line="2022" />
       <source>Alt+Shift+P</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2023" />
+      <location filename="../UI/UserInterface.py" line="2028" />
       <source>Switch the input focus to the Project-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2026" />
+      <location filename="../UI/UserInterface.py" line="2031" />
       <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2038" />
+      <location filename="../UI/UserInterface.py" line="2043" />
       <source>&amp;Multiproject-Viewer</source>
       <translation>Prohlížeč &amp;multiprojektu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2039" />
+      <location filename="../UI/UserInterface.py" line="2044" />
       <source>Alt+Shift+M</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2045" />
+      <location filename="../UI/UserInterface.py" line="2050" />
       <source>Switch the input focus to the Multiproject-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2048" />
+      <location filename="../UI/UserInterface.py" line="2053" />
       <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2060" />
+      <location filename="../UI/UserInterface.py" line="2065" />
       <source>&amp;Debug-Viewer</source>
       <translation>Prohlížeč &amp;debugeru</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2061" />
+      <location filename="../UI/UserInterface.py" line="2066" />
       <source>Alt+Shift+D</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2067" />
+      <location filename="../UI/UserInterface.py" line="2072" />
       <source>Switch the input focus to the Debug-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2070" />
+      <location filename="../UI/UserInterface.py" line="2075" />
       <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2082" />
+      <location filename="../UI/UserInterface.py" line="2087" />
       <source>&amp;Shell</source>
       <translation>&amp;Shell</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2083" />
+      <location filename="../UI/UserInterface.py" line="2088" />
       <source>Alt+Shift+S</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2089" />
+      <location filename="../UI/UserInterface.py" line="2094" />
       <source>Switch the input focus to the Shell window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2092" />
+      <location filename="../UI/UserInterface.py" line="2097" />
       <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2104" />
+      <location filename="../UI/UserInterface.py" line="2109" />
       <source>&amp;File-Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2105" />
+      <location filename="../UI/UserInterface.py" line="2110" />
       <source>Alt+Shift+F</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2111" />
+      <location filename="../UI/UserInterface.py" line="2116" />
       <source>Switch the input focus to the File-Browser window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2114" />
+      <location filename="../UI/UserInterface.py" line="2119" />
       <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2126" />
+      <location filename="../UI/UserInterface.py" line="2131" />
       <source>Lo&amp;g-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2127" />
+      <location filename="../UI/UserInterface.py" line="2132" />
       <source>Alt+Shift+G</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2133" />
+      <location filename="../UI/UserInterface.py" line="2138" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2136" />
+      <location filename="../UI/UserInterface.py" line="2141" />
       <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2148" />
+      <location filename="../UI/UserInterface.py" line="2153" />
       <source>&amp;Task-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2149" />
+      <location filename="../UI/UserInterface.py" line="2154" />
       <source>Alt+Shift+T</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2155" />
+      <location filename="../UI/UserInterface.py" line="2160" />
       <source>Switch the input focus to the Task-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2158" />
+      <location filename="../UI/UserInterface.py" line="2163" />
       <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2171" />
+      <location filename="../UI/UserInterface.py" line="2176" />
       <source>Templ&amp;ate-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2172" />
+      <location filename="../UI/UserInterface.py" line="2177" />
       <source>Alt+Shift+A</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2178" />
+      <location filename="../UI/UserInterface.py" line="2183" />
       <source>Switch the input focus to the Template-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2181" />
+      <location filename="../UI/UserInterface.py" line="2186" />
       <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2196" />
+      <location filename="../UI/UserInterface.py" line="2201" />
       <source>&amp;Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2203" />
+      <location filename="../UI/UserInterface.py" line="2208" />
       <source>Toggle the Left Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2205" />
+      <location filename="../UI/UserInterface.py" line="2210" />
       <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2219" />
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&amp;Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2226" />
+      <location filename="../UI/UserInterface.py" line="2231" />
       <source>Toggle the Right Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2228" />
+      <location filename="../UI/UserInterface.py" line="2233" />
       <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2242" />
+      <location filename="../UI/UserInterface.py" line="2247" />
       <source>&amp;Horizontal Toolbox</source>
       <translation>&amp;Horizontální lista nástrojů</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2249" />
+      <location filename="../UI/UserInterface.py" line="2254" />
       <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="2251" />
+      <location filename="../UI/UserInterface.py" line="2256" />
       <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="2264" />
+      <location filename="../UI/UserInterface.py" line="2269" />
       <source>Left Sidebar</source>
       <translation>Levé menu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2265" />
+      <location filename="../UI/UserInterface.py" line="2270" />
       <source>&amp;Left Sidebar</source>
       <translation>&amp;Levé menu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2272" />
+      <location filename="../UI/UserInterface.py" line="2277" />
       <source>Toggle the left sidebar window</source>
       <translation>Přepnout okno levého menu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2274" />
+      <location filename="../UI/UserInterface.py" line="2279" />
       <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="2287" />
+      <location filename="../UI/UserInterface.py" line="2292" />
       <source>Right Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2288" />
+      <location filename="../UI/UserInterface.py" line="2293" />
       <source>&amp;Right Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2295" />
+      <location filename="../UI/UserInterface.py" line="2300" />
       <source>Toggle the right sidebar window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2297" />
+      <location filename="../UI/UserInterface.py" line="2302" />
       <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2310" />
+      <location filename="../UI/UserInterface.py" line="2315" />
       <source>Bottom Sidebar</source>
       <translation>Dolní menu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2311" />
+      <location filename="../UI/UserInterface.py" line="2316" />
       <source>&amp;Bottom Sidebar</source>
       <translation>&amp;Dolní menu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2318" />
+      <location filename="../UI/UserInterface.py" line="2323" />
       <source>Toggle the bottom sidebar window</source>
       <translation>Přepnout okno dolního menu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2320" />
+      <location filename="../UI/UserInterface.py" line="2325" />
       <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="2333" />
+      <location filename="../UI/UserInterface.py" line="2338" />
       <source>Cooperation-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2334" />
+      <location filename="../UI/UserInterface.py" line="2339" />
       <source>Co&amp;operation-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2335" />
+      <location filename="../UI/UserInterface.py" line="2340" />
       <source>Alt+Shift+O</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2341" />
+      <location filename="../UI/UserInterface.py" line="2346" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2344" />
+      <location filename="../UI/UserInterface.py" line="2349" />
       <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2359" />
+      <location filename="../UI/UserInterface.py" line="2364" />
       <source>&amp;IRC</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2360" />
+      <location filename="../UI/UserInterface.py" line="2365" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2366" />
+      <location filename="../UI/UserInterface.py" line="2371" />
       <source>Switch the input focus to the IRC window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2369" />
+      <location filename="../UI/UserInterface.py" line="2374" />
       <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2380" />
+      <location filename="../UI/UserInterface.py" line="2385" />
       <source>Symbols-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2381" />
+      <location filename="../UI/UserInterface.py" line="2386" />
       <source>S&amp;ymbols-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2382" />
+      <location filename="../UI/UserInterface.py" line="2387" />
       <source>Alt+Shift+Y</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2388" />
+      <location filename="../UI/UserInterface.py" line="2393" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2391" />
+      <location filename="../UI/UserInterface.py" line="2396" />
       <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2405" />
+      <location filename="../UI/UserInterface.py" line="2410" />
       <source>Numbers-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2406" />
+      <location filename="../UI/UserInterface.py" line="2411" />
       <source>Num&amp;bers-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2407" />
+      <location filename="../UI/UserInterface.py" line="2412" />
       <source>Alt+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2413" />
+      <location filename="../UI/UserInterface.py" line="2418" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2416" />
+      <location filename="../UI/UserInterface.py" line="2421" />
       <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2432" />
+      <location filename="../UI/UserInterface.py" line="2437" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2438" />
-      <source>Switch the input focus to the Code Documentation Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2443" />
+      <source>Switch the input focus to the Code Documentation Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2448" />
       <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2459" />
+      <location filename="../UI/UserInterface.py" line="2464" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2465" />
+      <location filename="../UI/UserInterface.py" line="2470" />
       <source>Switch the input focus to the PyPI window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2468" />
+      <location filename="../UI/UserInterface.py" line="2473" />
       <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2481" />
+      <location filename="../UI/UserInterface.py" line="2486" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2487" />
+      <location filename="../UI/UserInterface.py" line="2492" />
       <source>Switch the input focus to the Conda window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2490" />
+      <location filename="../UI/UserInterface.py" line="2495" />
       <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2503" />
+      <location filename="../UI/UserInterface.py" line="2508" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2509" />
+      <location filename="../UI/UserInterface.py" line="2514" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2512" />
+      <location filename="../UI/UserInterface.py" line="2517" />
       <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2527" />
+      <location filename="../UI/UserInterface.py" line="2532" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2533" />
+      <location filename="../UI/UserInterface.py" line="2538" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2536" />
+      <location filename="../UI/UserInterface.py" line="2541" />
       <source>&lt;b&gt;Plugin Repository&lt;/b&gt;&lt;p&gt;This switches the input focus to the Plugin Repository window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2551" />
+      <location filename="../UI/UserInterface.py" line="2556" />
       <source>Ctrl+Alt+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2557" />
-      <source>Switch the input focus to the Virtual Environments Manager window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2562" />
+      <source>Switch the input focus to the Virtual Environments Manager window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2567" />
       <source>&lt;b&gt;Virtual Environments&lt;/b&gt;&lt;p&gt;This switches the input focus to the Virtual Environments Manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2578" />
+      <location filename="../UI/UserInterface.py" line="2583" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2584" />
+      <location filename="../UI/UserInterface.py" line="2589" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2587" />
+      <location filename="../UI/UserInterface.py" line="2592" />
       <source>&lt;b&gt;Find/Replace In Files&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find/Replace In Files window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2601" />
+      <location filename="../UI/UserInterface.py" line="2606" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2607" />
+      <location filename="../UI/UserInterface.py" line="2612" />
       <source>Switch the input focus to the Find File window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2610" />
+      <location filename="../UI/UserInterface.py" line="2615" />
       <source>&lt;b&gt;Find File&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find File window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2624" />
-      <location filename="../UI/UserInterface.py" line="2623" />
+      <location filename="../UI/UserInterface.py" line="2629" />
+      <location filename="../UI/UserInterface.py" line="2628" />
       <source>VCS Status List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2625" />
+      <location filename="../UI/UserInterface.py" line="2630" />
       <source>Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2631" />
+      <location filename="../UI/UserInterface.py" line="2636" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2634" />
+      <location filename="../UI/UserInterface.py" line="2639" />
       <source>&lt;b&gt;VCS Status List&lt;/b&gt;&lt;p&gt;This switches the input focus to the VCS Status List window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2647" />
+      <location filename="../UI/UserInterface.py" line="2652" />
       <source>Alt+Shift+H</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2653" />
+      <location filename="../UI/UserInterface.py" line="2658" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2656" />
+      <location filename="../UI/UserInterface.py" line="2661" />
       <source>&lt;b&gt;Help Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2669" />
+      <location filename="../UI/UserInterface.py" line="2674" />
       <source>What's This?</source>
       <translation>Co je to?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2671" />
+      <location filename="../UI/UserInterface.py" line="2676" />
       <source>&amp;What's This?</source>
       <translation>&amp;Co je to?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2672" />
-      <source>Shift+F1</source>
-      <translation />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2677" />
+      <source>Shift+F1</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2682" />
       <source>Context sensitive help</source>
       <translation>Kontextově senzitivní nápověda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2679" />
+      <location filename="../UI/UserInterface.py" line="2684" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Zobrazit kontextově senzitivní nápovědu&lt;/b&gt;&lt;p&gt;V režimu "Co je to?" se nad různými prvky aplikace u kurzoru zobrazí otazník. Když pak kliknete na tyto prvky, zobrazí se krátký popis co daný prvek znamená a jak jej použít. V dialogových oknech se tato funkce spustí tlačítkem kontextové nápovědy na horní liště.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2692" />
+      <location filename="../UI/UserInterface.py" line="2697" />
       <source>Helpviewer</source>
       <translation>Prohlížeč nápovědy</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2694" />
+      <location filename="../UI/UserInterface.py" line="2699" />
       <source>&amp;Helpviewer...</source>
       <translation>Pro&amp;hlížeč nápovědy...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2695" />
-      <source>F1</source>
-      <translation />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2700" />
+      <source>F1</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2705" />
       <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="2702" />
+      <location filename="../UI/UserInterface.py" line="2707" />
       <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2722" />
+      <location filename="../UI/UserInterface.py" line="2727" />
       <source>Show Versions</source>
       <translation>Zobrazit verze</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2723" />
+      <location filename="../UI/UserInterface.py" line="2728" />
       <source>Show &amp;Versions</source>
       <translation>Zobrazit &amp;verze</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2729" />
+      <location filename="../UI/UserInterface.py" line="2734" />
       <source>Display version information</source>
       <translation>Zobrazit informace o verzích</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2731" />
+      <location filename="../UI/UserInterface.py" line="2736" />
       <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="2744" />
-      <location filename="../UI/UserInterface.py" line="2737" />
+      <location filename="../UI/UserInterface.py" line="2742" />
+      <source>Copy Versions</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2743" />
+      <source>&amp;Copy Versions</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2750" />
+      <source>Copy version information to the clipboard</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2753" />
+      <source>&lt;b&gt;Copy Versions&lt;/b&gt;&lt;p&gt;This generates version information and copies it to the clipboard.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2769" />
+      <location filename="../UI/UserInterface.py" line="2762" />
       <source>Show Error Log</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2738" />
+      <location filename="../UI/UserInterface.py" line="2763" />
       <source>Show Error &amp;Log...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2746" />
+      <location filename="../UI/UserInterface.py" line="2771" />
       <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2755" />
+      <location filename="../UI/UserInterface.py" line="2780" />
       <source>Show Install Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2756" />
+      <location filename="../UI/UserInterface.py" line="2781" />
       <source>Show Install &amp;Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2762" />
+      <location filename="../UI/UserInterface.py" line="2787" />
       <source>Show Installation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2764" />
+      <location filename="../UI/UserInterface.py" line="2789" />
       <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4634" />
-      <location filename="../UI/UserInterface.py" line="2774" />
+      <location filename="../UI/UserInterface.py" line="4672" />
+      <location filename="../UI/UserInterface.py" line="2799" />
       <source>Report Bug</source>
       <translation>Reportovat Bugy</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2774" />
+      <location filename="../UI/UserInterface.py" line="2799" />
       <source>Report &amp;Bug...</source>
       <translation>Reportovat &amp;Bugy...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2776" />
+      <location filename="../UI/UserInterface.py" line="2801" />
       <source>Report a bug</source>
       <translation>Reportovat bug</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2778" />
+      <location filename="../UI/UserInterface.py" line="2803" />
       <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="2784" />
+      <location filename="../UI/UserInterface.py" line="2809" />
       <source>Request Feature</source>
       <translation>Požadavek na vlastnost</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2785" />
+      <location filename="../UI/UserInterface.py" line="2810" />
       <source>Request &amp;Feature...</source>
       <translation>&amp;Požadavek na vlastnost...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2791" />
+      <location filename="../UI/UserInterface.py" line="2816" />
       <source>Send a feature request</source>
       <translation>Poslat požadavek na vlastnost</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2818" />
       <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="4094" />
-      <location filename="../UI/UserInterface.py" line="2804" />
+      <location filename="../UI/UserInterface.py" line="4120" />
+      <location filename="../UI/UserInterface.py" line="2829" />
       <source>Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2806" />
+      <location filename="../UI/UserInterface.py" line="2831" />
       <source>&amp;Testing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2812" />
+      <location filename="../UI/UserInterface.py" line="2837" />
       <source>Start the testing dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2814" />
+      <location filename="../UI/UserInterface.py" line="2839" />
       <source>&lt;b&gt;Testing&lt;/b&gt;&lt;p&gt;Perform test runs. The dialog gives the ability to select and run a test suite or auto discover them.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2825" />
+      <location filename="../UI/UserInterface.py" line="2850" />
       <source>Restart Last Test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2827" />
+      <location filename="../UI/UserInterface.py" line="2852" />
       <source>&amp;Restart Last Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2833" />
+      <location filename="../UI/UserInterface.py" line="2858" />
       <source>Restarts the last test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2835" />
+      <location filename="../UI/UserInterface.py" line="2860" />
       <source>&lt;b&gt;Restart Last Test&lt;/b&gt;&lt;p&gt;Restarts the test performed last.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2845" />
+      <location filename="../UI/UserInterface.py" line="2870" />
       <source>Rerun Failed Tests</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2847" />
+      <location filename="../UI/UserInterface.py" line="2872" />
       <source>Rerun Failed Tests...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2854" />
+      <location filename="../UI/UserInterface.py" line="2879" />
       <source>Rerun failed tests of the last run</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2857" />
+      <location filename="../UI/UserInterface.py" line="2882" />
       <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last test run.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2867" />
-      <source>Test Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2869" />
-      <source>Test &amp;Script...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2875" />
-      <source>Run tests of the current script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2877" />
-      <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2884" />
-      <source>Test Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2886" />
-      <source>Test &amp;Project...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2892" />
-      <source>Run tests of the current project</source>
+      <source>Test Script</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2894" />
-      <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2903" />
-      <source>Qt-Designer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2905" />
-      <source>Qt-&amp;Designer...</source>
+      <source>Test &amp;Script...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2900" />
+      <source>Run tests of the current script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2902" />
+      <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2909" />
+      <source>Test Project</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2911" />
-      <source>Start Qt-Designer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2913" />
-      <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2922" />
-      <source>Qt-Linguist</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2924" />
-      <source>Qt-&amp;Linguist...</source>
+      <source>Test &amp;Project...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2917" />
+      <source>Run tests of the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2919" />
+      <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2928" />
+      <source>Qt-Designer</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2930" />
+      <source>Qt-&amp;Designer...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2936" />
+      <source>Start Qt-Designer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2938" />
+      <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2947" />
+      <source>Qt-Linguist</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2949" />
+      <source>Qt-&amp;Linguist...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2955" />
       <source>Start Qt-Linguist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2932" />
+      <location filename="../UI/UserInterface.py" line="2957" />
       <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2940" />
+      <location filename="../UI/UserInterface.py" line="2965" />
       <source>UI Previewer</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2942" />
+      <location filename="../UI/UserInterface.py" line="2967" />
       <source>&amp;UI Previewer...</source>
       <translation>&amp;UI Previewer...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2948" />
+      <location filename="../UI/UserInterface.py" line="2973" />
       <source>Start the UI Previewer</source>
       <translation>Spustit UI Previewer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2950" />
-      <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="2956" />
-      <source>Translations Previewer</source>
-      <translation>Náhled překladů</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2958" />
-      <source>&amp;Translations Previewer...</source>
-      <translation>Náhled &amp;překladů...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2964" />
-      <source>Start the Translations Previewer</source>
-      <translation>Spustit Previewer překladů</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2966" />
-      <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="2975" />
+      <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="2981" />
+      <source>Translations Previewer</source>
+      <translation>Náhled překladů</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2983" />
+      <source>&amp;Translations Previewer...</source>
+      <translation>Náhled &amp;překladů...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2989" />
+      <source>Start the Translations Previewer</source>
+      <translation>Spustit Previewer překladů</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2991" />
+      <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="3000" />
       <source>Compare Files</source>
       <translation>Porovnat soubory</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
-      <source>&amp;Compare Files...</source>
-      <translation>&amp;Porovnat soubory...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3002" />
-      <location filename="../UI/UserInterface.py" line="2983" />
+      <source>&amp;Compare Files...</source>
+      <translation>&amp;Porovnat soubory...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3027" />
+      <location filename="../UI/UserInterface.py" line="3008" />
       <source>Compare two files</source>
       <translation>Porovnat dva soubory</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2985" />
+      <location filename="../UI/UserInterface.py" line="3010" />
       <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="2994" />
+      <location filename="../UI/UserInterface.py" line="3019" />
       <source>Compare Files side by side</source>
       <translation>Porovnat soubory stranu proti straně</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2996" />
+      <location filename="../UI/UserInterface.py" line="3021" />
       <source>Compare &amp;Files side by side...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3004" />
+      <location filename="../UI/UserInterface.py" line="3029" />
       <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="3014" />
+      <location filename="../UI/UserInterface.py" line="3039" />
       <source>SQL Browser</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3016" />
+      <location filename="../UI/UserInterface.py" line="3041" />
       <source>SQL &amp;Browser...</source>
       <translation>SQL &amp;Browser...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3022" />
+      <location filename="../UI/UserInterface.py" line="3047" />
       <source>Browse a SQL database</source>
       <translation>Procházet SQL databázi</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3024" />
-      <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="3038" />
-      <location filename="../UI/UserInterface.py" line="3030" />
-      <source>Mini Editor</source>
-      <translation />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3032" />
-      <source>Mini &amp;Editor...</source>
-      <translation>Mini &amp;Editor...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3040" />
-      <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="3049" />
-      <source>Hex Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3051" />
-      <source>&amp;Hex Editor...</source>
-      <translation type="unfinished" />
+      <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="3063" />
+      <location filename="../UI/UserInterface.py" line="3055" />
+      <source>Mini Editor</source>
+      <translation />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3057" />
+      <source>Mini &amp;Editor...</source>
+      <translation>Mini &amp;Editor...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3065" />
+      <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="3074" />
+      <source>Hex Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3076" />
+      <source>&amp;Hex Editor...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3082" />
       <source>Start the eric Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3059" />
+      <location filename="../UI/UserInterface.py" line="3084" />
       <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3069" />
+      <location filename="../UI/UserInterface.py" line="3094" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3071" />
-      <source>eric &amp;Web Browser...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3077" />
-      <source>Start the eric Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3079" />
-      <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3088" />
-      <source>Icon Editor</source>
-      <translation>Editor ikon</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3090" />
-      <source>&amp;Icon Editor...</source>
-      <translation>Editor &amp;ikon...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3096" />
+      <source>eric &amp;Web Browser...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3102" />
+      <source>Start the eric Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3104" />
+      <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3113" />
+      <source>Icon Editor</source>
+      <translation>Editor ikon</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3115" />
+      <source>&amp;Icon Editor...</source>
+      <translation>Editor &amp;ikon...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3121" />
       <source>Start the eric Icon Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3098" />
+      <location filename="../UI/UserInterface.py" line="3123" />
       <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6494" />
-      <location filename="../UI/UserInterface.py" line="3110" />
+      <location filename="../UI/UserInterface.py" line="6532" />
+      <location filename="../UI/UserInterface.py" line="3135" />
       <source>Snapshot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3112" />
+      <location filename="../UI/UserInterface.py" line="3137" />
       <source>&amp;Snapshot...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3118" />
+      <location filename="../UI/UserInterface.py" line="3143" />
       <source>Take snapshots of a screen region</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3120" />
+      <location filename="../UI/UserInterface.py" line="3145" />
       <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3130" />
+      <location filename="../UI/UserInterface.py" line="3155" />
       <source>eric PDF Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3132" />
-      <source>eric PDF &amp;Viewer...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3138" />
-      <source>Start the eric PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3140" />
-      <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3149" />
-      <source>Preferences</source>
-      <translation>Nastavení</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3151" />
-      <source>&amp;Preferences...</source>
-      <translation>Na&amp;stavení...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3157" />
+      <source>eric PDF &amp;Viewer...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3163" />
+      <source>Start the eric PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3165" />
+      <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3174" />
+      <source>Preferences</source>
+      <translation>Nastavení</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3176" />
+      <source>&amp;Preferences...</source>
+      <translation>Na&amp;stavení...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3182" />
       <source>Set the prefered configuration</source>
       <translation>Nastavení konfigurace</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3159" />
+      <location filename="../UI/UserInterface.py" line="3184" />
       <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="3170" />
+      <location filename="../UI/UserInterface.py" line="3195" />
       <source>Export Preferences</source>
       <translation>Exportovat předvolby</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3172" />
+      <location filename="../UI/UserInterface.py" line="3197" />
       <source>E&amp;xport Preferences...</source>
       <translation>E&amp;xportovat předvolby...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3178" />
+      <location filename="../UI/UserInterface.py" line="3203" />
       <source>Export the current configuration</source>
       <translation>Export aktuální konfigurace</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3180" />
+      <location filename="../UI/UserInterface.py" line="3205" />
       <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="3189" />
+      <location filename="../UI/UserInterface.py" line="3214" />
       <source>Import Preferences</source>
       <translation>Import předvoleb</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3191" />
+      <location filename="../UI/UserInterface.py" line="3216" />
       <source>I&amp;mport Preferences...</source>
       <translation>I&amp;mport předvoleb...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3198" />
+      <location filename="../UI/UserInterface.py" line="3223" />
       <source>Import a previously exported configuration</source>
       <translation>Import dříve exportované konfigurace</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3201" />
+      <location filename="../UI/UserInterface.py" line="3226" />
       <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="3210" />
+      <location filename="../UI/UserInterface.py" line="3235" />
       <source>Export Theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3212" />
-      <source>Export Theme...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3218" />
-      <source>Export the current theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3220" />
-      <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3229" />
-      <source>Import Theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3231" />
-      <source>Import Theme...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3237" />
+      <source>Export Theme...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3243" />
+      <source>Export the current theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3245" />
+      <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3254" />
+      <source>Import Theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3256" />
+      <source>Import Theme...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3262" />
       <source>Import a previously exported theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
+      <location filename="../UI/UserInterface.py" line="3264" />
       <source>&lt;b&gt;Import Theme&lt;/b&gt;&lt;p&gt;Import a previously exported theme.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3248" />
+      <location filename="../UI/UserInterface.py" line="3273" />
       <source>Reload APIs</source>
       <translation>Obnovit API</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3248" />
+      <location filename="../UI/UserInterface.py" line="3273" />
       <source>Reload &amp;APIs</source>
       <translation>Obnovit &amp;API</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3250" />
+      <location filename="../UI/UserInterface.py" line="3275" />
       <source>Reload the API information</source>
       <translation>Obnovit API nastavení</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3252" />
+      <location filename="../UI/UserInterface.py" line="3277" />
       <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="3266" />
-      <location filename="../UI/UserInterface.py" line="3258" />
+      <location filename="../UI/UserInterface.py" line="3291" />
+      <location filename="../UI/UserInterface.py" line="3283" />
       <source>Show external tools</source>
       <translation>Zobrazit externí nástroje</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3260" />
+      <location filename="../UI/UserInterface.py" line="3285" />
       <source>Show external &amp;tools</source>
       <translation>Zobrazit externí nás&amp;troje</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3268" />
+      <location filename="../UI/UserInterface.py" line="3293" />
       <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3278" />
+      <location filename="../UI/UserInterface.py" line="3303" />
       <source>View Profiles</source>
       <translation>Profily pohledů</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3280" />
+      <location filename="../UI/UserInterface.py" line="3305" />
       <source>&amp;View Profiles...</source>
       <translation>Profily &amp;pohledů...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3286" />
+      <location filename="../UI/UserInterface.py" line="3311" />
       <source>Configure view profiles</source>
       <translation>Konfigurace profilů pohledů</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3288" />
+      <location filename="../UI/UserInterface.py" line="3313" />
       <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="3299" />
+      <location filename="../UI/UserInterface.py" line="3324" />
       <source>Toolbars</source>
       <translation>Lišty nástrojů</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3301" />
+      <location filename="../UI/UserInterface.py" line="3326" />
       <source>Tool&amp;bars...</source>
       <translation>&amp;Lišty nástrojů...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3307" />
+      <location filename="../UI/UserInterface.py" line="3332" />
       <source>Configure toolbars</source>
       <translation>Konfigurace lišt nástrojů</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
+      <location filename="../UI/UserInterface.py" line="3334" />
       <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="3320" />
+      <location filename="../UI/UserInterface.py" line="3345" />
       <source>Keyboard Shortcuts</source>
       <translation>Klávesové zkratky</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3322" />
+      <location filename="../UI/UserInterface.py" line="3347" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation>Klávesové &amp;zkratky...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3328" />
+      <location filename="../UI/UserInterface.py" line="3353" />
       <source>Set the keyboard shortcuts</source>
       <translation>Nastavení klávesových zkratek</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3330" />
+      <location filename="../UI/UserInterface.py" line="3355" />
       <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="7453" />
-      <location filename="../UI/UserInterface.py" line="7434" />
-      <location filename="../UI/UserInterface.py" line="3340" />
+      <location filename="../UI/UserInterface.py" line="7491" />
+      <location filename="../UI/UserInterface.py" line="7472" />
+      <location filename="../UI/UserInterface.py" line="3365" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Exportovat klávesové zkratky</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3342" />
-      <source>&amp;Export Keyboard Shortcuts...</source>
-      <translation>&amp;Exportovat klávesové zkratky...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3348" />
-      <source>Export the keyboard shortcuts</source>
-      <translation>Export klávesových zkratek</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3350" />
-      <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="7472" />
-      <location filename="../UI/UserInterface.py" line="3359" />
-      <source>Import Keyboard Shortcuts</source>
-      <translation>Import klávesových zkratek</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3361" />
-      <source>&amp;Import Keyboard Shortcuts...</source>
-      <translation>&amp;Import klávesových zkratek...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3367" />
+      <source>&amp;Export Keyboard Shortcuts...</source>
+      <translation>&amp;Exportovat klávesové zkratky...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3373" />
+      <source>Export the keyboard shortcuts</source>
+      <translation>Export klávesových zkratek</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3375" />
+      <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="7510" />
+      <location filename="../UI/UserInterface.py" line="3384" />
+      <source>Import Keyboard Shortcuts</source>
+      <translation>Import klávesových zkratek</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3386" />
+      <source>&amp;Import Keyboard Shortcuts...</source>
+      <translation>&amp;Import klávesových zkratek...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3392" />
       <source>Import the keyboard shortcuts</source>
       <translation>Import klávesových zkratek</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3369" />
+      <location filename="../UI/UserInterface.py" line="3394" />
       <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="3379" />
+      <location filename="../UI/UserInterface.py" line="3404" />
       <source>Manage SSL Certificates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3381" />
+      <location filename="../UI/UserInterface.py" line="3406" />
       <source>Manage SSL Certificates...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3388" />
-      <source>Manage the saved SSL certificates</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3391" />
-      <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3401" />
-      <source>Edit Message Filters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3403" />
-      <source>Edit Message Filters...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3410" />
-      <source>Edit the message filters used to suppress unwanted messages</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3413" />
-      <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3432" />
+      <source>Manage the saved SSL certificates</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3416" />
+      <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3426" />
-      <location filename="../UI/UserInterface.py" line="3424" />
-      <source>Clear private data</source>
-      <translation type="unfinished">Smazat soukromá data</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3434" />
-      <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3445" />
-      <location filename="../UI/UserInterface.py" line="3444" />
-      <source>Activate current editor</source>
-      <translation>Aktivovat aktuální editor</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3446" />
-      <source>Alt+Shift+E</source>
-      <translation />
+      <source>Edit Message Filters</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3428" />
+      <source>Edit Message Filters...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3435" />
+      <source>Edit the message filters used to suppress unwanted messages</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3438" />
+      <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3457" />
-      <location filename="../UI/UserInterface.py" line="3456" />
-      <source>Show next</source>
-      <translation>Zobrazit další</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3458" />
-      <source>Ctrl+Alt+Tab</source>
-      <translation />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3469" />
-      <location filename="../UI/UserInterface.py" line="3468" />
-      <source>Show previous</source>
-      <translation>Zobrazit předchozí</translation>
+      <location filename="../UI/UserInterface.py" line="3451" />
+      <location filename="../UI/UserInterface.py" line="3449" />
+      <source>Clear private data</source>
+      <translation type="unfinished">Smazat soukromá data</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3459" />
+      <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3470" />
-      <source>Shift+Ctrl+Alt+Tab</source>
-      <translation />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3481" />
-      <location filename="../UI/UserInterface.py" line="3480" />
-      <source>Switch between tabs</source>
-      <translation>Přepnout mezi taby</translation>
+      <location filename="../UI/UserInterface.py" line="3469" />
+      <source>Activate current editor</source>
+      <translation>Aktivovat aktuální editor</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3471" />
+      <source>Alt+Shift+E</source>
+      <translation />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3482" />
-      <source>Ctrl+1</source>
-      <translation />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3492" />
-      <source>Plugin Infos</source>
-      <translation>Plugin Infa</translation>
+      <location filename="../UI/UserInterface.py" line="3481" />
+      <source>Show next</source>
+      <translation>Zobrazit další</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3483" />
+      <source>Ctrl+Alt+Tab</source>
+      <translation />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3494" />
+      <location filename="../UI/UserInterface.py" line="3493" />
+      <source>Show previous</source>
+      <translation>Zobrazit předchozí</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3495" />
+      <source>Shift+Ctrl+Alt+Tab</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3506" />
+      <location filename="../UI/UserInterface.py" line="3505" />
+      <source>Switch between tabs</source>
+      <translation>Přepnout mezi taby</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3507" />
+      <source>Ctrl+1</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3517" />
+      <source>Plugin Infos</source>
+      <translation>Plugin Infa</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3519" />
       <source>&amp;Plugin Infos...</source>
       <translation>&amp;Plugin Infa...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3500" />
+      <location filename="../UI/UserInterface.py" line="3525" />
       <source>Show Plugin Infos</source>
       <translation>Zobrazit Plugin infa</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3502" />
+      <location filename="../UI/UserInterface.py" line="3527" />
       <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="3520" />
-      <location filename="../UI/UserInterface.py" line="3512" />
+      <location filename="../UI/UserInterface.py" line="3545" />
+      <location filename="../UI/UserInterface.py" line="3537" />
       <source>Install Plugins</source>
       <translation>Instalovat pluginy</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3514" />
-      <source>&amp;Install Plugins...</source>
-      <translation>&amp;Instalovat pluginy...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3522" />
-      <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="3539" />
-      <location filename="../UI/UserInterface.py" line="3531" />
+      <source>&amp;Install Plugins...</source>
+      <translation>&amp;Instalovat pluginy...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3547" />
+      <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="3564" />
+      <location filename="../UI/UserInterface.py" line="3556" />
       <source>Uninstall Plugin</source>
       <translation>Odinstalovat plugin</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3533" />
-      <source>&amp;Uninstall Plugin...</source>
-      <translation>&amp;Odinstalovat plugin...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3541" />
-      <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="3552" />
-      <source>Plugin &amp;Repository...</source>
-      <translation>&amp;Repozitář pluginů...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3558" />
+      <source>&amp;Uninstall Plugin...</source>
+      <translation>&amp;Odinstalovat plugin...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3566" />
+      <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="3577" />
+      <source>Plugin &amp;Repository...</source>
+      <translation>&amp;Repozitář pluginů...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3583" />
       <source>Show Plugins available for download</source>
       <translation>Zobrazit pluginy dostupné ke stažení</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3560" />
+      <location filename="../UI/UserInterface.py" line="3585" />
       <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="3587" />
-      <location filename="../UI/UserInterface.py" line="3586" />
+      <location filename="../UI/UserInterface.py" line="3612" />
+      <location filename="../UI/UserInterface.py" line="3611" />
       <source>Qt5 Documentation</source>
       <translation type="unfinished">Qt4 dokumentace {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3593" />
+      <location filename="../UI/UserInterface.py" line="3618" />
       <source>Open Qt5 Documentation</source>
       <translation type="unfinished">Otevřít Qt4 dokumentaci {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3595" />
+      <location filename="../UI/UserInterface.py" line="3620" />
       <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3608" />
-      <location filename="../UI/UserInterface.py" line="3607" />
+      <location filename="../UI/UserInterface.py" line="3633" />
+      <location filename="../UI/UserInterface.py" line="3632" />
       <source>Qt6 Documentation</source>
       <translation type="unfinished">Qt4 dokumentace {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3614" />
+      <location filename="../UI/UserInterface.py" line="3639" />
       <source>Open Qt6 Documentation</source>
       <translation type="unfinished">Otevřít Qt4 dokumentaci {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3616" />
+      <location filename="../UI/UserInterface.py" line="3641" />
       <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3629" />
-      <location filename="../UI/UserInterface.py" line="3628" />
+      <location filename="../UI/UserInterface.py" line="3654" />
+      <location filename="../UI/UserInterface.py" line="3653" />
       <source>PyQt5 Documentation</source>
       <translation type="unfinished">PyQt4 dokumentace {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3635" />
+      <location filename="../UI/UserInterface.py" line="3660" />
       <source>Open PyQt5 Documentation</source>
       <translation type="unfinished">Otevřít PyQt4 dokumentaci {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3637" />
+      <location filename="../UI/UserInterface.py" line="3662" />
       <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3650" />
-      <location filename="../UI/UserInterface.py" line="3649" />
+      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3674" />
       <source>PyQt6 Documentation</source>
       <translation type="unfinished">PyQt4 dokumentace {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3656" />
+      <location filename="../UI/UserInterface.py" line="3681" />
       <source>Open PyQt6 Documentation</source>
       <translation type="unfinished">Otevřít PyQt4 dokumentaci {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3658" />
+      <location filename="../UI/UserInterface.py" line="3683" />
       <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3676" />
-      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3701" />
+      <location filename="../UI/UserInterface.py" line="3700" />
       <source>Python 3 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3682" />
+      <location filename="../UI/UserInterface.py" line="3707" />
       <source>Open Python 3 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3684" />
-      <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3703" />
-      <location filename="../UI/UserInterface.py" line="3702" />
-      <source>eric API Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3709" />
+      <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3728" />
+      <location filename="../UI/UserInterface.py" line="3727" />
+      <source>eric API Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3734" />
       <source>Open eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3711" />
+      <location filename="../UI/UserInterface.py" line="3736" />
       <source>&lt;b&gt;eric API Documentation&lt;/b&gt;&lt;p&gt;Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3729" />
-      <location filename="../UI/UserInterface.py" line="3728" />
+      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3753" />
       <source>PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3735" />
+      <location filename="../UI/UserInterface.py" line="3760" />
       <source>Open PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3737" />
+      <location filename="../UI/UserInterface.py" line="3762" />
       <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3755" />
-      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3780" />
+      <location filename="../UI/UserInterface.py" line="3779" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3761" />
+      <location filename="../UI/UserInterface.py" line="3786" />
       <source>Open PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3763" />
+      <location filename="../UI/UserInterface.py" line="3788" />
       <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3865" />
+      <location filename="../UI/UserInterface.py" line="3890" />
       <source>E&amp;xtras</source>
       <translation>E&amp;xtra funkce</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3875" />
+      <location filename="../UI/UserInterface.py" line="3900" />
       <source>Wi&amp;zards</source>
       <translation>&amp;Průvodci</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3893" />
+      <location filename="../UI/UserInterface.py" line="3918" />
       <source>P&amp;lugins</source>
       <translation>P&amp;luginy</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3902" />
+      <location filename="../UI/UserInterface.py" line="3927" />
       <source>Configure...</source>
       <translation>Konfigurovat...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3911" />
+      <location filename="../UI/UserInterface.py" line="3936" />
       <source>&amp;Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3928" />
+      <location filename="../UI/UserInterface.py" line="3953" />
       <source>Select Tool Group</source>
       <translation>Vybrat skupinu nástrojů</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3939" />
+      <location filename="../UI/UserInterface.py" line="3964" />
       <source>Se&amp;ttings</source>
       <translation>Nas&amp;tavení</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3972" />
+      <location filename="../UI/UserInterface.py" line="3997" />
       <source>&amp;Window</source>
       <translation>O&amp;kno</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3981" />
+      <location filename="../UI/UserInterface.py" line="4006" />
       <source>&amp;Windows</source>
       <translation type="unfinished">&amp;Windows</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3985" />
+      <location filename="../UI/UserInterface.py" line="4010" />
       <source>Central Park</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3989" />
+      <location filename="../UI/UserInterface.py" line="4014" />
       <source>Left Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4008" />
+      <location filename="../UI/UserInterface.py" line="4033" />
       <source>Right Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4027" />
+      <location filename="../UI/UserInterface.py" line="4052" />
       <source>Bottom Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4035" />
+      <location filename="../UI/UserInterface.py" line="4060" />
       <source>Plug-ins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4041" />
+      <location filename="../UI/UserInterface.py" line="4066" />
       <source>&amp;Toolbars</source>
       <translation>&amp;Toolbary</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4054" />
+      <location filename="../UI/UserInterface.py" line="4079" />
       <source>&amp;Help</source>
       <translation>&amp;Nápověda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4109" />
-      <location filename="../UI/UserInterface.py" line="4093" />
+      <location filename="../UI/UserInterface.py" line="4135" />
+      <location filename="../UI/UserInterface.py" line="4119" />
       <source>Tools</source>
       <translation>Nástroje</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4111" />
-      <location filename="../UI/UserInterface.py" line="4097" />
+      <location filename="../UI/UserInterface.py" line="4137" />
+      <location filename="../UI/UserInterface.py" line="4123" />
       <source>Settings</source>
       <translation>Nastavení</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6222" />
-      <location filename="../UI/UserInterface.py" line="4112" />
-      <location filename="../UI/UserInterface.py" line="4098" />
+      <location filename="../UI/UserInterface.py" line="6260" />
+      <location filename="../UI/UserInterface.py" line="4138" />
+      <location filename="../UI/UserInterface.py" line="4124" />
       <source>Help</source>
       <translation>Nápověda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4113" />
-      <location filename="../UI/UserInterface.py" line="4099" />
+      <location filename="../UI/UserInterface.py" line="4139" />
+      <location filename="../UI/UserInterface.py" line="4125" />
       <source>Profiles</source>
       <translation>Profily</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
-      <location filename="../UI/UserInterface.py" line="4100" />
+      <location filename="../UI/UserInterface.py" line="4140" />
+      <location filename="../UI/UserInterface.py" line="4126" />
       <source>Plugins</source>
       <translation>Pluginy</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4110" />
+      <location filename="../UI/UserInterface.py" line="4136" />
       <source>Unittest</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4284" />
+      <location filename="../UI/UserInterface.py" line="4310" />
       <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="4293" />
+      <location filename="../UI/UserInterface.py" line="4319" />
       <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="4302" />
+      <location filename="../UI/UserInterface.py" line="4328" />
       <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="4311" />
+      <location filename="../UI/UserInterface.py" line="4337" />
       <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="4320" />
+      <location filename="../UI/UserInterface.py" line="4346" />
       <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="4329" />
+      <location filename="../UI/UserInterface.py" line="4355" />
       <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="4343" />
+      <location filename="../UI/UserInterface.py" line="4369" />
       <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4414" />
-      <location filename="../UI/UserInterface.py" line="4373" />
+      <location filename="../UI/UserInterface.py" line="4440" />
+      <location filename="../UI/UserInterface.py" line="4399" />
       <source>External Tools/{0}</source>
       <translation>Externí nástroje/{0}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4522" />
+      <location filename="../UI/UserInterface.py" line="4548" />
       <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="4571" />
+      <location filename="../UI/UserInterface.py" line="4597" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Security)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4588" />
+      <location filename="../UI/UserInterface.py" line="4614" />
       <source>Desktop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4592" />
+      <location filename="../UI/UserInterface.py" line="4618" />
       <source>Session Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4595" />
+      <location filename="../UI/UserInterface.py" line="4621" />
       <source>&lt;/table&gt;</source>
       <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4635" />
+      <location filename="../UI/UserInterface.py" line="4673" />
       <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="4970" />
+      <location filename="../UI/UserInterface.py" line="5008" />
       <source>Restart application</source>
       <translation>Restartovat aplikaci</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4971" />
+      <location filename="../UI/UserInterface.py" line="5009" />
       <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="4995" />
+      <location filename="../UI/UserInterface.py" line="5033" />
       <source>Upgrade PyQt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4996" />
+      <location filename="../UI/UserInterface.py" line="5034" />
       <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5046" />
-      <location filename="../UI/UserInterface.py" line="5020" />
+      <location filename="../UI/UserInterface.py" line="5084" />
+      <location filename="../UI/UserInterface.py" line="5058" />
       <source>Upgrade Eric</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5021" />
+      <location filename="../UI/UserInterface.py" line="5059" />
       <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5047" />
+      <location filename="../UI/UserInterface.py" line="5085" />
       <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
  Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5105" />
+      <location filename="../UI/UserInterface.py" line="5143" />
       <source>&amp;Builtin Tools</source>
       <translation>&amp;Vestavěné nástroje</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5124" />
+      <location filename="../UI/UserInterface.py" line="5162" />
       <source>&amp;Plugin Tools</source>
       <translation>&amp;Plugin nástroje</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5127" />
+      <location filename="../UI/UserInterface.py" line="5165" />
       <source>&amp;User Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5153" />
+      <location filename="../UI/UserInterface.py" line="5191" />
       <source>Configure Tool Groups ...</source>
       <translation>Konfigurace Skupin nástrojů...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5157" />
+      <location filename="../UI/UserInterface.py" line="5195" />
       <source>Configure current Tool Group ...</source>
       <translation>Konfigurace aktuální skupiny nástrojů...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5196" />
-      <location filename="../UI/UserInterface.py" line="5176" />
+      <location filename="../UI/UserInterface.py" line="5234" />
+      <location filename="../UI/UserInterface.py" line="5214" />
       <source>No User Tools Configured</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5272" />
+      <location filename="../UI/UserInterface.py" line="5310" />
       <source>&amp;Show all</source>
       <translation>&amp;Zobrazit vše</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5274" />
+      <location filename="../UI/UserInterface.py" line="5312" />
       <source>&amp;Hide all</source>
       <translation>&amp;Skrýt vše</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6359" />
-      <location filename="../UI/UserInterface.py" line="6348" />
-      <location filename="../UI/UserInterface.py" line="6300" />
-      <location filename="../UI/UserInterface.py" line="6290" />
-      <location filename="../UI/UserInterface.py" line="6121" />
-      <location filename="../UI/UserInterface.py" line="6111" />
-      <location filename="../UI/UserInterface.py" line="6053" />
-      <location filename="../UI/UserInterface.py" line="6043" />
+      <location filename="../UI/UserInterface.py" line="6397" />
+      <location filename="../UI/UserInterface.py" line="6386" />
+      <location filename="../UI/UserInterface.py" line="6338" />
+      <location filename="../UI/UserInterface.py" line="6328" />
+      <location filename="../UI/UserInterface.py" line="6159" />
+      <location filename="../UI/UserInterface.py" line="6149" />
+      <location filename="../UI/UserInterface.py" line="6091" />
+      <location filename="../UI/UserInterface.py" line="6081" />
       <source>Problem</source>
       <translation>Problém</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6360" />
-      <location filename="../UI/UserInterface.py" line="6349" />
-      <location filename="../UI/UserInterface.py" line="6301" />
-      <location filename="../UI/UserInterface.py" line="6291" />
-      <location filename="../UI/UserInterface.py" line="6122" />
-      <location filename="../UI/UserInterface.py" line="6112" />
-      <location filename="../UI/UserInterface.py" line="6054" />
-      <location filename="../UI/UserInterface.py" line="6044" />
+      <location filename="../UI/UserInterface.py" line="6398" />
+      <location filename="../UI/UserInterface.py" line="6387" />
+      <location filename="../UI/UserInterface.py" line="6339" />
+      <location filename="../UI/UserInterface.py" line="6329" />
+      <location filename="../UI/UserInterface.py" line="6160" />
+      <location filename="../UI/UserInterface.py" line="6150" />
+      <location filename="../UI/UserInterface.py" line="6092" />
+      <location filename="../UI/UserInterface.py" line="6082" />
       <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="6603" />
-      <location filename="../UI/UserInterface.py" line="6514" />
-      <location filename="../UI/UserInterface.py" line="6395" />
-      <location filename="../UI/UserInterface.py" line="6372" />
-      <location filename="../UI/UserInterface.py" line="6313" />
-      <location filename="../UI/UserInterface.py" line="6260" />
-      <location filename="../UI/UserInterface.py" line="6238" />
-      <location filename="../UI/UserInterface.py" line="6197" />
-      <location filename="../UI/UserInterface.py" line="6188" />
-      <location filename="../UI/UserInterface.py" line="6153" />
-      <location filename="../UI/UserInterface.py" line="6144" />
-      <location filename="../UI/UserInterface.py" line="6085" />
-      <location filename="../UI/UserInterface.py" line="6076" />
+      <location filename="../UI/UserInterface.py" line="6641" />
+      <location filename="../UI/UserInterface.py" line="6552" />
+      <location filename="../UI/UserInterface.py" line="6433" />
+      <location filename="../UI/UserInterface.py" line="6410" />
+      <location filename="../UI/UserInterface.py" line="6351" />
+      <location filename="../UI/UserInterface.py" line="6298" />
+      <location filename="../UI/UserInterface.py" line="6276" />
+      <location filename="../UI/UserInterface.py" line="6235" />
+      <location filename="../UI/UserInterface.py" line="6226" />
+      <location filename="../UI/UserInterface.py" line="6191" />
+      <location filename="../UI/UserInterface.py" line="6182" />
+      <location filename="../UI/UserInterface.py" line="6123" />
+      <location filename="../UI/UserInterface.py" line="6114" />
       <source>Process Generation Error</source>
       <translation>Chyba v procesu generování</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6077" />
+      <location filename="../UI/UserInterface.py" line="6115" />
       <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="6086" />
+      <location filename="../UI/UserInterface.py" line="6124" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6145" />
+      <location filename="../UI/UserInterface.py" line="6183" />
       <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="6154" />
+      <location filename="../UI/UserInterface.py" line="6192" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6189" />
+      <location filename="../UI/UserInterface.py" line="6227" />
       <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="6198" />
+      <location filename="../UI/UserInterface.py" line="6236" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6223" />
-      <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="6239" />
-      <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="6261" />
+      <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="6277" />
+      <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="6299" />
       <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="6314" />
+      <location filename="../UI/UserInterface.py" line="6352" />
       <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="6373" />
+      <location filename="../UI/UserInterface.py" line="6411" />
       <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="6396" />
+      <location filename="../UI/UserInterface.py" line="6434" />
       <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="6495" />
+      <location filename="../UI/UserInterface.py" line="6533" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6515" />
+      <location filename="../UI/UserInterface.py" line="6553" />
       <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6548" />
-      <location filename="../UI/UserInterface.py" line="6538" />
-      <source>External Tools</source>
-      <translation>Externí nástroje</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6539" />
-      <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
-      <translation>V externím nástroji  '{0}' ve skupině '{1}' nebyl záznam nástroje nalezen.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6549" />
-      <source>No toolgroup entry '{0}' found.</source>
-      <translation>Skupina nástrojů '{0}' nenalezena. </translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="6586" />
+      <location filename="../UI/UserInterface.py" line="6576" />
+      <source>External Tools</source>
+      <translation>Externí nástroje</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6577" />
+      <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
+      <translation>V externím nástroji  '{0}' ve skupině '{1}' nebyl záznam nástroje nalezen.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6587" />
+      <source>No toolgroup entry '{0}' found.</source>
+      <translation>Skupina nástrojů '{0}' nenalezena. </translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6624" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>Spouštím proces '{0} {1}'.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6604" />
+      <location filename="../UI/UserInterface.py" line="6642" />
       <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="6683" />
+      <location filename="../UI/UserInterface.py" line="6721" />
       <source>Process '{0}' has exited.
 </source>
       <translation>Proces '{0}' byl ukončen.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6970" />
-      <location filename="../UI/UserInterface.py" line="6908" />
-      <location filename="../UI/UserInterface.py" line="6864" />
-      <location filename="../UI/UserInterface.py" line="6790" />
-      <location filename="../UI/UserInterface.py" line="6726" />
+      <location filename="../UI/UserInterface.py" line="7008" />
+      <location filename="../UI/UserInterface.py" line="6946" />
+      <location filename="../UI/UserInterface.py" line="6902" />
+      <location filename="../UI/UserInterface.py" line="6828" />
+      <location filename="../UI/UserInterface.py" line="6764" />
       <source>Documentation Missing</source>
       <translation>Dokumentace chybí</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6971" />
-      <location filename="../UI/UserInterface.py" line="6909" />
-      <location filename="../UI/UserInterface.py" line="6865" />
-      <location filename="../UI/UserInterface.py" line="6791" />
-      <location filename="../UI/UserInterface.py" line="6727" />
+      <location filename="../UI/UserInterface.py" line="7009" />
+      <location filename="../UI/UserInterface.py" line="6947" />
+      <location filename="../UI/UserInterface.py" line="6903" />
+      <location filename="../UI/UserInterface.py" line="6829" />
+      <location filename="../UI/UserInterface.py" line="6765" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Adresář dokumentace "&lt;b&gt;{0}&lt;/b&gt;" nebyl nalezen.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6952" />
-      <location filename="../UI/UserInterface.py" line="6834" />
+      <location filename="../UI/UserInterface.py" line="6990" />
+      <location filename="../UI/UserInterface.py" line="6872" />
       <source>Documentation</source>
       <translation>Dokumentace</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6835" />
+      <location filename="../UI/UserInterface.py" line="6873" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6953" />
+      <location filename="../UI/UserInterface.py" line="6991" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7132" />
-      <location filename="../UI/UserInterface.py" line="7068" />
+      <location filename="../UI/UserInterface.py" line="7170" />
+      <location filename="../UI/UserInterface.py" line="7106" />
       <source>Start Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7069" />
+      <location filename="../UI/UserInterface.py" line="7107" />
       <source>The eric web browser could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7133" />
+      <location filename="../UI/UserInterface.py" line="7171" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7179" />
+      <location filename="../UI/UserInterface.py" line="7217" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7179" />
+      <location filename="../UI/UserInterface.py" line="7217" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7512" />
       <location filename="../UI/UserInterface.py" line="7474" />
-      <location filename="../UI/UserInterface.py" line="7436" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7454" />
+      <location filename="../UI/UserInterface.py" line="7492" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7682" />
+      <location filename="../UI/UserInterface.py" line="7720" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7683" />
+      <location filename="../UI/UserInterface.py" line="7721" />
       <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="7706" />
+      <location filename="../UI/UserInterface.py" line="7744" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7731" />
-      <location filename="../UI/UserInterface.py" line="7708" />
+      <location filename="../UI/UserInterface.py" line="7769" />
+      <location filename="../UI/UserInterface.py" line="7746" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7776" />
+      <location filename="../UI/UserInterface.py" line="7814" />
       <source>Crash Session found!</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7777" />
+      <location filename="../UI/UserInterface.py" line="7815" />
       <source>A session file of a crashed session was found. Shall this session be restored?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8154" />
+      <location filename="../UI/UserInterface.py" line="8192" />
       <source>Drop Error</source>
       <translation>Zahodit chybu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8155" />
+      <location filename="../UI/UserInterface.py" line="8193" />
       <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="8341" />
+      <location filename="../UI/UserInterface.py" line="8379" />
       <source>Upgrade available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8342" />
+      <location filename="../UI/UserInterface.py" line="8380" />
       <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8387" />
+      <location filename="../UI/UserInterface.py" line="8425" />
       <source>First time usage</source>
       <translation>Spuštěno poprvé</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8388" />
+      <location filename="../UI/UserInterface.py" line="8426" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8410" />
+      <location filename="../UI/UserInterface.py" line="8448" />
       <source>Select Workspace Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8575" />
+      <location filename="../UI/UserInterface.py" line="8616" />
       <source>Unsaved Data Detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8576" />
+      <location filename="../UI/UserInterface.py" line="8617" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -92880,40 +92900,40 @@
       <translation>&lt;b&gt;Prohlížeč lokálních proměnných&lt;/b&gt;&lt;p&gt;Toto okno zobrazuje lokální proměnné debugovénho programu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1055" />
+      <location filename="../Debugger/VariablesViewer.py" line="1056" />
       <source>Show Details...</source>
       <translation>Zobrazit detaily...</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1057" />
-      <source>Expand</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1058" />
-      <source>Collapse</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Debugger/VariablesViewer.py" line="1059" />
+      <source>Expand Subitems</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/VariablesViewer.py" line="1062" />
+      <source>Collapse Subitems</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/VariablesViewer.py" line="1064" />
       <source>Collapse All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1067" />
-      <location filename="../Debugger/VariablesViewer.py" line="1061" />
+      <location filename="../Debugger/VariablesViewer.py" line="1072" />
+      <location filename="../Debugger/VariablesViewer.py" line="1066" />
       <source>Refresh</source>
       <translation type="unfinished">Obnovit</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1069" />
-      <location filename="../Debugger/VariablesViewer.py" line="1063" />
+      <location filename="../Debugger/VariablesViewer.py" line="1074" />
+      <location filename="../Debugger/VariablesViewer.py" line="1068" />
       <source>Configure...</source>
       <translation>Konfigurovat...</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1071" />
-      <location filename="../Debugger/VariablesViewer.py" line="1064" />
+      <location filename="../Debugger/VariablesViewer.py" line="1076" />
+      <location filename="../Debugger/VariablesViewer.py" line="1069" />
       <source>Variables Type Filter...</source>
       <translation type="unfinished" />
     </message>
@@ -97536,91 +97556,91 @@
       <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; obsahuje neuložené změny.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5972" />
+      <location filename="../ViewManager/ViewManager.py" line="5969" />
       <source>Line: {0:5}</source>
       <translation>Řádek: {0:5}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5978" />
+      <location filename="../ViewManager/ViewManager.py" line="5975" />
       <source>Pos: {0:5}</source>
       <translation>Poz: {0:5}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5998" />
+      <location filename="../ViewManager/ViewManager.py" line="5995" />
       <source>Language: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6007" />
+      <location filename="../ViewManager/ViewManager.py" line="6004" />
       <source>EOL Mode: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6503" />
-      <location filename="../ViewManager/ViewManager.py" line="6460" />
+      <location filename="../ViewManager/ViewManager.py" line="6500" />
+      <location filename="../ViewManager/ViewManager.py" line="6457" />
       <source>&amp;Clear</source>
       <translation>&amp;Vyčistit</translation>
     </message>
     <message>
+      <location filename="../ViewManager/ViewManager.py" line="6494" />
+      <source>&amp;Add</source>
+      <translation>Přid&amp;at</translation>
+    </message>
+    <message>
       <location filename="../ViewManager/ViewManager.py" line="6497" />
-      <source>&amp;Add</source>
-      <translation>Přid&amp;at</translation>
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="6500" />
       <source>&amp;Edit...</source>
       <translation>&amp;Edit...</translation>
     </message>
     <message>
+      <location filename="../ViewManager/ViewManager.py" line="7567" />
+      <location filename="../ViewManager/ViewManager.py" line="7553" />
+      <location filename="../ViewManager/ViewManager.py" line="7521" />
+      <source>Edit Spelling Dictionary</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7524" />
+      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7540" />
+      <source>Editing {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7556" />
+      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../ViewManager/ViewManager.py" line="7570" />
-      <location filename="../ViewManager/ViewManager.py" line="7556" />
-      <location filename="../ViewManager/ViewManager.py" line="7524" />
-      <source>Edit Spelling Dictionary</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7527" />
-      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7543" />
-      <source>Editing {0}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7559" />
-      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7573" />
       <source>The spelling dictionary was saved successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6682" />
+      <location filename="../ViewManager/ViewManager.py" line="6679" />
       <source>Clear Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6683" />
+      <location filename="../ViewManager/ViewManager.py" line="6680" />
       <source>Do you really want to delete all text of the current editor?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="8103" />
-      <location filename="../ViewManager/ViewManager.py" line="8086" />
+      <location filename="../ViewManager/ViewManager.py" line="8100" />
+      <location filename="../ViewManager/ViewManager.py" line="8083" />
       <source>File System Watcher Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="8087" />
+      <location filename="../ViewManager/ViewManager.py" line="8084" />
       <source>&lt;p&gt;The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should &lt;ul&gt;&lt;li&gt;sudo nano /etc/sysctl.conf&lt;/li&gt;&lt;li&gt;add to the bottom "fs.inotify.max_user_instances = 1024"&lt;/li&gt;&lt;li&gt;save and close the editor&lt;/li&gt;&lt;li&gt;sudo sysctl -p&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Error Message: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="8104" />
+      <location filename="../ViewManager/ViewManager.py" line="8101" />
       <source>The file system watcher reported an error with code &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -99476,16 +99496,6 @@
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
-      <source>Select to delete all web databases</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
-      <source>Web &amp;Databases</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
       <source>Select to delete all remembered zoom settings</source>
       <translation type="unfinished" />
     </message>
@@ -99747,6 +99757,16 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
+      <source>Select to render all web contents using a dark theme.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
+      <source>Force Dark Mode</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
       <source>Startup</source>
       <translation type="unfinished">Spuštění</translation>
     </message>
@@ -100684,355 +100704,355 @@
   <context>
     <name>WebBrowserView</name>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="366" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="353" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="341" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="329" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="367" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="354" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="342" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="330" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="330" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="331" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{}&lt;/b&gt; neexistuje.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="367" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="342" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="368" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="343" />
       <source>&lt;p&gt;Could not start a viewer for file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Nelze spustit prohlížeč se souborem &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="354" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="355" />
       <source>&lt;p&gt;Could not start an application for URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Nelze spustit aplikaci pro URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="608" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="609" />
       <source>Match {0} of {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="634" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="635" />
       <source>Inspect Element...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="666" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="667" />
       <source>No suggestions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="723" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="724" />
       <source>Open Link in New Tab	Ctrl+LMB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="728" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="729" />
       <source>Open Link in New Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="734" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="735" />
       <source>Open Link in New Private Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="741" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="742" />
       <source>Save Lin&amp;k</source>
       <translation type="unfinished">Uložit lin&amp;k</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="745" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="746" />
       <source>Bookmark this Link</source>
       <translation type="unfinished">Záložka na tento link</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="751" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="752" />
       <source>Copy URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="755" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="756" />
       <source>Send URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="764" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="765" />
       <source>Scan Link with VirusTotal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="782" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="783" />
       <source>Open Image in New Tab</source>
       <translation type="unfinished">Otevřít obrázek v novém tabu</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="789" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="790" />
       <source>Save Image</source>
       <translation type="unfinished">Uložit obrázek</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="792" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="793" />
       <source>Copy Image to Clipboard</source>
       <translation type="unfinished">Kopíroavt obrázek do schránky</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="794" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="795" />
       <source>Copy Image URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="799" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="800" />
       <source>Send Image URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="818" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="810" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="819" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="811" />
       <source>Search image in {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="814" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="815" />
       <source>Search image with...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="825" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="826" />
       <source>Block Image</source>
       <translation type="unfinished">Blokovat obrázek</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="835" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="836" />
       <source>Scan Image with VirusTotal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="855" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="856" />
       <source>Play</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="861" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="862" />
       <source>Pause</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="867" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="868" />
       <source>Unmute</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="873" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="874" />
       <source>Mute</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="878" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="879" />
       <source>Copy Media URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="883" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="884" />
       <source>Send Media URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="889" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="890" />
       <source>Save Media</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="910" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="911" />
       <source>Send Text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="917" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="918" />
       <source>Search with '{0}'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="921" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="922" />
       <source>Search with...</source>
       <translation type="unfinished">Hledat s...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1078" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="947" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1079" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="948" />
       <source>Google Translate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="957" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="958" />
       <source>Dictionary</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="965" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="966" />
       <source>Go to web address</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="994" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="995" />
       <source>Add New Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="999" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1000" />
       <source>Configure Speed Dial</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1005" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1006" />
       <source>Reload All Dials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1009" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1010" />
       <source>Reset to Default Dials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1014" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1015" />
       <source>Bookmark this Page</source>
       <translation type="unfinished">Záložka na tuto stranu</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1018" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1019" />
       <source>Copy Page URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1023" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1024" />
       <source>Send Page URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1029" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1030" />
       <source>User Agent</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1057" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1058" />
       <source>Validate Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1120" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1121" />
       <source>Add to web search toolbar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1804" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1805" />
       <source>Empty Page</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="1869" />
       <location filename="../WebBrowser/WebBrowserView.py" line="1868" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="1867" />
       <source>Render Process terminated abnormally</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1873" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1874" />
       <source>The render process crashed while loading this page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1878" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1879" />
       <source>The render process was killed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1880" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1881" />
       <source>The render process terminated while loading this page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1884" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1885" />
       <source>Try reloading the page or closing some tabs to make more memory available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2012" />
-      <source>Web Archive (*.mhtml *.mht)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2013" />
-      <source>HTML File (*.html *.htm)</source>
+      <source>Web Archive (*.mhtml *.mht)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2014" />
+      <source>HTML File (*.html *.htm)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2015" />
       <source>HTML File with all resources (*.html *.htm)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2036" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2037" />
       <source>Save Web Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2428" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2429" />
       <source>eric7 {0} ({1})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2439" />
-      <source>Print Page</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2440" />
+      <source>Print Page</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2441" />
       <source>There is already a print job in progress. Printing is temporarily disabled until the current job is finished.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2555" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="2485" />
-      <source>Print to PDF</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2486" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2556" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2486" />
+      <source>Print to PDF</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2487" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2557" />
       <source>&lt;p&gt;The PDF file &lt;b&gt;{0}&lt;/b&gt; could not be generated.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2590" />
-      <source>Quota Request</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2591" />
+      <source>Quota Request</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2592" />
       <source>&lt;p&gt; Allow the website at &lt;b&gt;{0}&lt;/b&gt; to use &lt;b&gt;{1}&lt;/b&gt; of persistent storage?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2634" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2635" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Read&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2642" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2643" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Write&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2647" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2648" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Read and Write&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2654" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2655" />
       <source>File System Access Request</source>
       <translation type="unfinished" />
     </message>
@@ -101146,10 +101166,10 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4099" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3007" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2991" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2976" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4105" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3013" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2997" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2982" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="207" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
@@ -101160,2074 +101180,2074 @@
       <translation type="unfinished">Obsah</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1758" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1758" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1764" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1764" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="306" />
       <source>Index</source>
       <translation type="unfinished">Index</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1769" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1768" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1774" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="318" />
       <source>Search</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2115" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2114" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2121" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2120" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="325" />
       <source>JavaScript Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="737" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="743" />
       <source>New Tab</source>
       <translation type="unfinished">Nový Tab</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="739" />
-      <source>&amp;New Tab</source>
-      <translation type="unfinished">&amp;Nový tab</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="740" />
-      <source>Ctrl+T</source>
-      <comment>File|New Tab</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="745" />
+      <source>&amp;New Tab</source>
+      <translation type="unfinished">&amp;Nový tab</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="746" />
+      <source>Ctrl+T</source>
+      <comment>File|New Tab</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="751" />
       <source>Open a new web browser tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="747" />
-      <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="753" />
+      <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="759" />
       <source>New Window</source>
       <translation type="unfinished">Nové okno</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="755" />
-      <source>New &amp;Window</source>
-      <translation type="unfinished">&amp;Nové okno</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="756" />
-      <source>Ctrl+N</source>
-      <comment>File|New Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="761" />
+      <source>New &amp;Window</source>
+      <translation type="unfinished">&amp;Nové okno</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="762" />
+      <source>Ctrl+N</source>
+      <comment>File|New Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="767" />
       <source>Open a new web browser window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="763" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="769" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new web browser window in the current privacy mode.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2889" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="773" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2895" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="779" />
       <source>New Private Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="781" />
       <source>New &amp;Private Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="776" />
-      <source>Ctrl+Shift+P</source>
-      <comment>File|New Private Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="782" />
+      <source>Ctrl+Shift+P</source>
+      <comment>File|New Private Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="788" />
       <source>Open a new private web browser window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="785" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="791" />
       <source>&lt;b&gt;New Private Window&lt;/b&gt;&lt;p&gt;This opens a new private web browser window by starting a new web browser instance in private mode.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2927" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2904" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="795" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2933" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2910" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="801" />
       <source>Open File</source>
       <translation type="unfinished">Otevřít soubor</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="797" />
-      <source>&amp;Open File</source>
-      <translation type="unfinished">&amp;Otevřít soubor</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="798" />
-      <source>Ctrl+O</source>
-      <comment>File|Open</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="803" />
+      <source>&amp;Open File</source>
+      <translation type="unfinished">&amp;Otevřít soubor</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="804" />
+      <source>Ctrl+O</source>
+      <comment>File|Open</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="809" />
       <source>Open a file for display</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="805" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="811" />
       <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new file for display. It pops up a file selection dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="815" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="821" />
       <source>Open File in New Tab</source>
       <translation type="unfinished">Otevřít soubor v novém tabu</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="817" />
-      <source>Open File in New &amp;Tab</source>
-      <translation type="unfinished">Otevřít soubor do nového &amp;tabu</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="818" />
-      <source>Shift+Ctrl+O</source>
-      <comment>File|Open in new tab</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="823" />
+      <source>Open File in New &amp;Tab</source>
+      <translation type="unfinished">Otevřít soubor do nového &amp;tabu</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="824" />
+      <source>Shift+Ctrl+O</source>
+      <comment>File|Open in new tab</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="829" />
       <source>Open a file for display in a new tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="825" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="831" />
       <source>&lt;b&gt;Open File in New Tab&lt;/b&gt;&lt;p&gt;This opens a new file for display in a new tab. It pops up a file selection dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="836" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="842" />
       <source>Save As</source>
       <translation type="unfinished">Uložit jako</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="838" />
-      <source>&amp;Save As...</source>
-      <translation type="unfinished">Uložit j&amp;ako...</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="839" />
-      <source>Shift+Ctrl+S</source>
-      <comment>File|Save As</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="844" />
+      <source>&amp;Save As...</source>
+      <translation type="unfinished">Uložit j&amp;ako...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="845" />
+      <source>Shift+Ctrl+S</source>
+      <comment>File|Save As</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="850" />
       <source>Save the current page to disk</source>
       <translation type="unfinished">Uložit aktuální stranu na disk</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="846" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="852" />
       <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current page to disk.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Uložit jako...&lt;/b&gt;&lt;p&gt;Uložit aktuální stranu na disk.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="854" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="860" />
       <source>Save Page Screen</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="856" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="862" />
       <source>Save Page Screen...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="863" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="869" />
       <source>Save the visible part of the current page as a screen shot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="866" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="872" />
       <source>&lt;b&gt;Save Page Screen...&lt;/b&gt;&lt;p&gt;Saves the visible part of the current page as a screen shot.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="877" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="883" />
       <source>Import Bookmarks</source>
       <translation type="unfinished">Importovat záložky</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="878" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="884" />
       <source>&amp;Import Bookmarks...</source>
       <translation type="unfinished">&amp;Importovat záložky...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="885" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="891" />
       <source>Import bookmarks from other browsers</source>
       <translation type="unfinished">Import záložek z jiných prohlížečů</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="888" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="894" />
       <source>&lt;b&gt;Import Bookmarks&lt;/b&gt;&lt;p&gt;Import bookmarks from other browsers.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Import záložek&lt;/b&gt;&lt;p&gt;Import záložek z jiných prohlížečů.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="897" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="903" />
       <source>Export Bookmarks</source>
       <translation type="unfinished">Export záložek</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="898" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="904" />
       <source>&amp;Export Bookmarks...</source>
       <translation type="unfinished">&amp;Exportovat záložky...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="905" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="911" />
       <source>Export the bookmarks into a file</source>
       <translation type="unfinished">Export záložek do souboru</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="908" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="914" />
       <source>&lt;b&gt;Export Bookmarks&lt;/b&gt;&lt;p&gt;Export the bookmarks into a file.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Export záložek&lt;/b&gt;&lt;p&gt;Export záložek do souboru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2537" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="917" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2543" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="923" />
       <source>Print</source>
       <translation type="unfinished">Tisk</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="919" />
-      <source>&amp;Print</source>
-      <translation type="unfinished">&amp;Tisk</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="920" />
-      <source>Ctrl+P</source>
-      <comment>File|Print</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="925" />
+      <source>&amp;Print</source>
+      <translation type="unfinished">&amp;Tisk</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="926" />
+      <source>Ctrl+P</source>
+      <comment>File|Print</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="931" />
       <source>Print the displayed help</source>
       <translation type="unfinished">Tisknout zobrazenou nápovědu</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="927" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="933" />
       <source>&lt;b&gt;Print&lt;/b&gt;&lt;p&gt;Print the displayed help text.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Tisk&lt;/b&gt;&lt;p&gt;Tisknout zobrazenou nápovědu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="935" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="933" />
-      <source>Print as PDF</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="941" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="939" />
+      <source>Print as PDF</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="947" />
       <source>Print the displayed help as PDF</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="943" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="949" />
       <source>&lt;b&gt;Print as PDF&lt;/b&gt;&lt;p&gt;Print the displayed help text as a PDF file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="954" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="952" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="960" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="958" />
       <source>Print Preview</source>
       <translation type="unfinished">Náhled tisku</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="961" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="967" />
       <source>Print preview of the displayed help</source>
       <translation type="unfinished">Posun na hlavní stranu nápovědy</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="964" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="970" />
       <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the displayed help text.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Vytisknout náhled&lt;/b&gt;&lt;p&gt;Tisknout náhled zobrazeného textu nápovědy.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="975" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="973" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="981" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="979" />
       <source>Send Page Link</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="982" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="988" />
       <source>Send the link of the current page via email</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="985" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="991" />
       <source>&lt;b&gt;Send Page Link&lt;/b&gt;&lt;p&gt;Send the link of the current page via email.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="994" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1000" />
       <source>Close</source>
       <translation type="unfinished">Zavřít</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="996" />
-      <source>&amp;Close</source>
-      <translation type="unfinished">&amp;Zavřít</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="997" />
-      <source>Ctrl+W</source>
-      <comment>File|Close</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1002" />
+      <source>&amp;Close</source>
+      <translation type="unfinished">&amp;Zavřít</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1003" />
+      <source>Ctrl+W</source>
+      <comment>File|Close</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1008" />
       <source>Close the current help window</source>
       <translation type="unfinished">Zavřít aktuální okno nápovědy</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1004" />
-      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1010" />
+      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1016" />
       <source>Close All</source>
       <translation type="unfinished">Zavřít vše</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1011" />
-      <source>Close &amp;All</source>
-      <translation type="unfinished">Z&amp;avřít vše</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1017" />
+      <source>Close &amp;All</source>
+      <translation type="unfinished">Z&amp;avřít vše</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1023" />
       <source>Close all help windows</source>
       <translation type="unfinished">Zavřít všechna okna s nápovědou</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1019" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1025" />
       <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all web browser windows except the first one.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1028" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1034" />
       <source>Quit</source>
       <translation type="unfinished">Konec</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3319" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1030" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3325" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1036" />
       <source>&amp;Quit</source>
       <translation type="unfinished">&amp;Konec</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1031" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1037" />
       <source>Ctrl+Q</source>
       <comment>File|Quit</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1036" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1042" />
       <source>Quit the eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1038" />
-      <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1044" />
+      <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1050" />
       <source>Backward</source>
       <translation type="unfinished">Nazpět</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1046" />
-      <source>&amp;Backward</source>
-      <translation type="unfinished">&amp;Nazpět</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1047" />
-      <source>Alt+Left</source>
-      <comment>Go|Backward</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1052" />
+      <source>&amp;Backward</source>
+      <translation type="unfinished">&amp;Nazpět</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1053" />
+      <source>Alt+Left</source>
+      <comment>Go|Backward</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1058" />
       <source>Move one screen backward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1054" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1060" />
       <source>&lt;b&gt;Backward&lt;/b&gt;&lt;p&gt;Moves one screen backward. If none is available, this action is disabled.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1064" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1070" />
       <source>Forward</source>
       <translation type="unfinished">Dopředu</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1066" />
-      <source>&amp;Forward</source>
-      <translation type="unfinished">&amp;Dopředu</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1067" />
-      <source>Alt+Right</source>
-      <comment>Go|Forward</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1072" />
+      <source>&amp;Forward</source>
+      <translation type="unfinished">&amp;Dopředu</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1073" />
+      <source>Alt+Right</source>
+      <comment>Go|Forward</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1078" />
       <source>Move one screen forward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1074" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1080" />
       <source>&lt;b&gt;Forward&lt;/b&gt;&lt;p&gt;Moves one screen forward. If none is available, this action is disabled.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1084" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1090" />
       <source>Home</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1086" />
-      <source>&amp;Home</source>
-      <translation type="unfinished">&amp;Hlavní strana</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1087" />
-      <source>Ctrl+Home</source>
-      <comment>Go|Home</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1092" />
+      <source>&amp;Home</source>
+      <translation type="unfinished">&amp;Hlavní strana</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1093" />
+      <source>Ctrl+Home</source>
+      <comment>Go|Home</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1098" />
       <source>Move to the initial screen</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1094" />
-      <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1100" />
+      <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1106" />
       <source>Reload</source>
       <translation type="unfinished">Obnovit</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1102" />
-      <source>&amp;Reload</source>
-      <translation type="unfinished">&amp;Obnovit</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1103" />
-      <source>Ctrl+R</source>
-      <comment>Go|Reload</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1104" />
-      <source>F5</source>
-      <comment>Go|Reload</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1108" />
-      <source>Reload the current screen</source>
+      <source>&amp;Reload</source>
+      <translation type="unfinished">&amp;Obnovit</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1109" />
+      <source>Ctrl+R</source>
+      <comment>Go|Reload</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1110" />
-      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
+      <source>F5</source>
+      <comment>Go|Reload</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1114" />
+      <source>Reload the current screen</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1116" />
+      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1122" />
       <source>Stop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1118" />
-      <source>&amp;Stop</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1119" />
-      <source>Ctrl+.</source>
-      <comment>Go|Stop</comment>
-      <translation type="unfinished">Ctrl+.</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1120" />
-      <source>Esc</source>
-      <comment>Go|Stop</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1124" />
-      <source>Stop loading</source>
-      <translation type="unfinished">Zastavit načítání</translation>
+      <source>&amp;Stop</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1125" />
+      <source>Ctrl+.</source>
+      <comment>Go|Stop</comment>
+      <translation type="unfinished">Ctrl+.</translation>
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1126" />
-      <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
-      <translation type="unfinished">&lt;b&gt;Zastavit&lt;/b&gt;&lt;p&gt;Zastavit načítání aktuálního tabu.&lt;/p&gt;</translation>
+      <source>Esc</source>
+      <comment>Go|Stop</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1130" />
+      <source>Stop loading</source>
+      <translation type="unfinished">Zastavit načítání</translation>
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1132" />
+      <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;b&gt;Zastavit&lt;/b&gt;&lt;p&gt;Zastavit načítání aktuálního tabu.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1138" />
       <source>Copy</source>
       <translation type="unfinished">Kopírovat</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1134" />
-      <source>&amp;Copy</source>
-      <translation type="unfinished">&amp;Kopírovat</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1135" />
-      <source>Ctrl+C</source>
-      <comment>Edit|Copy</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1140" />
+      <source>&amp;Copy</source>
+      <translation type="unfinished">&amp;Kopírovat</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1141" />
+      <source>Ctrl+C</source>
+      <comment>Edit|Copy</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1146" />
       <source>Copy the selected text</source>
       <translation type="unfinished">Kopírovat vybraný text</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1142" />
-      <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="../WebBrowser/WebBrowserWindow.py" line="1148" />
+      <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="../WebBrowser/WebBrowserWindow.py" line="1154" />
       <source>Cut</source>
       <translation type="unfinished">Vyjmout</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1150" />
-      <source>Cu&amp;t</source>
-      <translation type="unfinished">Vyjmou&amp;t</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1151" />
-      <source>Ctrl+X</source>
-      <comment>Edit|Cut</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1156" />
+      <source>Cu&amp;t</source>
+      <translation type="unfinished">Vyjmou&amp;t</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1157" />
+      <source>Ctrl+X</source>
+      <comment>Edit|Cut</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1162" />
       <source>Cut the selected text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1158" />
-      <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" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1164" />
+      <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" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1170" />
       <source>Paste</source>
       <translation type="unfinished">Vložit</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1166" />
-      <source>&amp;Paste</source>
-      <translation type="unfinished">V&amp;ložit</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1167" />
-      <source>Ctrl+V</source>
-      <comment>Edit|Paste</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1172" />
+      <source>&amp;Paste</source>
+      <translation type="unfinished">V&amp;ložit</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1173" />
+      <source>Ctrl+V</source>
+      <comment>Edit|Paste</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1178" />
       <source>Paste text from the clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1174" />
-      <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1180" />
+      <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1186" />
       <source>Undo</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1182" />
-      <source>&amp;Undo</source>
-      <translation type="unfinished">&amp;Vrátit</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1183" />
-      <source>Ctrl+Z</source>
-      <comment>Edit|Undo</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1188" />
+      <source>&amp;Undo</source>
+      <translation type="unfinished">&amp;Vrátit</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1189" />
+      <source>Ctrl+Z</source>
+      <comment>Edit|Undo</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1194" />
       <source>Undo the last edit action</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1190" />
-      <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1196" />
+      <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1202" />
       <source>Redo</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1198" />
-      <source>&amp;Redo</source>
-      <translation type="unfinished">&amp;Znovu použít</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1199" />
-      <source>Ctrl+Shift+Z</source>
-      <comment>Edit|Redo</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1204" />
+      <source>&amp;Redo</source>
+      <translation type="unfinished">&amp;Znovu použít</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1205" />
+      <source>Ctrl+Shift+Z</source>
+      <comment>Edit|Redo</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1210" />
       <source>Redo the last edit action</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1206" />
-      <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1212" />
+      <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1218" />
       <source>Select All</source>
       <translation type="unfinished">Vybrat vše</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1214" />
-      <source>&amp;Select All</source>
-      <translation type="unfinished">Vybrat vš&amp;e</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1215" />
-      <source>Ctrl+A</source>
-      <comment>Edit|Select All</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1220" />
+      <source>&amp;Select All</source>
+      <translation type="unfinished">Vybrat vš&amp;e</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1221" />
+      <source>Ctrl+A</source>
+      <comment>Edit|Select All</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1226" />
       <source>Select all text</source>
       <translation type="unfinished">Vybrat všechen text</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1222" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1228" />
       <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current browser.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1232" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1231" />
-      <source>Unselect</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1233" />
-      <source>Alt+Ctrl+A</source>
-      <comment>Edit|Unselect</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1238" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1237" />
+      <source>Unselect</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1239" />
+      <source>Alt+Ctrl+A</source>
+      <comment>Edit|Unselect</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1244" />
       <source>Clear current selection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1240" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1246" />
       <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1249" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1255" />
       <source>Find...</source>
       <translation type="unfinished">Hledat...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1251" />
-      <source>&amp;Find...</source>
-      <translation type="unfinished">&amp;Hledat...</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1252" />
-      <source>Ctrl+F</source>
-      <comment>Edit|Find</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1257" />
+      <source>&amp;Find...</source>
+      <translation type="unfinished">&amp;Hledat...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1258" />
+      <source>Ctrl+F</source>
+      <comment>Edit|Find</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1263" />
       <source>Find text in page</source>
       <translation type="unfinished">Hledat text na stránce</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1259" />
-      <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
-      <translation type="unfinished">&lt;b&gt;Hledat&lt;/b&gt;&lt;p&gt;Hledá se text na aktuální straně.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1265" />
+      <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;b&gt;Hledat&lt;/b&gt;&lt;p&gt;Hledá se text na aktuální straně.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1271" />
       <source>Find next</source>
       <translation type="unfinished">Najít další</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1267" />
-      <source>Find &amp;next</source>
-      <translation type="unfinished">Hledat &amp;následující</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1268" />
-      <source>F3</source>
-      <comment>Edit|Find next</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1273" />
+      <source>Find &amp;next</source>
+      <translation type="unfinished">Hledat &amp;následující</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1274" />
+      <source>F3</source>
+      <comment>Edit|Find next</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1279" />
       <source>Find next occurrence of text in page</source>
       <translation type="unfinished">Hledat následující výskyt textu na straně</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1275" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1281" />
       <source>&lt;b&gt;Find next&lt;/b&gt;&lt;p&gt;Find the next occurrence of text in the current page.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Hledat následující&lt;/b&gt;&lt;p&gt;Vyhledá se následující výskyt textu na aktuální straně.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1284" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1290" />
       <source>Find previous</source>
       <translation type="unfinished">Najít předchozí</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1286" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1292" />
       <source>Find &amp;previous</source>
       <translation type="unfinished">Hledat &amp;předchozí</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1287" />
-      <source>Shift+F3</source>
-      <comment>Edit|Find previous</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1293" />
+      <source>Shift+F3</source>
+      <comment>Edit|Find previous</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1299" />
       <source>Find previous occurrence of text in page</source>
       <translation type="unfinished">Hledat předchozí výskyt textu na stránce</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1296" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1302" />
       <source>&lt;b&gt;Find previous&lt;/b&gt;&lt;p&gt;Find the previous occurrence of text in the current page.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Hledat předchozí&lt;/b&gt;&lt;p&gt;Vyhledá předchozí výskyt textu na aktuální straně.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1306" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1312" />
       <source>Manage Bookmarks</source>
       <translation type="unfinished">Správa záložek</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1307" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1313" />
       <source>&amp;Manage Bookmarks...</source>
       <translation type="unfinished">&amp;Správa záložek...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1308" />
-      <source>Ctrl+Shift+B</source>
-      <comment>Help|Manage bookmarks</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1314" />
+      <source>Ctrl+Shift+B</source>
+      <comment>Help|Manage bookmarks</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1320" />
       <source>Open a dialog to manage the bookmarks.</source>
       <translation type="unfinished">Otevřít dialog pro správu záložek.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1317" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1323" />
       <source>&lt;b&gt;Manage Bookmarks...&lt;/b&gt;&lt;p&gt;Open a dialog to manage the bookmarks.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Správa záložek&lt;/b&gt;&lt;p&gt;Otevřít dialog pro správu záložek.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1326" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1332" />
       <source>Add Bookmark</source>
       <translation type="unfinished">Přidat záložku</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1328" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1334" />
       <source>Add &amp;Bookmark...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1329" />
-      <source>Ctrl+D</source>
-      <comment>Help|Add bookmark</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1335" />
+      <source>Ctrl+D</source>
+      <comment>Help|Add bookmark</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1341" />
       <source>Open a dialog to add a bookmark.</source>
       <translation type="unfinished">Otevřít dialog pro přidání záložky.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1337" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1343" />
       <source>&lt;b&gt;Add Bookmark&lt;/b&gt;&lt;p&gt;Open a dialog to add the current URL as a bookmark.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Přidat záložku&lt;/b&gt;&lt;p&gt;Otevřít dialog pro přidání aktuální URL jako záložky.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1346" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1352" />
       <source>Add Folder</source>
       <translation type="unfinished">Přidat složku</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1347" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1353" />
       <source>Add &amp;Folder...</source>
       <translation type="unfinished">Přidat s&amp;ložku...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1354" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1360" />
       <source>Open a dialog to add a new bookmarks folder.</source>
       <translation type="unfinished">Otevřít dialog pro přidání nové složky záložek.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1357" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1363" />
       <source>&lt;b&gt;Add Folder...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Přidat složku...&lt;/b&gt;&lt;p&gt;Otevřít dialog pro přidání nové složky záložek.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1366" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1372" />
       <source>Bookmark All Tabs</source>
       <translation type="unfinished">Vytvořit záložky pro všechny taby</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1367" />
-      <source>Bookmark All Tabs...</source>
-      <translation type="unfinished">Vytvořit záložky pro všechny taby...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1373" />
+      <source>Bookmark All Tabs...</source>
+      <translation type="unfinished">Vytvořit záložky pro všechny taby...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1379" />
       <source>Bookmark all open tabs.</source>
       <translation type="unfinished">Vytvořit záložky pro všechny otevřené taby.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1375" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1381" />
       <source>&lt;b&gt;Bookmark All Tabs...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder for all open tabs.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Vytvořit záložky pro všechny taby...&lt;/b&gt;&lt;p&gt;Otevřít dialog pro přidání nové složky záložek pro všechny otevřené taby.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1385" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1391" />
       <source>What's This?</source>
       <translation type="unfinished">Co je to?</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1387" />
-      <source>&amp;What's This?</source>
-      <translation type="unfinished">&amp;Co je to?</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1388" />
-      <source>Shift+F1</source>
-      <comment>Help|What's This?'</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1393" />
+      <source>&amp;What's This?</source>
+      <translation type="unfinished">&amp;Co je to?</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1394" />
+      <source>Shift+F1</source>
+      <comment>Help|What's This?'</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1399" />
       <source>Context sensitive help</source>
       <translation type="unfinished">Kontextově senzitivní nápověda</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1395" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1401" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Zobrazit kontextově senzitivní nápovědu&lt;/b&gt;&lt;p&gt;V režimu "Co je to?" se nad různými prvky aplikace u kurzoru zobrazí otazník. Když pak kliknete na tyto prvky, zobrazí se krátký popis co daný prvek znamená a jak jej použít. V dialogových oknech se tato funkce spustí tlačítkem kontextové nápovědy na horní liště.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1408" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1414" />
       <source>About</source>
       <translation type="unfinished">O aplikaci</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1408" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1414" />
       <source>&amp;About</source>
       <translation type="unfinished">O &amp;aplikaci</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1410" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1416" />
       <source>Display information about this software</source>
       <translation type="unfinished">Zobrazit informace a tomto software</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1412" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1418" />
       <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="../WebBrowser/WebBrowserWindow.py" line="1421" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1427" />
       <source>About Qt</source>
       <translation type="unfinished">O Qt</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1422" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1428" />
       <source>About &amp;Qt</source>
       <translation type="unfinished">O &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1429" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1435" />
       <source>Display information about the Qt toolkit</source>
       <translation type="unfinished">Zobrazit informace o Qt toolkitu</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1432" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1438" />
       <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" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1441" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1447" />
       <source>Zoom in</source>
       <translation type="unfinished">Přiblížit</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1443" />
-      <source>Zoom &amp;in</source>
-      <translation type="unfinished">Př&amp;iblížit</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1444" />
-      <source>Ctrl++</source>
-      <comment>View|Zoom in</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1445" />
-      <source>Zoom In</source>
-      <comment>View|Zoom in</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1449" />
-      <source>Zoom in on the web page</source>
+      <source>Zoom &amp;in</source>
+      <translation type="unfinished">Př&amp;iblížit</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1450" />
+      <source>Ctrl++</source>
+      <comment>View|Zoom in</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1451" />
+      <source>Zoom In</source>
+      <comment>View|Zoom in</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1455" />
+      <source>Zoom in on the web page</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1457" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the web page. This makes the web page bigger.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1461" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1467" />
       <source>Zoom out</source>
       <translation type="unfinished">Oddálit</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1463" />
-      <source>Zoom &amp;out</source>
-      <translation type="unfinished">&amp;Oddálit</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1464" />
-      <source>Ctrl+-</source>
-      <comment>View|Zoom out</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1465" />
-      <source>Zoom Out</source>
-      <comment>View|Zoom out</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1469" />
-      <source>Zoom out on the web page</source>
+      <source>Zoom &amp;out</source>
+      <translation type="unfinished">&amp;Oddálit</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1470" />
+      <source>Ctrl+-</source>
+      <comment>View|Zoom out</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1471" />
+      <source>Zoom Out</source>
+      <comment>View|Zoom out</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1475" />
+      <source>Zoom out on the web page</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1477" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the web page. This makes the web page smaller.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1481" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1487" />
       <source>Zoom reset</source>
       <translation type="unfinished">Resetovat lupu</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1483" />
-      <source>Zoom &amp;reset</source>
-      <translation type="unfinished">&amp;Resetovat lupu</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1484" />
-      <source>Ctrl+0</source>
-      <comment>View|Zoom reset</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1489" />
+      <source>Zoom &amp;reset</source>
+      <translation type="unfinished">&amp;Resetovat lupu</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1490" />
+      <source>Ctrl+0</source>
+      <comment>View|Zoom reset</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1495" />
       <source>Reset the zoom of the web page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1491" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1497" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the web page. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1502" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1501" />
-      <source>Show page source</source>
-      <translation type="unfinished">Zobrazit zdroj strany</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1503" />
-      <source>Ctrl+U</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1508" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1507" />
+      <source>Show page source</source>
+      <translation type="unfinished">Zobrazit zdroj strany</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1509" />
+      <source>Ctrl+U</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1514" />
       <source>Show the page source in an editor</source>
       <translation type="unfinished">Zobrazit zdroj strany v editoru</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1510" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1516" />
       <source>&lt;b&gt;Show page source&lt;/b&gt;&lt;p&gt;Show the page source in an editor.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Zobrazit zdroj strany&lt;/b&gt;&lt;p&gt;Zobrazit zdroj strany v editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1520" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1526" />
       <source>Full Screen</source>
       <translation type="unfinished">Celá obrazovka</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1522" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1528" />
       <source>&amp;Full Screen</source>
       <translation type="unfinished">&amp;Celá obrazovka</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1529" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1535" />
       <source>Meta+Ctrl+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1531" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1537" />
       <source>F11</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1538" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1537" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1544" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1543" />
       <source>Show next tab</source>
       <translation type="unfinished">Zobrazit následující tab</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1539" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1545" />
       <source>Ctrl+Alt+Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1550" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1549" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1556" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1555" />
       <source>Show previous tab</source>
       <translation type="unfinished">Zobrazit předchozí tab</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1551" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1557" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1562" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1561" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1568" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1567" />
       <source>Switch between tabs</source>
       <translation type="unfinished">Přepnout mezi taby</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1563" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1569" />
       <source>Ctrl+1</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1573" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1579" />
       <source>Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1575" />
-      <source>&amp;Preferences...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1581" />
+      <source>&amp;Preferences...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1587" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1583" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1589" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1593" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1599" />
       <source>Languages</source>
       <translation type="unfinished">Jazyky</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1595" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1601" />
       <source>&amp;Languages...</source>
       <translation type="unfinished">&amp;Jazyky...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1602" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1608" />
       <source>Configure the accepted languages for web pages</source>
       <translation type="unfinished">Nastavit polovené jazyky pro web strany</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1605" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1611" />
       <source>&lt;b&gt;Languages&lt;/b&gt;&lt;p&gt;Configure the accepted languages for web pages.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Jazyky&lt;/b&gt;&lt;p&gt;Nastavit polovené jazyky pro web strany.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1614" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1620" />
       <source>Cookies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1616" />
-      <source>C&amp;ookies...</source>
-      <translation type="unfinished">C&amp;ookies...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1622" />
+      <source>C&amp;ookies...</source>
+      <translation type="unfinished">C&amp;ookies...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1628" />
       <source>Configure cookies handling</source>
       <translation type="unfinished">Nastavit ovládání cookies</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1624" />
-      <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
-      <translation type="unfinished">&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Nastavit ovládání cookies.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1630" />
+      <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Nastavit ovládání cookies.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1636" />
       <source>Personal Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1632" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1638" />
       <source>Personal Information...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1639" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1645" />
       <source>Configure personal information for completing form fields</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1642" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1648" />
       <source>&lt;b&gt;Personal Information...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the personal information used for completing form fields.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1652" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1658" />
       <source>GreaseMonkey Scripts</source>
       <translation type="unfinished">Smazat &amp;soukromá data</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1654" />
-      <source>GreaseMonkey Scripts...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1660" />
+      <source>GreaseMonkey Scripts...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1666" />
       <source>Configure the GreaseMonkey Scripts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1662" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1668" />
       <source>&lt;b&gt;GreaseMonkey Scripts...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available GreaseMonkey Scripts.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1672" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1678" />
       <source>Edit Message Filters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1674" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1680" />
       <source>Edit Message Filters...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1681" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1687" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1684" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1690" />
       <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1695" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1701" />
       <source>Edit HTML5 Feature Permissions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1697" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1703" />
       <source>Edit HTML5 Feature Permissions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1704" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1710" />
       <source>Edit the remembered HTML5 feature permissions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1707" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1713" />
       <source>&lt;b&gt;Edit HTML5 Feature Permissions&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the remembered HTML5 feature permissions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1720" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1718" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1726" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1724" />
       <source>Sync with Table of Contents</source>
       <translation type="unfinished">Sync obsahu</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1733" />
       <source>Synchronizes the table of contents with current page</source>
       <translation type="unfinished">Synchronizuje obsah s aktuální stranou</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1730" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1736" />
       <source>&lt;b&gt;Sync with Table of Contents&lt;/b&gt;&lt;p&gt;Synchronizes the table of contents with current page.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Sync obsah&lt;/b&gt;&lt;p&gt;Synchronizuje obsah s aktuální stranou.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1741" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1740" />
-      <source>Table of Contents</source>
-      <translation type="unfinished">Obsah</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1747" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1746" />
+      <source>Table of Contents</source>
+      <translation type="unfinished">Obsah</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1753" />
       <source>Shows the table of contents window</source>
       <translation type="unfinished">Zobrazit okno s obsahem</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1749" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1755" />
       <source>&lt;b&gt;Table of Contents&lt;/b&gt;&lt;p&gt;Shows the table of contents window.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Obsah&lt;/b&gt;&lt;p&gt;Zobrazit okno s obsahem.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1760" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1766" />
       <source>Shows the index window</source>
       <translation type="unfinished">Zobrazit index okna</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1762" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1768" />
       <source>&lt;b&gt;Index&lt;/b&gt;&lt;p&gt;Shows the index window.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Index&lt;/b&gt;&lt;p&gt;Zobrazit index okna.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1781" />
       <source>Shows the search window</source>
       <translation type="unfinished">Zobrazit okno hledání</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1777" />
-      <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
-      <translation type="unfinished">&lt;b&gt;Hledání&lt;/b&gt;&lt;p&gt;Zobrazit okno hledání.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1783" />
+      <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;b&gt;Hledání&lt;/b&gt;&lt;p&gt;Zobrazit okno hledání.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1789" />
       <source>Manage QtHelp Documents</source>
       <translation type="unfinished">Uspořádat dokumenty QtNápovědy</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1784" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1790" />
       <source>Manage QtHelp &amp;Documents</source>
       <translation type="unfinished">Uspořádat QtHelp &amp;dokumenty</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1791" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1797" />
       <source>Shows a dialog to manage the QtHelp documentation set</source>
       <translation type="unfinished">Zobrazit dialog pro uspořádání QtNápovědy</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1794" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1800" />
       <source>&lt;b&gt;Manage QtHelp Documents&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the QtHelp documentation set.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Uspořádat dokumenty QtNápovědy&lt;/b&gt;&lt;p&gt;Zobrazit dialog pro uspořádání QtNápovědy.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1804" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1810" />
       <source>Reindex Documentation</source>
       <translation type="unfinished">Znovu indexovat dokumentaci</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1805" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1811" />
       <source>&amp;Reindex Documentation</source>
       <translation type="unfinished">Přeinde&amp;xovat dokumentaci</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1812" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1818" />
       <source>Reindexes the documentation set</source>
       <translation type="unfinished">Přeindexuje dokumentaci</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1815" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1821" />
       <source>&lt;b&gt;Reindex Documentation&lt;/b&gt;&lt;p&gt;Reindexes the documentation set.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Znovu indexovat dokumentaci&lt;/b&gt;&lt;p&gt;Přeindexuje dokumentaci.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1840" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1834" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1828" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1826" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1832" />
       <source>Clear private data</source>
       <translation type="unfinished">Smazat soukromá data</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1836" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1842" />
       <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like browsing history, search history or the favicons database.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Smazat soukromá data&lt;/b&gt;&lt;p&gt;Smaže soukromá data jako je historie prohlížení, vyhledávání a databáze favicon.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1846" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1852" />
       <source>Clear icons database</source>
       <translation type="unfinished">Vyčistit ikony databáze</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1847" />
-      <source>Clear &amp;icons database</source>
-      <translation type="unfinished">Smazat databázi &amp;ikon</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1853" />
+      <source>Clear &amp;icons database</source>
+      <translation type="unfinished">Smazat databázi &amp;ikon</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1859" />
       <source>Clear the database of favicons</source>
       <translation type="unfinished">Vyčistit databázi favicons</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1855" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1861" />
       <source>&lt;b&gt;Clear icons database&lt;/b&gt;&lt;p&gt;Clears the database of favicons of previously visited URLs.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Vyčistit databázi favicons&lt;/b&gt;&lt;p&gt;Vyčistit databázi favicons navštívených URL.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1867" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1865" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1873" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1871" />
       <source>Manage Saved Favicons</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1874" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1880" />
       <source>Show a dialog to manage the saved favicons</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1877" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1883" />
       <source>&lt;b&gt;Manage Saved Favicons&lt;/b&gt;&lt;p&gt;This shows a dialog to manage the saved favicons of previously visited URLs.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1887" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1893" />
       <source>Configure Search Engines</source>
       <translation type="unfinished">Konfigurovat vyhledávací enginy</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1888" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1894" />
       <source>Configure Search &amp;Engines...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1895" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1901" />
       <source>Configure the available search engines</source>
       <translation type="unfinished">Konfigurovat dostupné vyhledávací enginy</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1898" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1904" />
       <source>&lt;b&gt;Configure Search Engines...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available search engines.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Konfigurivat vyhledávací enginy...&lt;/b&gt;&lt;p&gt;Otevře dialog pro konfiguraci dostupných vyhledávacích enginů.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1908" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1914" />
       <source>Manage Saved Passwords</source>
       <translation type="unfinished">Spravovat uložená hesla</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1910" />
-      <source>Manage Saved Passwords...</source>
-      <translation type="unfinished">Spravovat uložená hesla...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1916" />
+      <source>Manage Saved Passwords...</source>
+      <translation type="unfinished">Spravovat uložená hesla...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1922" />
       <source>Manage the saved passwords</source>
       <translation type="unfinished">Spravovat vaše uložená hesla</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1918" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1924" />
       <source>&lt;b&gt;Manage Saved Passwords...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved passwords.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Spravovat uložená hesla...&lt;/b&gt;&lt;p&gt;Otevře dialog pro spravování uložených hesel.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1927" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1933" />
       <source>Ad Block</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1929" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1935" />
       <source>&amp;Ad Block...</source>
       <translation type="unfinished">&amp;Ad Block...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1936" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1942" />
       <source>Configure AdBlock subscriptions and rules</source>
       <translation type="unfinished">Konfigurovat AdBlock odebírání a pravidla</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1939" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1945" />
       <source>&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure AdBlock subscriptions and rules.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Otevře dialog pro konfiguraci AdBlock odebírání a pravidel.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1949" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1955" />
       <source>Manage SSL Certificate Errors</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1951" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1957" />
       <source>Manage SSL Certificate Errors...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1958" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1964" />
       <source>Manage the accepted SSL certificate Errors</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1961" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1967" />
       <source>&lt;b&gt;Manage SSL Certificate Errors...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the accepted SSL certificate errors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1971" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1977" />
       <source>Manage Safe Browsing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1973" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1979" />
       <source>Manage Safe Browsing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1980" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1986" />
       <source>Configure Safe Browsing and manage local cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1983" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1989" />
       <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1994" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1993" />
-      <source>Downloads</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2000" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1999" />
+      <source>Downloads</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2006" />
       <source>Shows the downloads window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2002" />
-      <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2008" />
+      <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2014" />
       <source>RSS Feeds Dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2010" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2016" />
       <source>&amp;RSS Feeds Dialog...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2011" />
-      <source>Ctrl+Shift+F</source>
-      <comment>Help|RSS Feeds Dialog</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2017" />
+      <source>Ctrl+Shift+F</source>
+      <comment>Help|RSS Feeds Dialog</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2023" />
       <source>Open a dialog showing the configured RSS feeds.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2020" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2026" />
       <source>&lt;b&gt;RSS Feeds Dialog...&lt;/b&gt;&lt;p&gt;Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2031" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2037" />
       <source>Siteinfo Dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2033" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2039" />
       <source>&amp;Siteinfo Dialog...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2034" />
-      <source>Ctrl+Shift+I</source>
-      <comment>Help|Siteinfo Dialog</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2040" />
+      <source>Ctrl+Shift+I</source>
+      <comment>Help|Siteinfo Dialog</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2046" />
       <source>Open a dialog showing some information about the current site.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2043" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2049" />
       <source>&lt;b&gt;Siteinfo Dialog...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the current site.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2053" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2059" />
       <source>Manage User Agent Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2054" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2060" />
       <source>Manage &amp;User Agent Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2061" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2067" />
       <source>Shows a dialog to manage the User Agent settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2064" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2070" />
       <source>&lt;b&gt;Manage User Agent Settings&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the User Agent settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2073" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2079" />
       <source>Synchronize data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2075" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2081" />
       <source>&amp;Synchronize Data...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2082" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2088" />
       <source>Shows a dialog to synchronize data via the network</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2085" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2091" />
       <source>&lt;b&gt;Synchronize Data...&lt;/b&gt;&lt;p&gt;This shows a dialog to synchronize data via the network.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2095" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2101" />
       <source>Manage Saved Zoom Values</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2097" />
-      <source>Manage Saved Zoom Values...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2103" />
+      <source>Manage Saved Zoom Values...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2109" />
       <source>Manage the saved zoom values</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2105" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2111" />
       <source>&lt;b&gt;Manage Saved Zoom Values...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved zoom values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2122" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2128" />
       <source>Toggle the JavaScript console window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2125" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2131" />
       <source>&lt;b&gt;JavaScript Console&lt;/b&gt;&lt;p&gt;This toggles the JavaScript console window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2135" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2134" />
-      <source>Tab Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2141" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2140" />
+      <source>Tab Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2147" />
       <source>Shows the tab manager window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2143" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2149" />
       <source>&lt;b&gt;Tab Manager&lt;/b&gt;&lt;p&gt;Shows the tab manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2151" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2157" />
       <source>Session Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2152" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2158" />
       <source>Session Manager...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2159" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2165" />
       <source>Shows the session manager window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2162" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2168" />
       <source>&lt;b&gt;Session Manager&lt;/b&gt;&lt;p&gt;Shows the session manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2173" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2171" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2179" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2177" />
       <source>Scan current site</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5180" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5170" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2187" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2185" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5185" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5175" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2193" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2191" />
       <source>IP Address Report</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5194" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2199" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2197" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5199" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2205" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2203" />
       <source>Domain Report</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2217" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2223" />
       <source>Keyboard Shortcuts</source>
       <translation type="unfinished">Klávesové zkratky</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2219" />
-      <source>Keyboard &amp;Shortcuts...</source>
-      <translation type="unfinished">Klávesové &amp;zkratky...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2225" />
+      <source>Keyboard &amp;Shortcuts...</source>
+      <translation type="unfinished">Klávesové &amp;zkratky...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2231" />
       <source>Set the keyboard shortcuts</source>
       <translation type="unfinished">Nastavení klávesových zkratek</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2227" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2233" />
       <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">&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="../WebBrowser/WebBrowserWindow.py" line="5600" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5581" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2237" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5605" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5586" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2243" />
       <source>Export Keyboard Shortcuts</source>
       <translation type="unfinished">Exportovat klávesové zkratky</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2239" />
-      <source>&amp;Export Keyboard Shortcuts...</source>
-      <translation type="unfinished">&amp;Exportovat klávesové zkratky...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2245" />
+      <source>&amp;Export Keyboard Shortcuts...</source>
+      <translation type="unfinished">&amp;Exportovat klávesové zkratky...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2251" />
       <source>Export the keyboard shortcuts</source>
       <translation type="unfinished">Export klávesových zkratek</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2247" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2253" />
       <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">&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="../WebBrowser/WebBrowserWindow.py" line="5620" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2256" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5625" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2262" />
       <source>Import Keyboard Shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2258" />
-      <source>&amp;Import Keyboard Shortcuts...</source>
-      <translation type="unfinished">&amp;Import klávesových zkratek...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2264" />
+      <source>&amp;Import Keyboard Shortcuts...</source>
+      <translation type="unfinished">&amp;Import klávesových zkratek...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2270" />
       <source>Import the keyboard shortcuts</source>
       <translation type="unfinished">Import klávesových zkratek</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2266" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2272" />
       <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">&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="../WebBrowser/WebBrowserWindow.py" line="2275" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2281" />
       <source>Protocol Handler Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2276" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2282" />
       <source>Protocol Handler Manager...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2283" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2289" />
       <source>Shows the protocol handler manager window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2286" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2292" />
       <source>&lt;b&gt;Protocol Handler Manager&lt;/b&gt;&lt;p&gt;Shows the protocol handler manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2330" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2336" />
       <source>&amp;File</source>
       <translation type="unfinished">S&amp;oubor</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2524" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2338" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2530" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2344" />
       <source>Sessions</source>
       <translation type="unfinished">Relace</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2362" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2368" />
       <source>&amp;Edit</source>
       <translation type="unfinished">&amp;Edit</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2596" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2378" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2602" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2384" />
       <source>&amp;View</source>
       <translation type="unfinished">Poh&amp;led</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2389" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2395" />
       <source>Text Encoding</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2398" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2404" />
       <source>H&amp;istory</source>
       <translation type="unfinished">H&amp;istorie</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2414" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2420" />
       <source>&amp;Bookmarks</source>
       <translation type="unfinished">&amp;Záložky</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2430" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2436" />
       <source>&amp;Settings</source>
       <translation type="unfinished">Na&amp;stavení</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2460" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2466" />
       <source>Global User Agent</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2627" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2472" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2633" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2478" />
       <source>&amp;Tools</source>
       <translation type="unfinished">&amp;Nástroje</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2634" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2479" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2640" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2485" />
       <source>&amp;VirusTotal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2598" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2485" />
-      <source>&amp;Windows</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2604" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2491" />
+      <source>&amp;Windows</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2610" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2497" />
       <source>QtHelp</source>
       <translation type="unfinished">QtNápověda</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2496" />
-      <source>&amp;Toolbars</source>
-      <translation type="unfinished">&amp;Toolbary</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2502" />
+      <source>&amp;Toolbars</source>
+      <translation type="unfinished">&amp;Toolbary</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2508" />
       <source>&amp;Help</source>
       <translation type="unfinished">&amp;Nápověda</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2531" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2537" />
       <source>Save</source>
       <translation type="unfinished">Uložit</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2551" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2557" />
       <source>Show All History...</source>
       <translation type="unfinished">Zobrazit celou historii...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2721" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2558" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2564" />
       <source>Settings</source>
       <translation type="unfinished">Nastavení</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2652" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2658" />
       <source>File</source>
       <translation type="unfinished">Soubor</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2676" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2682" />
       <source>Edit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2688" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2694" />
       <source>View</source>
       <translation type="unfinished">Pohled</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2697" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2703" />
       <source>Find</source>
       <translation type="unfinished">Hledat</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2705" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2711" />
       <source>Filter</source>
       <translation type="unfinished">Filtr</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2712" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2718" />
       <source>Filtered by: </source>
       <translation type="unfinished">Filtrováno: </translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2732" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2738" />
       <source>Tools</source>
       <translation type="unfinished">Nástroje</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2740" />
-      <source>Help</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2746" />
+      <source>Help</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2752" />
       <source>VirusTotal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2890" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2896" />
       <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2894" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2900" />
       <source>OK</source>
       <translation type="unfinished">OK</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2929" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2906" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2935" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2912" />
       <source>HTML Files (*.html *.htm *.mhtml *.mht);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2977" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2983" />
       <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chromium {2} with Security Patches {3}.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2992" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2998" />
       <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chromium {2}.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3127" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3133" />
       <source>Saved Tabs</source>
       <translation type="unfinished">Uložkt taby</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3310" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3316" />
       <source>Are you sure you want to close the web browser?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3311" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3317" />
       <source>Are you sure you want to close the web browser?
 You have {0} windows with {1} tabs open.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3910" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3916" />
       <source>Could not find any associated content.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3956" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3962" />
       <source>Unfiltered</source>
       <translation type="unfinished">Nefiltrováno</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4012" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4018" />
       <source>Updating search index</source>
       <translation type="unfinished">Aktualizovat index pro hledání</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4088" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4094" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished">Vyhledat dokumentaci...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4121" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4127" />
       <source>Help Engine</source>
       <translation type="unfinished">Engine nápovědy</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4717" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4722" />
       <source>System</source>
       <translation type="unfinished">Systém</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4721" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4726" />
       <source>ISO</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4724" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4729" />
       <source>Unicode</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4732" />
       <source>Windows</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4730" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4735" />
       <source>IBM</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4733" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4738" />
       <source>Apple</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4736" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4741" />
       <source>Other</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4763" />
-      <source>Menu Bar</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="4768" />
-      <source>Bookmarks</source>
-      <translation type="unfinished">Záložky</translation>
+      <source>Menu Bar</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="4773" />
+      <source>Bookmarks</source>
+      <translation type="unfinished">Záložky</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4778" />
       <source>Status Bar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4788" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4793" />
       <source>&amp;Show all</source>
       <translation type="unfinished">&amp;Zobrazit vše</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4790" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4795" />
       <source>&amp;Hide all</source>
       <translation type="unfinished">&amp;Skrýt vše</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5136" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5141" />
       <source>VirusTotal Scan</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5137" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5142" />
       <source>&lt;p&gt;The VirusTotal scan could not be scheduled.&lt;p&gt;
 &lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5171" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5176" />
       <source>Enter a valid IPv4 address in dotted quad notation:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5181" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5186" />
       <source>The given IP address is not in dotted quad notation.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5195" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5200" />
       <source>Enter a valid domain name:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5622" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5583" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5627" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5588" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5601" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5606" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
Binary file src/eric7/i18n/eric7_de.qm has changed
--- a/src/eric7/i18n/eric7_de.ts	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/i18n/eric7_de.ts	Sun Jun 02 09:51:20 2024 +0200
@@ -1738,42 +1738,42 @@
         <translation>{0} nicht konfiguriert.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="217"/>
+        <location filename="../Utilities/BackgroundService.py" line="230"/>
         <source>Initialization of Background Service</source>
         <translation>Initialisierung des Hintergrunddienstes</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="218"/>
-        <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Die Initialisierung des Hintergrunddienstes &lt;b&gt;{0}&lt;/b&gt; ist fehlgeschlagen.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../Utilities/BackgroundService.py" line="231"/>
+        <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Die Initialisierung des Hintergrunddienstes &lt;b&gt;{0}&lt;/b&gt; ist fehlgeschlagen.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Utilities/BackgroundService.py" line="244"/>
         <source>Restart background client?</source>
         <translation>Hintergrund Client neu starten?</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="232"/>
+        <location filename="../Utilities/BackgroundService.py" line="245"/>
         <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It&apos;s used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;&apos;Yes&apos;&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Retry&apos;&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;No&apos;&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Hintergund Client für &lt;b&gt;{0}&lt;/b&gt; wurde durch eine Exception gestoppt. Er wird für verschiedene Plugins, wie z.B. die Checker, verwendet.&lt;/p&gt;&lt;p&gt;Wähle:&lt;ul&gt;&lt;li&gt;&lt;b&gt;&apos;Ja&apos;&lt;/b&gt;, um den Client aber nicht den letzten Job neu zu starten&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Wiederholen&apos;&lt;/b&gt;, um den Client und letzten Job neu zu starten&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Nein&apos;&lt;/b&gt;, um den Client nicht neu zu starten.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Hinweis: Der Client kann immer wieder gestartet werden, indem der Einstellungsdialog mit Ok geschlossen wird oder durch das Neuladen/ Wechseln des Projektes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="261"/>
+        <location filename="../Utilities/BackgroundService.py" line="274"/>
         <source>An error in Eric&apos;s background client stopped the service.</source>
         <translation>Ein Fehler im Eric Hintergrunddienst hat den Dienst beendet.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="502"/>
+        <location filename="../Utilities/BackgroundService.py" line="515"/>
         <source>Eric&apos;s background client disconnected because of an unknown reason.</source>
         <translation>Die Verbindung zu Erics Hintergund Client wurde aus unbekanntem Grund getrennt.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="511"/>
+        <location filename="../Utilities/BackgroundService.py" line="524"/>
         <source>Background client disconnected.</source>
         <translation>Hintergrund Client wurde getrennt.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="512"/>
+        <location filename="../Utilities/BackgroundService.py" line="525"/>
         <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
         <translation>Die Verbindung zum Hintergund Client für &lt;b&gt;{0}&lt;/b&gt; wurde aus unbekanntem Grund getrennt.&lt;br&gt;Soll er neu gestartet werden?</translation>
     </message>
@@ -9248,665 +9248,665 @@
 <context>
     <name>DebugUI</name>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="210"/>
+        <location filename="../Debugger/DebugUI.py" line="207"/>
         <source>Notification</source>
         <translation>Benachrichtigung</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2342"/>
-        <location filename="../Debugger/DebugUI.py" line="237"/>
+        <location filename="../Debugger/DebugUI.py" line="2339"/>
+        <location filename="../Debugger/DebugUI.py" line="234"/>
         <source>Run Script</source>
         <translation>Skript ausführen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="239"/>
+        <location filename="../Debugger/DebugUI.py" line="236"/>
         <source>&amp;Run Script...</source>
         <translation>&amp;Skript ausführen …</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="245"/>
+        <location filename="../Debugger/DebugUI.py" line="242"/>
         <source>Run the current Script</source>
         <translation>Das aktuelle Skript ausführen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="247"/>
+        <location filename="../Debugger/DebugUI.py" line="244"/>
         <source>&lt;b&gt;Run Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Skript ausführen&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und führe das Skript außerhalb des Debuggers aus. Falls die Datei ungesicherte Änderungen hat, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2348"/>
-        <location filename="../Debugger/DebugUI.py" line="2342"/>
-        <location filename="../Debugger/DebugUI.py" line="258"/>
+        <location filename="../Debugger/DebugUI.py" line="2345"/>
+        <location filename="../Debugger/DebugUI.py" line="2339"/>
+        <location filename="../Debugger/DebugUI.py" line="255"/>
         <source>Run Project</source>
         <translation>Projekt ausführen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="260"/>
+        <location filename="../Debugger/DebugUI.py" line="257"/>
         <source>Run &amp;Project...</source>
         <translation>Projekt &amp;ausführen …</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="266"/>
+        <location filename="../Debugger/DebugUI.py" line="263"/>
         <source>Run the current Project</source>
         <translation>Das aktuelle Projekt ausführen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="268"/>
+        <location filename="../Debugger/DebugUI.py" line="265"/>
         <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Projekt ausführen&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und führe das Hauptskript des aktuellen Projektes außerhalb des Debuggers aus. Falls Dateien des aktuellen Projektes ungesicherte Änderungen haben, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="280"/>
+        <location filename="../Debugger/DebugUI.py" line="277"/>
         <source>Coverage run of Script</source>
         <translation>Abdeckungslauf des Skriptes</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="282"/>
+        <location filename="../Debugger/DebugUI.py" line="279"/>
         <source>Coverage run of Script...</source>
         <translation>Abdeckungslauf des Skriptes …</translation>
     </message>
     <message>
+        <location filename="../Debugger/DebugUI.py" line="286"/>
+        <source>Perform a coverage run of the current Script</source>
+        <translation>Führe einen Abdeckungslauf des aktuellen Skriptes durch</translation>
+    </message>
+    <message>
         <location filename="../Debugger/DebugUI.py" line="289"/>
-        <source>Perform a coverage run of the current Script</source>
-        <translation>Führe einen Abdeckungslauf des aktuellen Skriptes durch</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/DebugUI.py" line="292"/>
         <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Abdeckungslauf des Skriptes&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und führe das Skript unter Kontrolle eines Abdeckungsanalysetools aus. Falls die Datei ungesicherte Änderungen hat, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="303"/>
+        <location filename="../Debugger/DebugUI.py" line="300"/>
         <source>Coverage run of Project</source>
         <translation>Abdeckungslauf des Projektes</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="305"/>
+        <location filename="../Debugger/DebugUI.py" line="302"/>
         <source>Coverage run of Project...</source>
         <translation>Abdeckungslauf des Projektes …</translation>
     </message>
     <message>
+        <location filename="../Debugger/DebugUI.py" line="309"/>
+        <source>Perform a coverage run of the current Project</source>
+        <translation>Führe einen Abdeckungslauf des aktuellen Projektes durch</translation>
+    </message>
+    <message>
         <location filename="../Debugger/DebugUI.py" line="312"/>
-        <source>Perform a coverage run of the current Project</source>
-        <translation>Führe einen Abdeckungslauf des aktuellen Projektes durch</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/DebugUI.py" line="315"/>
         <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Abdeckungslauf des Projektes&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und führe das Hauptskript des aktuellen Projektes unter Kontrolle eines Abdeckungsanalysetools aus. Falls Dateien des aktuellen Projektes ungesicherte Änderungen haben, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="327"/>
+        <location filename="../Debugger/DebugUI.py" line="324"/>
         <source>Profile Script</source>
         <translation>Skriptprofil</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="329"/>
+        <location filename="../Debugger/DebugUI.py" line="326"/>
         <source>Profile Script...</source>
         <translation>Skriptprofil …</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="335"/>
+        <location filename="../Debugger/DebugUI.py" line="332"/>
         <source>Profile the current Script</source>
         <translation>Profil des aktuellen Skriptes erstellen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="337"/>
+        <location filename="../Debugger/DebugUI.py" line="334"/>
         <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Skriptprofil&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und führe das Skript unter Kontrolle des Python-Profilers aus. Falls die Datei ungesicherte Änderungen hat, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="347"/>
+        <location filename="../Debugger/DebugUI.py" line="344"/>
         <source>Profile Project</source>
         <translation>Projektprofil</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="349"/>
+        <location filename="../Debugger/DebugUI.py" line="346"/>
         <source>Profile Project...</source>
         <translation>Projektprofil …</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="355"/>
+        <location filename="../Debugger/DebugUI.py" line="352"/>
         <source>Profile the current Project</source>
         <translation>Profil des aktuellen Projektes erstellen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="357"/>
+        <location filename="../Debugger/DebugUI.py" line="354"/>
         <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Projektprofil&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und führe das Hauptskript des aktuellen Projektes unter Kontrolle des Python-Profilers aus. Falls Dateien des aktuellen Projektes ungesicherte Änderungen haben, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2528"/>
-        <location filename="../Debugger/DebugUI.py" line="368"/>
+        <location filename="../Debugger/DebugUI.py" line="2525"/>
+        <location filename="../Debugger/DebugUI.py" line="365"/>
         <source>Debug Script</source>
         <translation>Skript debuggen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="370"/>
+        <location filename="../Debugger/DebugUI.py" line="367"/>
         <source>&amp;Debug Script...</source>
         <translation>Skript &amp;debuggen …</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="376"/>
+        <location filename="../Debugger/DebugUI.py" line="373"/>
         <source>Debug the current Script</source>
         <translation>Das aktuelle Skript debuggen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="378"/>
+        <location filename="../Debugger/DebugUI.py" line="375"/>
         <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Skript debuggen&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und setze die erste ausführbare Python-Zeile des aktuellen Editors als aktuelle Zeile. Falls die Datei ungesicherte Änderungen hat, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2534"/>
-        <location filename="../Debugger/DebugUI.py" line="2528"/>
-        <location filename="../Debugger/DebugUI.py" line="390"/>
+        <location filename="../Debugger/DebugUI.py" line="2531"/>
+        <location filename="../Debugger/DebugUI.py" line="2525"/>
+        <location filename="../Debugger/DebugUI.py" line="387"/>
         <source>Debug Project</source>
         <translation>Projekt debuggen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="392"/>
+        <location filename="../Debugger/DebugUI.py" line="389"/>
         <source>Debug &amp;Project...</source>
         <translation>&amp;Projekt debuggen…</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="398"/>
+        <location filename="../Debugger/DebugUI.py" line="395"/>
         <source>Debug the current Project</source>
         <translation>Das aktuelle Projekt debuggen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="400"/>
+        <location filename="../Debugger/DebugUI.py" line="397"/>
         <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Projekt debuggen&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und setze die erste ausführbare Python-Zeile des Hauptskriptes des aktuellen Projektes als aktuelle Zeile. Falls Dateien des aktuellen Projektes ungesicherte Änderungen haben, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="414"/>
-        <location filename="../Debugger/DebugUI.py" line="412"/>
+        <location filename="../Debugger/DebugUI.py" line="411"/>
+        <location filename="../Debugger/DebugUI.py" line="409"/>
         <source>Restart</source>
         <translation>Neu starten</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="420"/>
+        <location filename="../Debugger/DebugUI.py" line="417"/>
         <source>Restart the last debugged script</source>
         <translation>Das zuletzt untersuchte Skript neu starten</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="422"/>
+        <location filename="../Debugger/DebugUI.py" line="419"/>
         <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neu starten&lt;/b&gt;&lt;p&gt;Setzt die Kommandozeilenparameter und setzt die erste ausführbare Python-Zeile des zuletzt untersuchten Skriptes. Falls ungesicherte Änderungen vorliegen, so werden diese zunächst gesichert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="631"/>
-        <location filename="../Debugger/DebugUI.py" line="436"/>
-        <location filename="../Debugger/DebugUI.py" line="434"/>
+        <location filename="../Debugger/DebugUI.py" line="628"/>
+        <location filename="../Debugger/DebugUI.py" line="433"/>
+        <location filename="../Debugger/DebugUI.py" line="431"/>
         <source>Stop</source>
         <translation>Anhalten</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="442"/>
+        <location filename="../Debugger/DebugUI.py" line="439"/>
         <source>Stop the running script.</source>
         <translation>Halte das laufende Skript an.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="444"/>
+        <location filename="../Debugger/DebugUI.py" line="441"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Anhalten&lt;/b&gt;&lt;p&gt;Dies hält das Skript, das im Debugger läuft, an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="455"/>
+        <location filename="../Debugger/DebugUI.py" line="452"/>
         <source>Continue</source>
         <translation>Weiter</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="457"/>
+        <location filename="../Debugger/DebugUI.py" line="454"/>
         <source>&amp;Continue</source>
         <translation>&amp;Weiter</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="463"/>
+        <location filename="../Debugger/DebugUI.py" line="460"/>
         <source>Continue running the program from the current line</source>
         <translation>Führe das laufende Programm ab der aktuellen Zeile weiter aus</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="465"/>
+        <location filename="../Debugger/DebugUI.py" line="462"/>
         <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Weiter&lt;/b&gt;&lt;p&gt;Führe das laufende Programm ab der aktuellen Zeile weiter aus. Das Programm wird angehalten, wenn es das Ende oder einen Haltepunkt erreicht.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="476"/>
+        <location filename="../Debugger/DebugUI.py" line="473"/>
         <source>Continue to Cursor</source>
         <translation>Weiter bis Einfügemarke</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="478"/>
+        <location filename="../Debugger/DebugUI.py" line="475"/>
         <source>Continue &amp;To Cursor</source>
         <translation>Weiter bis Einfüge&amp;marke</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="485"/>
+        <location filename="../Debugger/DebugUI.py" line="482"/>
         <source>Continue running the program from the current line to the current cursor position</source>
         <translation>Das Programm von der aktuellen Zeile bis zur Einfügemarke ausführen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="491"/>
+        <location filename="../Debugger/DebugUI.py" line="488"/>
         <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Weiter bis Einfügemarke&lt;/b&gt;&lt;p&gt;Das Programm von der aktuellen Zeile bis zur Einfügemarke ausführen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="501"/>
+        <location filename="../Debugger/DebugUI.py" line="498"/>
         <source>Continue Until</source>
         <translation>Weiter Bis</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="503"/>
+        <location filename="../Debugger/DebugUI.py" line="500"/>
         <source>Continue &amp;Until</source>
         <translation>Weiter &amp;Bis</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="510"/>
+        <location filename="../Debugger/DebugUI.py" line="507"/>
         <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
         <translation>Das Programm von der aktuellen Zeile bis zur Einfügemarke oder dem Verlassen des aktuellen Frame ausführen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="516"/>
+        <location filename="../Debugger/DebugUI.py" line="513"/>
         <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Weiter Bis&lt;/b&gt;&lt;p&gt;Das Programm von der aktuellen Zeile bis zur Einfügemarke /größer als die aktuelle Zeile) oder dem Verlassen des aktuellen Frame ausführen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="527"/>
+        <location filename="../Debugger/DebugUI.py" line="524"/>
         <source>Move Instruction Pointer to Cursor</source>
         <translation>Instruktionszeiger zur Cursorposition bewegen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="529"/>
+        <location filename="../Debugger/DebugUI.py" line="526"/>
         <source>&amp;Jump To Cursor</source>
         <translation>Zum Cursor &amp;springen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="536"/>
+        <location filename="../Debugger/DebugUI.py" line="533"/>
         <source>Skip the code from the current line to the current cursor position</source>
         <translation>Überspringe den Programmteil von der aktuellen Zeile bis zur aktuellen Cursorposition</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="542"/>
+        <location filename="../Debugger/DebugUI.py" line="539"/>
         <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It&apos;s not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Instruktionszeiger zur Cursorposition bewegen&lt;/b&gt;&lt;p&gt;Bewege den Python Instruktionszeiger zur aktuellen Cursorposition, ohne Programmteile dazwischen auszuführen.&lt;/p&gt;&lt;p&gt;Es ist nicht möglich, aus einer Funktion herauszuspringen oder in eine Schleife hinein. In diesem Fall wird eine Fehlermeldung im Log-Fenster ausgegeben.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="556"/>
+        <location filename="../Debugger/DebugUI.py" line="553"/>
         <source>Single Step</source>
         <translation>Einzelschritt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="558"/>
+        <location filename="../Debugger/DebugUI.py" line="555"/>
         <source>Sin&amp;gle Step</source>
         <translation>&amp;Einzelschritt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="564"/>
+        <location filename="../Debugger/DebugUI.py" line="561"/>
         <source>Execute a single Python statement</source>
         <translation>Führe eine einzelne Python-Anweisung aus</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="566"/>
+        <location filename="../Debugger/DebugUI.py" line="563"/>
         <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Einzelschritt&lt;/b&gt;&lt;p&gt;Führe eine einzelne Python-Anweisung aus. Ist die Anweisung eine &lt;tt&gt;import&lt;/tt&gt;-Anweisung, ein Klassenkonstruktor oder eine Methode oder Funktionsaufruf, so wird die Kontrolle bei der nächsten Anweisung an den Debugger zurückgegeben.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="578"/>
+        <location filename="../Debugger/DebugUI.py" line="575"/>
         <source>Step Over</source>
         <translation>Prozedurschritt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="580"/>
+        <location filename="../Debugger/DebugUI.py" line="577"/>
         <source>Step &amp;Over</source>
         <translation>&amp;Prozedurschritt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="587"/>
+        <location filename="../Debugger/DebugUI.py" line="584"/>
         <source>Execute a single Python statement staying in the current frame</source>
         <translation>Führe eine einzelne Python-Anweisung aus, bleibe aber in der aktuellen Ebene</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="593"/>
+        <location filename="../Debugger/DebugUI.py" line="590"/>
         <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Prozedurschritt&lt;/b&gt;&lt;p&gt;Führe eine einzelne Python-Anweisung aus, bleibe jedoch in der aktuellen Ebene. Ist die Anweisung eine &lt;tt&gt;import&lt;/tt&gt;-Anweisung, ein Klassenkonstruktor oder eine Methode oder Funktionsaufruf, so wird die Kontrolle nach Beendigung der Anweisung an den Debugger zurückgegeben.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="606"/>
+        <location filename="../Debugger/DebugUI.py" line="603"/>
         <source>Step Out</source>
         <translation>Rückschritt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="608"/>
+        <location filename="../Debugger/DebugUI.py" line="605"/>
         <source>Step Ou&amp;t</source>
         <translation>&amp;Rückschritt</translation>
     </message>
     <message>
+        <location filename="../Debugger/DebugUI.py" line="612"/>
+        <source>Execute Python statements until leaving the current frame</source>
+        <translation>Führe Python-Anweisung bis zum Rücksprung aus</translation>
+    </message>
+    <message>
         <location filename="../Debugger/DebugUI.py" line="615"/>
-        <source>Execute Python statements until leaving the current frame</source>
-        <translation>Führe Python-Anweisung bis zum Rücksprung aus</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/DebugUI.py" line="618"/>
         <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rücksprung&lt;/b&gt;&lt;p&gt;Führe Python-Anweisungen bis zum Rücksprung aus. Sind die Anweisungen innerhalb einer &lt;tt&gt;import&lt;/tt&gt;-Anweisung, eines Klassenkonstruktors oder einer Methode oder Funktionsaufrufes, so wird die Kontrolle nach dem Rücksprung an den Debugger zurückgegeben.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="633"/>
+        <location filename="../Debugger/DebugUI.py" line="630"/>
         <source>&amp;Stop</source>
         <translation>An&amp;halten</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="639"/>
+        <location filename="../Debugger/DebugUI.py" line="636"/>
         <source>Stop debugging</source>
         <translation>Beende das Debuggen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="641"/>
+        <location filename="../Debugger/DebugUI.py" line="638"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Anhalten&lt;/b&gt;&lt;p&gt;Beende das Debuggen des laufenden Programms.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="647"/>
+        <location filename="../Debugger/DebugUI.py" line="644"/>
         <source>Variables Type Filter</source>
         <translation>Variablentypenfilter</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="648"/>
+        <location filename="../Debugger/DebugUI.py" line="645"/>
         <source>Varia&amp;bles Type Filter...</source>
         <translation>&amp;Variablentypenfilter …</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="654"/>
+        <location filename="../Debugger/DebugUI.py" line="651"/>
         <source>Configure variables type filter</source>
         <translation>Konfiguriert die Variablentypenfilter</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="656"/>
+        <location filename="../Debugger/DebugUI.py" line="653"/>
         <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Variablenfilter&lt;/b&gt;&lt;p&gt;Konfigurieren der Variablenfilter. Nur Variablen mit einem Typ, der nicht ausgewählt ist, werden im globalen oder lokalen Variablenfenster während einer Debuggingsitzung angezeigt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="667"/>
+        <location filename="../Debugger/DebugUI.py" line="664"/>
         <source>Exceptions Filter</source>
         <translation>Ausnahmen Filter</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="668"/>
+        <location filename="../Debugger/DebugUI.py" line="665"/>
         <source>&amp;Exceptions Filter...</source>
         <translation>&amp;Ausnahmenfilter …</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="674"/>
+        <location filename="../Debugger/DebugUI.py" line="671"/>
         <source>Configure exceptions filter</source>
         <translation>Konfiguriert den Ausnahmenfilter</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="676"/>
+        <location filename="../Debugger/DebugUI.py" line="673"/>
         <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ausnahmen Filter&lt;/b&gt;&lt;p&gt;Konfiguriert den Ausnahmenfilter. Nur Ausnahmen, deren Typ aufgelistet sind, werden während einer Debug-Sitzung angezeigt.&lt;/p&gt;&lt;p&gt;Bitte beachten Sie, dass alle nicht abgefangenen Ausnahmen unabhängig von der Liste angezeigt werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="688"/>
+        <location filename="../Debugger/DebugUI.py" line="685"/>
         <source>Ignored Exceptions</source>
         <translation>Ignorierte Ausnahmen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="689"/>
+        <location filename="../Debugger/DebugUI.py" line="686"/>
         <source>&amp;Ignored Exceptions...</source>
         <translation>&amp;Ignorierte Ausnahmen …</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="695"/>
+        <location filename="../Debugger/DebugUI.py" line="692"/>
         <source>Configure ignored exceptions</source>
         <translation>Konfiguriert ignorierte Ausnahmen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="697"/>
+        <location filename="../Debugger/DebugUI.py" line="694"/>
         <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ignorierte Ausnahmen&lt;/b&gt;&lt;p&gt;Konfiguriert die ignorierten Ausnahmen. Nur Ausnahmen, deren Typ nicht aufgelistet sind, werden während einer Debug-Sitzung angezeigt.&lt;/p&gt;&lt;p&gt;Bitte beachten Sie, dass nicht abgefangenen Ausnahmen nicht ignoriert werden können.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="719"/>
-        <location filename="../Debugger/DebugUI.py" line="713"/>
-        <location filename="../Debugger/DebugUI.py" line="711"/>
+        <location filename="../Debugger/DebugUI.py" line="716"/>
+        <location filename="../Debugger/DebugUI.py" line="710"/>
+        <location filename="../Debugger/DebugUI.py" line="708"/>
         <source>Toggle Breakpoint</source>
         <translation>Haltepunkt setzen/löschen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="714"/>
+        <location filename="../Debugger/DebugUI.py" line="711"/>
         <source>Shift+F11</source>
         <comment>Debug|Toggle Breakpoint</comment>
         <translation>Shift+F11</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="721"/>
+        <location filename="../Debugger/DebugUI.py" line="718"/>
         <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Haltepunkt setzen/löschen&lt;/b&gt;&lt;p&gt;Setzt/löscht einen Haltepunkt in der aktuellen Zeile des aktuellen Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="739"/>
-        <location filename="../Debugger/DebugUI.py" line="731"/>
+        <location filename="../Debugger/DebugUI.py" line="736"/>
+        <location filename="../Debugger/DebugUI.py" line="728"/>
         <source>Edit Breakpoint</source>
         <translation>Haltepunkt bearbeiten</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="733"/>
+        <location filename="../Debugger/DebugUI.py" line="730"/>
         <source>Edit Breakpoint...</source>
         <translation>Haltepunkt bearbeiten …</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="734"/>
+        <location filename="../Debugger/DebugUI.py" line="731"/>
         <source>Shift+F12</source>
         <comment>Debug|Edit Breakpoint</comment>
         <translation>Shift+F12</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="741"/>
+        <location filename="../Debugger/DebugUI.py" line="738"/>
         <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Haltepunkt bearbeiten&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zum Bearbeiten der Haltepunkteigenschaften. Es wird mit der aktuellen Zeile des aktuellen Editors gearbeitet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="759"/>
-        <location filename="../Debugger/DebugUI.py" line="753"/>
-        <location filename="../Debugger/DebugUI.py" line="751"/>
+        <location filename="../Debugger/DebugUI.py" line="756"/>
+        <location filename="../Debugger/DebugUI.py" line="750"/>
+        <location filename="../Debugger/DebugUI.py" line="748"/>
         <source>Next Breakpoint</source>
         <translation>Nächster Haltepunkt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="754"/>
+        <location filename="../Debugger/DebugUI.py" line="751"/>
         <source>Ctrl+Shift+PgDown</source>
         <comment>Debug|Next Breakpoint</comment>
         <translation>Ctrl+Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="761"/>
+        <location filename="../Debugger/DebugUI.py" line="758"/>
         <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nächster Haltepunkt&lt;/b&gt;&lt;p&gt;Gehe zum nächsten Haltepunkt des aktuellen Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="778"/>
-        <location filename="../Debugger/DebugUI.py" line="772"/>
-        <location filename="../Debugger/DebugUI.py" line="770"/>
+        <location filename="../Debugger/DebugUI.py" line="775"/>
+        <location filename="../Debugger/DebugUI.py" line="769"/>
+        <location filename="../Debugger/DebugUI.py" line="767"/>
         <source>Previous Breakpoint</source>
         <translation>Vorheriger Haltepunkt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="773"/>
+        <location filename="../Debugger/DebugUI.py" line="770"/>
         <source>Ctrl+Shift+PgUp</source>
         <comment>Debug|Previous Breakpoint</comment>
         <translation>Ctrl+Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="780"/>
+        <location filename="../Debugger/DebugUI.py" line="777"/>
         <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vorheriger Haltepunkt&lt;/b&gt;&lt;p&gt;Gehe zum vorherigen Haltepunkt des aktuellen Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="796"/>
-        <location filename="../Debugger/DebugUI.py" line="790"/>
-        <location filename="../Debugger/DebugUI.py" line="789"/>
+        <location filename="../Debugger/DebugUI.py" line="793"/>
+        <location filename="../Debugger/DebugUI.py" line="787"/>
+        <location filename="../Debugger/DebugUI.py" line="786"/>
         <source>Clear Breakpoints</source>
         <translation>Haltepunkte löschen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="798"/>
+        <location filename="../Debugger/DebugUI.py" line="795"/>
         <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Haltepunkte löschen&lt;/b&gt;&lt;p&gt;Haltepunkte aller Editoren löschen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="822"/>
+        <location filename="../Debugger/DebugUI.py" line="819"/>
         <source>&amp;Debug</source>
         <translation>Debu&amp;g</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="824"/>
+        <location filename="../Debugger/DebugUI.py" line="821"/>
         <source>Sta&amp;rt</source>
         <translation>Sta&amp;rt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="826"/>
+        <location filename="../Debugger/DebugUI.py" line="823"/>
         <source>&amp;Breakpoints</source>
         <translation>&amp;Haltepunkte</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="869"/>
-        <location filename="../Debugger/DebugUI.py" line="867"/>
+        <location filename="../Debugger/DebugUI.py" line="866"/>
+        <location filename="../Debugger/DebugUI.py" line="864"/>
         <source>Start</source>
         <translation>Start</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="882"/>
-        <location filename="../Debugger/DebugUI.py" line="880"/>
+        <location filename="../Debugger/DebugUI.py" line="879"/>
+        <location filename="../Debugger/DebugUI.py" line="877"/>
         <source>Debug</source>
         <translation>Debug</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1345"/>
+        <location filename="../Debugger/DebugUI.py" line="1342"/>
         <source>Message: {0}</source>
         <translation>Nachricht: {0}</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1349"/>
+        <location filename="../Debugger/DebugUI.py" line="1346"/>
         <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Programm wurde mit dem Status {0} beendet.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1354"/>
+        <location filename="../Debugger/DebugUI.py" line="1351"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; wurde mit dem Status {1} beendet.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1366"/>
+        <location filename="../Debugger/DebugUI.py" line="1363"/>
         <source>Program terminated</source>
         <translation>Programm beendet</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1402"/>
+        <location filename="../Debugger/DebugUI.py" line="1399"/>
         <source>The program being debugged contains an unspecified syntax error.</source>
         <translation>Das untersuchte Programm enthält einen unspezifizierten Syntaxfehler.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1422"/>
+        <location filename="../Debugger/DebugUI.py" line="1419"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; enthält den Syntaxfehler &lt;b&gt;{1}&lt;/b&gt; in Zeile &lt;b&gt;{2}&lt;/b&gt;, Position &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1450"/>
+        <location filename="../Debugger/DebugUI.py" line="1447"/>
         <source>An unhandled exception occured. See the shell window for details.</source>
         <translation>Eine nicht abgefangene Ausnahme ist aufgetreten. Details finden Sie im Shell-Fenster.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1497"/>
+        <location filename="../Debugger/DebugUI.py" line="1494"/>
         <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das untersuchte Programm erzeugte die Ausnahme &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;„&lt;b&gt;{1}&lt;/b&gt;“&lt;br&gt;Datei: &lt;b&gt;{2}&lt;/b&gt;, Zeile: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Anhalten?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1515"/>
+        <location filename="../Debugger/DebugUI.py" line="1512"/>
         <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das untersuchte Programm erzeugte die Ausnahme &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;„&lt;b&gt;{1}&lt;/b&gt;“&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1573"/>
+        <location filename="../Debugger/DebugUI.py" line="1570"/>
         <source>&lt;p&gt;The program generate the signal &quot;{0}&quot;.&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Programm erzeugte das Signal &quot;{0}&quot;.&lt;br/&gt;Datei: &lt;b&gt;{1}&lt;/b&gt;, Zeile: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1591"/>
+        <location filename="../Debugger/DebugUI.py" line="1588"/>
         <source>The program being debugged has terminated unexpectedly.</source>
         <translation>Das untersuchte Programm wurde unerwartet beendet.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1652"/>
+        <location filename="../Debugger/DebugUI.py" line="1649"/>
         <source>No locals available.</source>
         <translation>Keine lokalen Variablen verfügbar.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1699"/>
+        <location filename="../Debugger/DebugUI.py" line="1696"/>
         <source>Breakpoint Condition Error</source>
         <translation>Fehler in Haltepunktbedingung</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1700"/>
+        <location filename="../Debugger/DebugUI.py" line="1697"/>
         <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Bedingung des Haltepunktes &lt;b&gt;{0}, {1}&lt;/b&gt; enthält einen Syntaxfehler.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1757"/>
+        <location filename="../Debugger/DebugUI.py" line="1754"/>
         <source>Watch Expression Error</source>
         <translation>Fehler in Beobachtungsausdruck</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1758"/>
+        <location filename="../Debugger/DebugUI.py" line="1755"/>
         <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Beobachtungsausdrucks &lt;b&gt;{0}&lt;/b&gt; enthält einen Syntaxfehler.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1786"/>
+        <location filename="../Debugger/DebugUI.py" line="1783"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Ein Beobachtungsausdruck „&lt;b&gt;{0}&lt;/b&gt;“ existiert bereits.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1791"/>
+        <location filename="../Debugger/DebugUI.py" line="1788"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Ein Beobachtungsausdruck „&lt;b&gt;{0}&lt;/b&gt;“ für die Variable &lt;b&gt;{1}&lt;/b&gt; existiert bereits.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1797"/>
+        <location filename="../Debugger/DebugUI.py" line="1794"/>
         <source>Watch expression already exists</source>
         <translation>Beobachtungsausdruck existiert bereits</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1962"/>
-        <location filename="../Debugger/DebugUI.py" line="1953"/>
+        <location filename="../Debugger/DebugUI.py" line="1959"/>
+        <location filename="../Debugger/DebugUI.py" line="1950"/>
         <source>Coverage Run of Project</source>
         <translation>Abdeckungslauf des Projektes</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1955"/>
+        <location filename="../Debugger/DebugUI.py" line="1952"/>
         <source>Coverage Run of Script</source>
         <translation>Abdeckungslauf des Skriptes</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2349"/>
-        <location filename="../Debugger/DebugUI.py" line="2158"/>
-        <location filename="../Debugger/DebugUI.py" line="1963"/>
+        <location filename="../Debugger/DebugUI.py" line="2346"/>
+        <location filename="../Debugger/DebugUI.py" line="2155"/>
+        <location filename="../Debugger/DebugUI.py" line="1960"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation>Für das aktuelle Projekt ist kein Hauptskript festgelegt. Abbruch</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2157"/>
-        <location filename="../Debugger/DebugUI.py" line="2148"/>
+        <location filename="../Debugger/DebugUI.py" line="2154"/>
+        <location filename="../Debugger/DebugUI.py" line="2145"/>
         <source>Profile Run of Project</source>
         <translation>Profillauf des Projekts</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2150"/>
+        <location filename="../Debugger/DebugUI.py" line="2147"/>
         <source>Profile Run of Script</source>
         <translation>Profillauf des Skriptes</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2535"/>
+        <location filename="../Debugger/DebugUI.py" line="2532"/>
         <source>There is no main script defined for the current project. No debugging possible.</source>
         <translation>Das aktuelle Projekt besitzt kein Hauptskript. Debuggen ist nicht möglich.</translation>
     </message>
@@ -10586,12 +10586,12 @@
         <translation>&lt;p&gt;Remote Debugging is aktiviert aber es wurde kein Befehl zum Anmelden angegeben.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="1451"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="1458"/>
         <source>Debug Protocol Error</source>
         <translation>Fehler im Debugprotokoll</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="1452"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="1459"/>
         <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die vom Debugger empfangene Antwort konnte nicht dekodiert werden. Bitte berichten sie diesen Fehler zusammen mit den empfangenen Daten an die eric Bugs Emailadresse.&lt;/p&gt;&lt;p&gt;Fehler: {0}&lt;/p&gt;&lt;p&gt;Daten:&lt;br/&gt;{1}&lt;/p&gt;</translation>
     </message>
@@ -12419,7 +12419,7 @@
 <context>
     <name>Editor</name>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3527"/>
+        <location filename="../QScintilla/Editor.py" line="3525"/>
         <location filename="../QScintilla/Editor.py" line="470"/>
         <location filename="../QScintilla/Editor.py" line="455"/>
         <source>Open File</source>
@@ -12491,7 +12491,7 @@
         <translation>Kommentar entfernen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="9939"/>
+        <location filename="../QScintilla/Editor.py" line="9937"/>
         <location filename="../QScintilla/Editor.py" line="969"/>
         <source>Generate Docstring</source>
         <translation>Docstring erzeugen</translation>
@@ -12769,7 +12769,7 @@
         <translation>Rechtschreibung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="9026"/>
+        <location filename="../QScintilla/Editor.py" line="9024"/>
         <location filename="../QScintilla/Editor.py" line="1367"/>
         <source>Check spelling...</source>
         <translation>Rechtschreibprüfung...</translation>
@@ -12830,7 +12830,7 @@
         <translation>Haltepunkt bearbeiten...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6498"/>
+        <location filename="../QScintilla/Editor.py" line="6496"/>
         <location filename="../QScintilla/Editor.py" line="1452"/>
         <source>Enable breakpoint</source>
         <translation>Haltepunkt aktivieren</translation>
@@ -12992,432 +12992,432 @@
         <translation>Sie versuchen, eine schreibgeschützte Datei zu ändern. Bitte speichern Sie sie zuerst in eine andere Datei.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2701"/>
+        <location filename="../QScintilla/Editor.py" line="2699"/>
         <source>Add Breakpoint</source>
         <translation>Haltepunkt hinzufügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2702"/>
+        <location filename="../QScintilla/Editor.py" line="2700"/>
         <source>No Python byte code will be created for the selected line. No break point will be set!</source>
         <translation>Für die angewählte Zeile wird kein Bytecode erzeugt. Es wird kein Haltepunkt gesetzt!</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3056"/>
+        <location filename="../QScintilla/Editor.py" line="3054"/>
         <source>Printing...</source>
         <translation>Drucke...</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Editor.py" line="3071"/>
+        <source>Printing completed</source>
+        <translation>Drucken beendet</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Editor.py" line="3073"/>
-        <source>Printing completed</source>
-        <translation>Drucken beendet</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3075"/>
         <source>Error while printing</source>
         <translation>Fehler beim Drucken</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3078"/>
+        <location filename="../QScintilla/Editor.py" line="3076"/>
         <source>Printing aborted</source>
         <translation>Drucken abgebrochen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3460"/>
+        <location filename="../QScintilla/Editor.py" line="3458"/>
         <source>File Modified</source>
         <translation>Datei geändert</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3461"/>
+        <location filename="../QScintilla/Editor.py" line="3459"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; enthält ungesicherte Änderungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3528"/>
+        <location filename="../QScintilla/Editor.py" line="3526"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht geöffnet werden.&lt;br /&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3719"/>
-        <location filename="../QScintilla/Editor.py" line="3700"/>
-        <location filename="../QScintilla/Editor.py" line="3660"/>
+        <location filename="../QScintilla/Editor.py" line="3717"/>
+        <location filename="../QScintilla/Editor.py" line="3698"/>
+        <location filename="../QScintilla/Editor.py" line="3658"/>
         <source>Save File</source>
         <translation>Datei sichern</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3661"/>
+        <location filename="../QScintilla/Editor.py" line="3659"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gesichert werden.&lt;br/&gt;Grund: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3720"/>
+        <location filename="../QScintilla/Editor.py" line="3718"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3864"/>
+        <location filename="../QScintilla/Editor.py" line="3862"/>
         <source>Save File to Device</source>
         <translation>Datei auf Gerät speichern</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3865"/>
+        <location filename="../QScintilla/Editor.py" line="3863"/>
         <source>Enter the complete device file path:</source>
         <translation>Gib den vollständigen Dateipfad auf dem Gerät ein:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5653"/>
+        <location filename="../QScintilla/Editor.py" line="5651"/>
         <source>Autocompletion</source>
         <translation>Automatische Vervollständigung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5654"/>
+        <location filename="../QScintilla/Editor.py" line="5652"/>
         <source>Autocompletion is not available because there is no autocompletion source set.</source>
         <translation>Die automatische Vervollständigung ist nicht verfügbar, da keine Quelle gesetzt ist.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5788"/>
+        <location filename="../QScintilla/Editor.py" line="5786"/>
         <source>Auto-Completion Provider</source>
         <translation>Provider für automatische Vervollständigungen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5789"/>
+        <location filename="../QScintilla/Editor.py" line="5787"/>
         <source>The completion list provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation>Der Provider für automatische Vervollständigungen namens &apos;{0}&apos; ist bereits registriert. Die Wiederholung wird ignoriert.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6085"/>
+        <location filename="../QScintilla/Editor.py" line="6083"/>
         <source>Call-Tips Provider</source>
         <translation>Calltipps-Provider</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6086"/>
+        <location filename="../QScintilla/Editor.py" line="6084"/>
         <source>The call-tips provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation>Der Calltipps-Provider namens &apos;{0}&apos; ist bereits registriert. Die Wiederholung wird ignoriert.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6502"/>
+        <location filename="../QScintilla/Editor.py" line="6500"/>
         <source>Disable breakpoint</source>
         <translation>Haltepunkt deaktivieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6917"/>
+        <location filename="../QScintilla/Editor.py" line="6915"/>
         <source>Code Coverage</source>
         <translation>Quelltext Abdeckung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6918"/>
+        <location filename="../QScintilla/Editor.py" line="6916"/>
         <source>Please select a coverage file</source>
         <translation>Bitte wählen Sie eine Datei mit Abdeckungsdaten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6993"/>
-        <location filename="../QScintilla/Editor.py" line="6985"/>
+        <location filename="../QScintilla/Editor.py" line="6991"/>
+        <location filename="../QScintilla/Editor.py" line="6983"/>
         <source>Show Code Coverage Annotations</source>
         <translation>Zeilen ohne Abdeckung Markieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6986"/>
+        <location filename="../QScintilla/Editor.py" line="6984"/>
         <source>All lines have been covered.</source>
         <translation>Alle Zeilen sind abgedeckt.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6994"/>
+        <location filename="../QScintilla/Editor.py" line="6992"/>
         <source>There is no coverage file available.</source>
         <translation>Es gibt keine Datei mit Abdeckungsinformationen.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7102"/>
+        <location filename="../QScintilla/Editor.py" line="7100"/>
         <source>Profile Data</source>
         <translation>Profildaten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7103"/>
+        <location filename="../QScintilla/Editor.py" line="7101"/>
         <source>Please select a profile file</source>
         <translation>Bitte wählen Sie eine Datei mit Profildaten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7265"/>
-        <location filename="../QScintilla/Editor.py" line="7259"/>
+        <location filename="../QScintilla/Editor.py" line="7263"/>
+        <location filename="../QScintilla/Editor.py" line="7257"/>
         <source>Syntax Error</source>
         <translation>Syntaxfehler</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7266"/>
+        <location filename="../QScintilla/Editor.py" line="7264"/>
         <source>No syntax error message available.</source>
         <translation>Keine Syntaxfehlermeldung verfügbar.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7513"/>
-        <location filename="../QScintilla/Editor.py" line="7507"/>
+        <location filename="../QScintilla/Editor.py" line="7511"/>
+        <location filename="../QScintilla/Editor.py" line="7505"/>
         <source>Warning</source>
         <translation>Warnung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7513"/>
+        <location filename="../QScintilla/Editor.py" line="7511"/>
         <source>No warning messages available.</source>
         <translation>Keine Warnmeldungen verfügbar.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7592"/>
+        <location filename="../QScintilla/Editor.py" line="7590"/>
         <source>Info: {0}</source>
         <translation>Info: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7608"/>
-        <location filename="../QScintilla/Editor.py" line="7594"/>
+        <location filename="../QScintilla/Editor.py" line="7606"/>
+        <location filename="../QScintilla/Editor.py" line="7592"/>
         <source>Error: {0}</source>
         <translation>Fehler: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7596"/>
+        <location filename="../QScintilla/Editor.py" line="7594"/>
         <source>Style: {0}</source>
         <translation>Stil: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7601"/>
+        <location filename="../QScintilla/Editor.py" line="7599"/>
         <source>Warning: {0}</source>
         <translation>Warnung: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7731"/>
+        <location filename="../QScintilla/Editor.py" line="7729"/>
         <source>Macro Name</source>
         <translation>Makro Name</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7731"/>
+        <location filename="../QScintilla/Editor.py" line="7729"/>
         <source>Select a macro name:</source>
         <translation>Wähle einen Makro Namen:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7757"/>
+        <location filename="../QScintilla/Editor.py" line="7755"/>
         <source>Load macro file</source>
         <translation>Lade Makrodatei</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7803"/>
-        <location filename="../QScintilla/Editor.py" line="7759"/>
-        <source>Macro files (*.macro)</source>
-        <translation>Makrodateien (*.macro)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7781"/>
-        <location filename="../QScintilla/Editor.py" line="7771"/>
-        <source>Error loading macro</source>
-        <translation>Fehler beim Makro Laden</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7772"/>
-        <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Die Makrodatei &lt;b&gt;{0}&lt;/b&gt; kann nicht gelesen werden.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7782"/>
-        <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Die Makrodatei &lt;b&gt;{0}&lt;/b&gt; ist zerstört.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="7801"/>
+        <location filename="../QScintilla/Editor.py" line="7757"/>
+        <source>Macro files (*.macro)</source>
+        <translation>Makrodateien (*.macro)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7779"/>
+        <location filename="../QScintilla/Editor.py" line="7769"/>
+        <source>Error loading macro</source>
+        <translation>Fehler beim Makro Laden</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7770"/>
+        <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Die Makrodatei &lt;b&gt;{0}&lt;/b&gt; kann nicht gelesen werden.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7780"/>
+        <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Die Makrodatei &lt;b&gt;{0}&lt;/b&gt; ist zerstört.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7799"/>
         <source>Save macro file</source>
         <translation>Makrodatei schreiben</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7819"/>
+        <location filename="../QScintilla/Editor.py" line="7817"/>
         <source>Save macro</source>
         <translation>Makro speichern</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7820"/>
+        <location filename="../QScintilla/Editor.py" line="7818"/>
         <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Makrodatei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7835"/>
+        <location filename="../QScintilla/Editor.py" line="7833"/>
         <source>Error saving macro</source>
         <translation>Fehler beim Makro speichern</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7836"/>
+        <location filename="../QScintilla/Editor.py" line="7834"/>
         <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Makrodatei &lt;b&gt;{0}&lt;/b&gt; kann nicht geschrieben werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7849"/>
+        <location filename="../QScintilla/Editor.py" line="7847"/>
         <source>Start Macro Recording</source>
         <translation>Makroaufzeichnung starten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7850"/>
+        <location filename="../QScintilla/Editor.py" line="7848"/>
         <source>Macro recording is already active. Start new?</source>
         <translation>Eine Makroaufzeichnung ist bereits aktiv. Neu starten?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7876"/>
+        <location filename="../QScintilla/Editor.py" line="7874"/>
         <source>Macro Recording</source>
         <translation>Makroaufzeichnung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7877"/>
+        <location filename="../QScintilla/Editor.py" line="7875"/>
         <source>Enter name of the macro:</source>
         <translation>Gib einen Namen für das Makro ein:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8060"/>
+        <location filename="../QScintilla/Editor.py" line="8058"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8245"/>
+        <location filename="../QScintilla/Editor.py" line="8243"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; wurde geändert, während sie in eric geöffnet war. Neu einlesen?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8251"/>
+        <location filename="../QScintilla/Editor.py" line="8249"/>
         <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
         <translation>&lt;br&gt;&lt;b&gt;Warnung:&lt;/b&gt; Vorgenommenen Änderungen gehen beim neu einlesen verloren.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8258"/>
+        <location filename="../QScintilla/Editor.py" line="8256"/>
         <source>File changed</source>
         <translation>Datei geändert</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8351"/>
+        <location filename="../QScintilla/Editor.py" line="8349"/>
         <source>Reload File</source>
         <translation>Datei neu laden</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8352"/>
+        <location filename="../QScintilla/Editor.py" line="8350"/>
         <source>&lt;p&gt;The editor contains unsaved modifications.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reloading it.&lt;/p&gt;&lt;p&gt;Shall the editor really be reloaded?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Editor enthält ungesicherte Änderungen.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Warnung:&lt;/b&gt; Alle Änderung gehen beim Laden verloren.&lt;/p&gt;&lt;p&gt;Soll der Editor wirklich neu geladen werden?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8452"/>
+        <location filename="../QScintilla/Editor.py" line="8450"/>
         <source>Drop Error</source>
         <translation>Drop Fehler</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8453"/>
+        <location filename="../QScintilla/Editor.py" line="8451"/>
         <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="../QScintilla/Editor.py" line="8472"/>
+        <source>Resources</source>
+        <translation>Ressourcen</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Editor.py" line="8474"/>
-        <source>Resources</source>
-        <translation>Ressourcen</translation>
+        <source>Add file...</source>
+        <translation>Datei hinzufügen...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8475"/>
+        <source>Add files...</source>
+        <translation>Dateien hinzufügen...</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="8476"/>
-        <source>Add file...</source>
-        <translation>Datei hinzufügen...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8477"/>
-        <source>Add files...</source>
-        <translation>Dateien hinzufügen...</translation>
+        <source>Add aliased file...</source>
+        <translation>Aliased-Datei hinzufügen...</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="8478"/>
-        <source>Add aliased file...</source>
-        <translation>Aliased-Datei hinzufügen...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8480"/>
         <source>Add localized resource...</source>
         <translation>Lokalisierte Ressource hinzufügen...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8483"/>
+        <location filename="../QScintilla/Editor.py" line="8481"/>
         <source>Add resource frame</source>
         <translation>Ressourcenrahmen hinzufügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8503"/>
+        <location filename="../QScintilla/Editor.py" line="8501"/>
         <source>Add file resource</source>
         <translation>Dateiressource hinzufügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8517"/>
+        <location filename="../QScintilla/Editor.py" line="8515"/>
         <source>Add file resources</source>
         <translation>Dateiressourcen hinzufügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8541"/>
-        <location filename="../QScintilla/Editor.py" line="8535"/>
+        <location filename="../QScintilla/Editor.py" line="8539"/>
+        <location filename="../QScintilla/Editor.py" line="8533"/>
         <source>Add aliased file resource</source>
         <translation>Aliased-Dateiressourcen hinzufügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8542"/>
+        <location filename="../QScintilla/Editor.py" line="8540"/>
         <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
         <translation>Alias für Datei &lt;b&gt;{0}&lt;/b&gt;:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8617"/>
+        <location filename="../QScintilla/Editor.py" line="8615"/>
         <source>Package Diagram</source>
         <translation>Package-Diagramm</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8618"/>
+        <location filename="../QScintilla/Editor.py" line="8616"/>
         <source>Include class attributes?</source>
         <translation>Klassenattribute anzeigen?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8638"/>
+        <location filename="../QScintilla/Editor.py" line="8636"/>
         <source>Imports Diagram</source>
         <translation>Imports Diagramm</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8639"/>
+        <location filename="../QScintilla/Editor.py" line="8637"/>
         <source>Include imports from external modules?</source>
         <translation>Imports externer Module anzeigen?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8658"/>
+        <location filename="../QScintilla/Editor.py" line="8656"/>
         <source>Application Diagram</source>
         <translation>Applikations-Diagramm</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8659"/>
+        <location filename="../QScintilla/Editor.py" line="8657"/>
         <source>Include module names?</source>
         <translation>Modulnamen anzeigen?</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Editor.py" line="9028"/>
+        <source>Add to dictionary</source>
+        <translation>Zum Wörterbuch hinzufügen</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Editor.py" line="9030"/>
-        <source>Add to dictionary</source>
-        <translation>Zum Wörterbuch hinzufügen</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="9032"/>
         <source>Ignore All</source>
         <translation>Alle ignorieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="9479"/>
+        <location filename="../QScintilla/Editor.py" line="9477"/>
         <source>Sort Lines</source>
         <translation>Zeilen sortieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="9480"/>
+        <location filename="../QScintilla/Editor.py" line="9478"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation>Die Auswahl enthält für eine numerische Sortierung ungültige Daten.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="9573"/>
+        <location filename="../QScintilla/Editor.py" line="9571"/>
         <source>Register Mouse Click Handler</source>
         <translation>Maus Klick Handler registrieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="9574"/>
+        <location filename="../QScintilla/Editor.py" line="9572"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation>Ein Maus Klick Handler für &quot;{0}&quot; wurde bereits durch &quot;{1}&quot; registriert. Die Anfrage durch &quot;{2}&quot; wird abgebrochen...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="9667"/>
+        <location filename="../QScintilla/Editor.py" line="9665"/>
         <source>{0:4d}    {1}</source>
         <comment>line number, source code</comment>
         <translation>{0:4d}    {1}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="9673"/>
+        <location filename="../QScintilla/Editor.py" line="9671"/>
         <source>{0:4d}    {1}
     =&gt;  {2}</source>
         <comment>line number, source code, file name</comment>
@@ -13425,12 +13425,12 @@
     =&gt;  {2}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="9742"/>
+        <location filename="../QScintilla/Editor.py" line="9740"/>
         <source>EditorConfig Properties</source>
         <translation>EditorConfig Eigenschaften</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="9743"/>
+        <location filename="../QScintilla/Editor.py" line="9741"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die EditorConfig Eigenschaften für die Datei &lt;b&gt;{0}&lt;/b&gt; konnten nicht geladen werden.&lt;/p&gt;</translation>
     </message>
@@ -18611,12 +18611,12 @@
 <context>
     <name>EricApplication</name>
     <message>
-        <location filename="../EricWidgets/EricApplication.py" line="227"/>
+        <location filename="../EricWidgets/EricApplication.py" line="226"/>
         <source>Loading Style Sheet</source>
         <translation>Lade Stylesheet</translation>
     </message>
     <message>
-        <location filename="../EricWidgets/EricApplication.py" line="230"/>
+        <location filename="../EricWidgets/EricApplication.py" line="229"/>
         <source>&lt;p&gt;The Qt Style Sheet file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Qt-Stylesheet &lt;b&gt;{0}&lt;/b&gt; konnte nicht geladen werden.&lt;br&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
@@ -18776,12 +18776,12 @@
 <context>
     <name>EricJsonServer</name>
     <message>
-        <location filename="../EricNetwork/EricJsonServer.py" line="185"/>
+        <location filename="../EricNetwork/EricJsonServer.py" line="199"/>
         <source>JSON Protocol Error</source>
         <translation>JSON Protokollfehler</translation>
     </message>
     <message>
-        <location filename="../EricNetwork/EricJsonServer.py" line="186"/>
+        <location filename="../EricNetwork/EricJsonServer.py" line="200"/>
         <source>&lt;p&gt;The response received from the client could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die vom Client empfangene Antwort konnte nicht dekodiert werden. Bitte berichten sie diesen Fehler zusammen mit den empfangenen Daten an die eric Bugs Emailadresse.&lt;/p&gt;&lt;p&gt;Fehler: {0}&lt;/p&gt;&lt;p&gt;Daten:&lt;br/&gt;{1}&lt;/p&gt;</translation>
     </message>
@@ -19252,39 +19252,39 @@
 <context>
     <name>EricPathPickerBase</name>
     <message>
-        <location filename="../EricWidgets/EricPathPicker.py" line="178"/>
-        <location filename="../EricWidgets/EricPathPicker.py" line="107"/>
-        <location filename="../EricWidgets/EricPathPicker.py" line="100"/>
+        <location filename="../EricWidgets/EricPathPicker.py" line="177"/>
+        <location filename="../EricWidgets/EricPathPicker.py" line="106"/>
+        <location filename="../EricWidgets/EricPathPicker.py" line="99"/>
         <source>Enter Path Name</source>
         <translation>Gib den Pfadnamen ein</translation>
     </message>
     <message>
-        <location filename="../EricWidgets/EricPathPicker.py" line="175"/>
+        <location filename="../EricWidgets/EricPathPicker.py" line="174"/>
         <source>Enter Path Names separated by &apos;;&apos;</source>
         <translation>Gib Pfadnamen getrennt durch &quot;;&quot; ein</translation>
     </message>
     <message>
-        <location filename="../EricWidgets/EricPathPicker.py" line="520"/>
+        <location filename="../EricWidgets/EricPathPicker.py" line="519"/>
         <source>Choose a file to open</source>
         <translation>Wähle eine zu öffnende Datei aus</translation>
     </message>
     <message>
-        <location filename="../EricWidgets/EricPathPicker.py" line="522"/>
+        <location filename="../EricWidgets/EricPathPicker.py" line="521"/>
         <source>Choose files to open</source>
         <translation>Wähle zu öffnende Dateien aus</translation>
     </message>
     <message>
-        <location filename="../EricWidgets/EricPathPicker.py" line="524"/>
+        <location filename="../EricWidgets/EricPathPicker.py" line="523"/>
         <source>Choose files and directories</source>
         <translation>Wähle Dateien und Verzeichnisse aus</translation>
     </message>
     <message>
-        <location filename="../EricWidgets/EricPathPicker.py" line="530"/>
+        <location filename="../EricWidgets/EricPathPicker.py" line="529"/>
         <source>Choose a file to save</source>
         <translation>Wähle eine zu schreibende Datei aus</translation>
     </message>
     <message>
-        <location filename="../EricWidgets/EricPathPicker.py" line="532"/>
+        <location filename="../EricWidgets/EricPathPicker.py" line="531"/>
         <source>Choose a directory</source>
         <translation>Wähle ein Verzeichnis aus</translation>
     </message>
@@ -20066,12 +20066,12 @@
 <context>
     <name>EricTldExtractor</name>
     <message>
-        <location filename="../EricNetwork/EricTldExtractor.py" line="294"/>
+        <location filename="../EricNetwork/EricTldExtractor.py" line="293"/>
         <source>TLD Data File not found</source>
         <translation>TLD-Datei nicht gefunden</translation>
     </message>
     <message>
-        <location filename="../EricNetwork/EricTldExtractor.py" line="295"/>
+        <location filename="../EricNetwork/EricTldExtractor.py" line="294"/>
         <source>&lt;p&gt;The file &apos;effective_tld_names.dat&apos; was not found!&lt;br/&gt;You can download it from &apos;&lt;a href=&quot;{0}&quot;&gt;&lt;b&gt;here&lt;/b&gt;&lt;/a&gt;&apos; to one of the following paths:&lt;/p&gt;&lt;ul&gt;{1}&lt;/ul&gt;</source>
         <translation>&lt;p&gt;Die Datei &apos;effective_tld_names.dat&apos; konnte nicht gefunden werden!&lt;br/&gt;Sie können sie &apos;&lt;a href=&quot;{0}&quot;&gt;&lt;b&gt;hier&lt;/b&gt;&lt;/a&gt;&apos; herunterladen und in einem der folgenden Pfade speichern:&lt;/p&gt;&lt;ul&gt;{1}&lt;/ul&gt;</translation>
     </message>
@@ -31999,77 +31999,77 @@
         <translation>Leere Seite</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="573"/>
+        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="575"/>
         <source>Backward</source>
         <translation>Zurück</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="578"/>
+        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="580"/>
         <source>Forward</source>
         <translation>Vorwärts</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="583"/>
+        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="585"/>
         <source>Reload</source>
         <translation>Erneut laden</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="595"/>
+        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="597"/>
         <source>Copy Page URL to Clipboard</source>
         <translation>Seiten-URL in die Zwischenablage kopieren</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="601"/>
+        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="603"/>
         <source>Bookmark Page</source>
         <translation>Lesezeichen für Seite</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="609"/>
+        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="611"/>
         <source>Zoom in</source>
         <translation>Vergrößern</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="614"/>
+        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="616"/>
         <source>Zoom out</source>
         <translation>Verkleinern</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="619"/>
+        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="621"/>
         <source>Zoom reset</source>
         <translation>Vergrößerung zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="625"/>
+        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="627"/>
         <source>Copy</source>
         <translation>Kopieren</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="631"/>
+        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="633"/>
         <source>Select All</source>
         <translation>Alles auswählen</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="638"/>
+        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="640"/>
         <source>Close</source>
         <translation>Schließen</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="643"/>
+        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="645"/>
         <source>Close Others</source>
         <translation>Andere schließen</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="661"/>
+        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="663"/>
         <source>Open Link in New Page</source>
         <translation>Link in neuer Seite öffnen</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="668"/>
+        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="670"/>
         <source>Open Link in Background Page</source>
         <translation>Link in Hintergrundseite öffnen</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="676"/>
+        <location filename="../HelpViewer/HelpViewerImplQWE.py" line="678"/>
         <source>Copy URL to Clipboard</source>
         <translation>URL in die Zwischenablage kopieren</translation>
     </message>
@@ -32077,184 +32077,184 @@
 <context>
     <name>HelpViewerWidget</name>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="126"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="127"/>
         <source>Open a local file</source>
         <translation>Lokale Datei öffnen</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="132"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="133"/>
         <source>Select action from menu</source>
         <translation>Wähle eine Aktion aus dem Menü</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="148"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="149"/>
         <source>Move one page backward</source>
         <translation>Eine Seite zurück</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="153"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="154"/>
         <source>Move one page forward</source>
         <translation>Eine Seite vorwärts</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="165"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="166"/>
         <source>Reload the current page</source>
         <translation>Die aktuelle Seite erneut laden</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="176"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="177"/>
         <source>Zoom in on the current page</source>
         <translation>Die angezeigte Seite vergrößern</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="182"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="183"/>
         <source>Zoom out on the current page</source>
         <translation>Die angezeigte Seite verkleinern</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="189"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="190"/>
         <source>Reset the zoom level of the current page</source>
         <translation>Die Anzeigegröße der Seite zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="201"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="202"/>
         <source>Add a new empty page</source>
         <translation>Eine neue, leere Seite hinzufügen</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="207"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="208"/>
         <source>Close the current page</source>
         <translation>Die aktuelle Seite schließen</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="218"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="219"/>
         <source>Show or hide the search pane</source>
         <translation>Suche anzeigen oder ausblenden</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="294"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="295"/>
         <source>Show list of open pages</source>
         <translation>Liste offener Seiten anzeigen</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="297"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="298"/>
         <source>Show the table of contents</source>
         <translation>Inhaltsverzeichnis anzeigen</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="300"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="301"/>
         <source>Show the help document index</source>
         <translation>Hilfeindex anzeigen</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="303"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="304"/>
         <source>Show the help search window</source>
         <translation>Suche in der Hilfe anzeigen</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="306"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="307"/>
         <source>Show list of bookmarks</source>
         <translation>Lesezeichenliste anzeigen</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="444"/>
-        <source>eric API Documentation</source>
-        <translation>eric-API-Dokumentation</translation>
-    </message>
-    <message>
         <location filename="../HelpViewer/HelpViewerWidget.py" line="445"/>
-        <source>Python 3 Documentation</source>
-        <translation>Python 3-Dokumentation</translation>
+        <source>eric API Documentation</source>
+        <translation>eric-API-Dokumentation</translation>
     </message>
     <message>
         <location filename="../HelpViewer/HelpViewerWidget.py" line="446"/>
-        <source>Qt5 Documentation</source>
-        <translation>Qt5 Dokumentation</translation>
+        <source>Python 3 Documentation</source>
+        <translation>Python 3-Dokumentation</translation>
     </message>
     <message>
         <location filename="../HelpViewer/HelpViewerWidget.py" line="447"/>
-        <source>Qt6 Documentation</source>
-        <translation>Qt6 Dokumentation</translation>
+        <source>Qt5 Documentation</source>
+        <translation>Qt5 Dokumentation</translation>
     </message>
     <message>
         <location filename="../HelpViewer/HelpViewerWidget.py" line="448"/>
-        <source>PyQt5 Documentation</source>
-        <translation>PyQt5-Dokumentation</translation>
+        <source>Qt6 Documentation</source>
+        <translation>Qt6 Dokumentation</translation>
     </message>
     <message>
         <location filename="../HelpViewer/HelpViewerWidget.py" line="449"/>
-        <source>PyQt6 Documentation</source>
-        <translation>PyQt6-Dokumentation</translation>
+        <source>PyQt5 Documentation</source>
+        <translation>PyQt5-Dokumentation</translation>
     </message>
     <message>
         <location filename="../HelpViewer/HelpViewerWidget.py" line="450"/>
-        <source>PySide2 Documentation</source>
-        <translation>PySide2-Dokumentation</translation>
+        <source>PyQt6 Documentation</source>
+        <translation>PyQt6-Dokumentation</translation>
     </message>
     <message>
         <location filename="../HelpViewer/HelpViewerWidget.py" line="451"/>
+        <source>PySide2 Documentation</source>
+        <translation>PySide2-Dokumentation</translation>
+    </message>
+    <message>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="452"/>
         <source>PySide6 Documentation</source>
         <translation>PySide6-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="508"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="509"/>
         <source>Open HTML File</source>
         <translation>HTML Datei öffnen</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="510"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="511"/>
         <source>HTML Files (*.htm *.html);;All Files (*)</source>
         <translation>HTML Dateien (*.htm *.html);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="697"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="698"/>
         <source>Help Engine</source>
         <translation>Hilfe</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="721"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="722"/>
         <source>Looking for Documentation...</source>
         <translation>Suche nach Dokumentation...</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="732"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="733"/>
         <source>eric Help Viewer</source>
         <translation>eric Hilfeanzeige</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="757"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="758"/>
         <source>Manage QtHelp Documents</source>
         <translation>QtHelp-Dokumente verwalten</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="760"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="761"/>
         <source>Reindex Documentation</source>
         <translation>Dokumentation reindizieren</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="765"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="766"/>
         <source>Configure Help Documentation</source>
         <translation>Hilfedokumentation konfigurieren</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="858"/>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="838"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="859"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="839"/>
         <source>Clear History</source>
         <translation>Chronik löschen</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="961"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="962"/>
         <source>Updating search index</source>
         <translation>Aktualisiere Suchindex</translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="1019"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="1020"/>
         <source>Filtered by: </source>
         <translation>Filter: </translation>
     </message>
     <message>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="1055"/>
-        <location filename="../HelpViewer/HelpViewerWidget.py" line="1050"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="1056"/>
+        <location filename="../HelpViewer/HelpViewerWidget.py" line="1051"/>
         <source>Unfiltered</source>
         <translation>Ungefiltert</translation>
     </message>
@@ -41829,22 +41829,22 @@
 <context>
     <name>Histedit</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="76"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="75"/>
         <source>Starting histedit session</source>
         <translation>Starte histedit Sitzung</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="102"/>
         <source>Continue histedit session</source>
         <translation>histedit Sitzung fortsetzen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="129"/>
         <source>Abort histedit session</source>
         <translation>histedit Sitzung abbrechen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="159"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="157"/>
         <source>Edit Plan</source>
         <translation>Änderungsplan bearbeiten</translation>
     </message>
@@ -49929,17 +49929,17 @@
 <context>
     <name>LogViewerPage</name>
     <message>
-        <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="36"/>
+        <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="33"/>
         <source>&lt;b&gt;Message Filters for Standard Output&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stdout.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Meldungsfilter für Standardausgabe&lt;/b&gt;&lt;p&gt;Diese Liste zeigt alle konfigurierten Meldungsfilter zur Unterdrückung von Meldungen des Standardausgabekanals.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="43"/>
+        <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="40"/>
         <source>&lt;b&gt;Message Filters for Standard Error &lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stderr.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Meldungsfilter für Standardfehler&lt;/b&gt;&lt;p&gt;Diese Liste zeigt alle konfigurierten Meldungsfilter zur Unterdrückung von Meldungen des Standardfehlerkanals.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="50"/>
+        <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="47"/>
         <source>&lt;b&gt;Message Filters for both&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stdout or stderr.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Meldungsfilter für beide&lt;/b&gt;&lt;p&gt;Diese Liste zeigt alle konfigurierten Meldungsfilter zur Unterdrückung von Meldungen des Standardausgabekanals oder des Standardfehlerkanals.&lt;/p&gt;</translation>
     </message>
@@ -51499,8 +51499,8 @@
         <translation>Gib das Netzwerkkennwort ein</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="364"/>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="347"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="361"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="344"/>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.ui" line="0"/>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.ui" line="0"/>
         <source>Press to show the password</source>
@@ -51784,66 +51784,66 @@
         <translation>Gib die URL für die Callope mini MicroPython Dokumentation ein</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="56"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="53"/>
         <source>Automatic</source>
         <translation>Automatisch</translation>
     </message>
     <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="55"/>
+        <source>Light</source>
+        <translation>Hell</translation>
+    </message>
+    <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="58"/>
-        <source>Light</source>
-        <translation>Hell</translation>
+        <source>Dark</source>
+        <translation>Dunkel</translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="61"/>
-        <source>Dark</source>
-        <translation>Dunkel</translation>
+        <source>Blue Cerulean</source>
+        <translation>Zweckhaftes Blau</translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="64"/>
-        <source>Blue Cerulean</source>
-        <translation>Zweckhaftes Blau</translation>
+        <source>Brown Sand</source>
+        <translation>Brauner Sand</translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="67"/>
-        <source>Brown Sand</source>
-        <translation>Brauner Sand</translation>
+        <source>Blue NCS</source>
+        <translation>NCS Blau</translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="70"/>
-        <source>Blue NCS</source>
-        <translation>NCS Blau</translation>
+        <source>High Contrast</source>
+        <translation>Hoher Kontrast</translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="73"/>
-        <source>High Contrast</source>
-        <translation>Hoher Kontrast</translation>
+        <source>Blue Icy</source>
+        <translation>Eisblau</translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="76"/>
-        <source>Blue Icy</source>
-        <translation>Eisblau</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="79"/>
         <source>Qt</source>
         <translation>Qt</translation>
     </message>
     <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="90"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="88"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="85"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="82"/>
+        <source>All Files (*)</source>
+        <translation>Alle Dateien (*)</translation>
+    </message>
+    <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="93"/>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="91"/>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="88"/>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="85"/>
-        <source>All Files (*)</source>
-        <translation>Alle Dateien (*)</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="96"/>
         <source>open</source>
         <translation>offen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="360"/>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="343"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="357"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="340"/>
         <source>Press to hide the password</source>
         <translation>Drücken, um das Kennwort auszublenden</translation>
     </message>
@@ -58072,62 +58072,62 @@
         <translation>In Nutzerverzeichnis installieren</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFileSelectionDialog.py" line="44"/>
+        <location filename="../PipInterface/PipFileSelectionDialog.py" line="42"/>
         <source>Enter requirements file:</source>
         <translation>Gib die Anforderungsdatei ein:</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFileSelectionDialog.py" line="47"/>
+        <location filename="../PipInterface/PipFileSelectionDialog.py" line="45"/>
         <source>Press to select the requirements file through a file selection dialog.</source>
         <translation>Drücken, um die Anforderungsdatei mit einem Dateiauswahldialog zu wählen.</translation>
     </message>
     <message>
+        <location filename="../PipInterface/PipFileSelectionDialog.py" line="50"/>
+        <source>Text Files (*.txt);;All Files (*)</source>
+        <translation>Textdateien (*.txt);;Alle Dateien (*)</translation>
+    </message>
+    <message>
         <location filename="../PipInterface/PipFileSelectionDialog.py" line="52"/>
-        <source>Text Files (*.txt);;All Files (*)</source>
-        <translation>Textdateien (*.txt);;Alle Dateien (*)</translation>
-    </message>
-    <message>
-        <location filename="../PipInterface/PipFileSelectionDialog.py" line="54"/>
         <source>Enter &apos;pyproject.toml&apos; file:</source>
         <translation>Gib die &apos;pyproject.toml&apos; Datei ein:</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFileSelectionDialog.py" line="57"/>
+        <location filename="../PipInterface/PipFileSelectionDialog.py" line="55"/>
         <source>Press to select the &apos;pyproject.toml&apos; file through a file selection dialog.</source>
         <translation>Drücken, um die &apos;pyproject.toml&apos; Datei mit einem Dateiauswahldialog zu wählen.</translation>
     </message>
     <message>
+        <location filename="../PipInterface/PipFileSelectionDialog.py" line="60"/>
+        <source>TOML Files (*.toml);;All Files (*)</source>
+        <translation>TOML Dateien (*.toml);;Alle Dateien (*)</translation>
+    </message>
+    <message>
         <location filename="../PipInterface/PipFileSelectionDialog.py" line="62"/>
-        <source>TOML Files (*.toml);;All Files (*)</source>
-        <translation>TOML Dateien (*.toml);;Alle Dateien (*)</translation>
-    </message>
-    <message>
-        <location filename="../PipInterface/PipFileSelectionDialog.py" line="64"/>
         <source>Enter package file:</source>
         <translation>Gib die Paketdatei ein:</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFileSelectionDialog.py" line="67"/>
+        <location filename="../PipInterface/PipFileSelectionDialog.py" line="65"/>
         <source>Press to select the package file through a file selection dialog.</source>
         <translation>Drücken, um die Paketdatei mit einem Dateiauswahldialog zu wählen.</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFileSelectionDialog.py" line="73"/>
+        <location filename="../PipInterface/PipFileSelectionDialog.py" line="71"/>
         <source>Python Wheel (*.whl);;Archive Files (*.tar.gz *.zip);;All Files (*)</source>
         <translation>Python Wheel (*.whl);;Archivdateien (*.tar.gz *.zip);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFileSelectionDialog.py" line="80"/>
+        <location filename="../PipInterface/PipFileSelectionDialog.py" line="78"/>
         <source>Enter file name:</source>
         <translation>Gib den Dateinamen ein:</translation>
     </message>
     <message>
+        <location filename="../PipInterface/PipFileSelectionDialog.py" line="81"/>
+        <source>Press to select a file through a file selection dialog.</source>
+        <translation>Drücken, um eine Datei mit einem Dateiauswahldialog zu wählen.</translation>
+    </message>
+    <message>
         <location filename="../PipInterface/PipFileSelectionDialog.py" line="83"/>
-        <source>Press to select a file through a file selection dialog.</source>
-        <translation>Drücken, um eine Datei mit einem Dateiauswahldialog zu wählen.</translation>
-    </message>
-    <message>
-        <location filename="../PipInterface/PipFileSelectionDialog.py" line="85"/>
         <source>All Files (*)</source>
         <translation>Alle Dateien (*)</translation>
     </message>
@@ -60558,18 +60558,18 @@
 <context>
     <name>Preferences</name>
     <message>
-        <location filename="../Preferences/__init__.py" line="1901"/>
+        <location filename="../Preferences/__init__.py" line="1907"/>
         <source>Export Preferences</source>
         <translation>Einstellungen exportieren</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1930"/>
-        <location filename="../Preferences/__init__.py" line="1903"/>
+        <location filename="../Preferences/__init__.py" line="1936"/>
+        <location filename="../Preferences/__init__.py" line="1909"/>
         <source>Properties File (*.ini);;All Files (*)</source>
         <translation>Properties-Dateien (*.ini);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1928"/>
+        <location filename="../Preferences/__init__.py" line="1934"/>
         <source>Import Preferences</source>
         <translation>Einstellungen importieren</translation>
     </message>
@@ -62241,9 +62241,9 @@
         <translation>&lt;b&gt;Erzeuge Plugin Archive (Snapshot)&lt;/b&gt;&lt;p&gt;Dies erzeugt eric Plugin Archivdateien mit den Dateien, die in der PKGLIST*-Datei angegeben wurden. Der Archivname wird aus dem Namen des Hauptskriptes generiert, falls er nicht in der Paketlistendatei angegeben ist. Der Versionseintrag des Hauptskriptes wird verändert, um ein Snapshot Release anzuzeigen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="6752"/>
-        <location filename="../Project/Project.py" line="6723"/>
-        <location filename="../Project/Project.py" line="6677"/>
+        <location filename="../Project/Project.py" line="6746"/>
+        <location filename="../Project/Project.py" line="6717"/>
+        <location filename="../Project/Project.py" line="6671"/>
         <location filename="../Project/Project.py" line="4820"/>
         <source>Execute Make</source>
         <translation>Make ausführen</translation>
@@ -62264,7 +62264,7 @@
         <translation>&lt;b&gt;Make ausführen&lt;/b&gt;&lt;p&gt;Die führt einen &apos;make&apos; Lauf aus, um das konfigurierte Ziel zu bauen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="6729"/>
+        <location filename="../Project/Project.py" line="6723"/>
         <location filename="../Project/Project.py" line="4839"/>
         <source>Test for Changes</source>
         <translation>Auf Änderungen prüfen</translation>
@@ -62799,37 +62799,37 @@
         <translation>&lt;p&gt;Die Plugindatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;br&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="6678"/>
+        <location filename="../Project/Project.py" line="6672"/>
         <source>The make process did not start.</source>
         <translation>Der make Prozess ist nicht gestartet.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="6724"/>
+        <location filename="../Project/Project.py" line="6718"/>
         <source>The make process crashed.</source>
         <translation>Der make Prozess ist abgestürzt.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="6732"/>
+        <location filename="../Project/Project.py" line="6726"/>
         <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Es gibt Änderungen, die einen Neubau des konfigurierten Zieles &lt;b&gt;{0}&lt;/b&gt; erfordern.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="6737"/>
+        <location filename="../Project/Project.py" line="6731"/>
         <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Es gibt Änderungen, die einen Neubau des Standardzieles erfordern.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="6753"/>
+        <location filename="../Project/Project.py" line="6747"/>
         <source>The makefile contains errors.</source>
         <translation>Die make Datei enthält Fehler.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="7172"/>
+        <location filename="../Project/Project.py" line="7166"/>
         <source>Interpreter Missing</source>
         <translation>Interpreter fehlt</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="7173"/>
+        <location filename="../Project/Project.py" line="7167"/>
         <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
         <translation>Der konfigurierte Interpreter der eingebetteten Umgebung ist nicht mehr vorhanden. Soll die Umgebung aktualisiert werden?</translation>
     </message>
@@ -73550,7 +73550,7 @@
         <translation>Zeige Quelltext</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2178"/>
+        <location filename="../QScintilla/Shell.py" line="2179"/>
         <location filename="../QScintilla/Shell.py" line="1907"/>
         <location filename="../QScintilla/Shell.py" line="1906"/>
         <location filename="../QScintilla/Shell.py" line="401"/>
@@ -73694,59 +73694,59 @@
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2329"/>
+        <location filename="../QScintilla/Shell.py" line="2330"/>
         <source>Drop Error</source>
         <translation>Drop Fehler</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2330"/>
+        <location filename="../QScintilla/Shell.py" line="2331"/>
         <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="../QScintilla/Shell.py" line="2576"/>
-        <location filename="../QScintilla/Shell.py" line="2562"/>
-        <location filename="../QScintilla/Shell.py" line="2541"/>
-        <source>Save Shell Contents</source>
-        <translation>Shellinhalt speichern</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="2543"/>
-        <source>Text Files (*.txt);;All Files (*)</source>
-        <translation>Textdateien (*.txt);;Alle Dateien (*)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="2563"/>
-        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="2577"/>
+        <location filename="../QScintilla/Shell.py" line="2563"/>
+        <location filename="../QScintilla/Shell.py" line="2542"/>
+        <source>Save Shell Contents</source>
+        <translation>Shellinhalt speichern</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="2544"/>
+        <source>Text Files (*.txt);;All Files (*)</source>
+        <translation>Textdateien (*.txt);;Alle Dateien (*)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="2564"/>
+        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="2578"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gesichert werden.&lt;br/&gt;Grund: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2591"/>
+        <location filename="../QScintilla/Shell.py" line="2592"/>
         <source>&lt;tr&gt;&lt;td&gt;%restart&lt;/td&gt;&lt;td&gt;Kill the shell and start a new one.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%clear&lt;/td&gt;&lt;td&gt;Clear the display of the shell window.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%start [environment]&lt;/td&gt;&lt;td&gt;Start a shell for a virtual environment with the given name. If no name is given, a default shell is started.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%envs&lt;br/&gt;%environments&lt;/td&gt;&lt;td&gt;Show a list of known virtual environment names.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%which&lt;/td&gt;&lt;td&gt;Show the name of the active virtual environment.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%hist [n]&lt;br/&gt;%history [n]&lt;/td&gt;&lt;td&gt;Show the most recent &apos;n&apos; entries of the history. If &apos;n&apos; is not given, show all entries.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%shist&lt;br/&gt;%shistory&lt;br/&gt;%select_history&lt;/td&gt;&lt;td&gt;Select a command from the history.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%chist&lt;br/&gt;%chistory&lt;br/&gt;%clear_history&lt;/td&gt;&lt;td&gt;Clear the current history after confirmation.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%help&lt;/td&gt;&lt;td&gt;Show this help text.&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;%restart&lt;/td&gt;&lt;td&gt;Beendet den Interpreter und startet einen neuen.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%clear&lt;/td&gt;&lt;td&gt;Löscht die Anzeige des Shell-Fensters.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%start [environment]&lt;/td&gt;&lt;td&gt;Start eine Shell für eine virtuelle Umgebung mit dem angegebenen Namen. Wird kein Name angegeben, so wird die Standard-Shell gestartet.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%envs&lt;br/&gt;%environments&lt;/td&gt;&lt;td&gt;Zeigt eine Liste der Namen bekannter virtueller Umgebungen an.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%which&lt;/td&gt;&lt;td&gt;Zeigt den Namen der aktiven virtuellen Umgebung an.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%hist [n]&lt;br/&gt;%history [n]&lt;/td&gt;&lt;td&gt;Zeigt die &apos;n&apos; letzten Einträge der Chronik an. Wird &apos;n&apos; nicht angegeben, werden alle Einträge angezeigt.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%shist&lt;br/&gt;%shistory&lt;br/&gt;%select_history&lt;/td&gt;&lt;td&gt;Wählt einen Eintrag aus der Chronik.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%chist&lt;br/&gt;%chistory&lt;br/&gt;%clear_history&lt;/td&gt;&lt;td&gt;Löscht die aktuelle Chronik nach Bestätigung.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%help&lt;/td&gt;&lt;td&gt;Zeigt diesen Hilfetext an.&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2613"/>
+        <location filename="../QScintilla/Shell.py" line="2614"/>
         <source>&lt;tr&gt;&lt;td&gt;%quit&lt;br/&gt;%quit()&lt;br/&gt;%exit&lt;br/&gt;%exit()&lt;/td&gt;&lt;td&gt;Exit the application.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;These commands are available through the window menus as well.&lt;/p&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;%quit&lt;br/&gt;%quit()&lt;br/&gt;%exit&lt;br/&gt;%exit()&lt;/td&gt;&lt;td&gt;Beendt die Anwendung.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;Diese Befehle sind auch über die Anwendungsmenüs verfügbar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2621"/>
+        <location filename="../QScintilla/Shell.py" line="2622"/>
         <source>&lt;/table&gt;&lt;p&gt;These commands are available through the context menu as well.&lt;/p&gt;</source>
         <translation>&lt;/table&gt;&lt;p&gt;Diese Befehle sind auch über das Kontextmenü verfügbar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2628"/>
-        <source>Shell Special Commands</source>
-        <translation>Spezielle Shell Befehle</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="2629"/>
+        <source>Shell Special Commands</source>
+        <translation>Spezielle Shell Befehle</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="2630"/>
         <source>The shell supports these special commands:</source>
         <translation>Die Shell unterstützt diese speziellen Befehle:</translation>
     </message>
@@ -89149,2190 +89149,2210 @@
 <context>
     <name>UserInterface</name>
     <message>
-        <location filename="../UI/UserInterface.py" line="308"/>
+        <location filename="../UI/UserInterface.py" line="314"/>
         <source>Initializing Basic Services...</source>
         <translation>Initialisiere Basisdienste...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="343"/>
+        <location filename="../UI/UserInterface.py" line="349"/>
         <source>Initializing Plugin Manager...</source>
         <translation>Initialisiere Plugin-Manager...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="350"/>
+        <location filename="../UI/UserInterface.py" line="356"/>
         <source>Generating Main User Interface...</source>
         <translation>Erzeuge das Hauptfenster...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="408"/>
+        <location filename="../UI/UserInterface.py" line="414"/>
         <source>Setting up signal/slot-connections...</source>
         <translation>Erstelle Signal/Slot-Verbindungen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="602"/>
+        <location filename="../UI/UserInterface.py" line="607"/>
         <source>Initializing Tools...</source>
         <translation>Initialisiere Werkzeuge...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="613"/>
+        <location filename="../UI/UserInterface.py" line="618"/>
         <source>Registering Objects...</source>
         <translation>Registriere Objekte...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="647"/>
+        <location filename="../UI/UserInterface.py" line="652"/>
         <source>Initializing Actions...</source>
         <translation>Initialisiere Aktionen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="649"/>
+        <location filename="../UI/UserInterface.py" line="654"/>
         <source>Initializing Menus...</source>
         <translation>Initialisiere Menüs...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="651"/>
+        <location filename="../UI/UserInterface.py" line="656"/>
         <source>Initializing Toolbars...</source>
         <translation>Initialisiere Werkzeugleisten...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="653"/>
+        <location filename="../UI/UserInterface.py" line="658"/>
         <source>Initializing Statusbar...</source>
         <translation>Initialisiere Statuszeile...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="680"/>
+        <location filename="../UI/UserInterface.py" line="685"/>
         <source>Initializing Single Application Server...</source>
         <translation>Initialisiere Applikationsserver...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="686"/>
-        <source>Initializing Plugins...</source>
-        <translation>Initialisiere Plugins...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="689"/>
-        <source>Activating Plugins...</source>
-        <translation>Aktiviere Plugins...</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="691"/>
-        <source>Generating Plugins Toolbars...</source>
-        <translation>Erzeuge Werkzeugleisten der Plug-ins...</translation>
+        <source>Initializing Plugins...</source>
+        <translation>Initialisiere Plugins...</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="694"/>
+        <source>Activating Plugins...</source>
+        <translation>Aktiviere Plugins...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="696"/>
+        <source>Generating Plugins Toolbars...</source>
+        <translation>Erzeuge Werkzeugleisten der Plug-ins...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="699"/>
         <source>Cleaning Plugins Download Area...</source>
         <translation>Bereinige den Plugins Downloadbereich...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="704"/>
+        <location filename="../UI/UserInterface.py" line="709"/>
         <source>Restoring Toolbarmanager...</source>
         <translation>Lade Toolbarmanager...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="712"/>
+        <location filename="../UI/UserInterface.py" line="717"/>
         <source>Setting View Profile...</source>
         <translation>Stelle Ansichtenprofil ein...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="725"/>
-        <source>Reading Tasks...</source>
-        <translation>Lese Aufgaben...</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="730"/>
-        <source>Reading Templates...</source>
-        <translation>Lese Vorlagen...</translation>
+        <source>Reading Tasks...</source>
+        <translation>Lese Aufgaben...</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="735"/>
+        <source>Reading Templates...</source>
+        <translation>Lese Vorlagen...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="740"/>
         <source>Starting Debugger...</source>
         <translation>Starte Debugger...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2195"/>
-        <location filename="../UI/UserInterface.py" line="1086"/>
+        <location filename="../UI/UserInterface.py" line="2200"/>
+        <location filename="../UI/UserInterface.py" line="1091"/>
         <source>Left Toolbox</source>
         <translation>Linke Werkzeugbox</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2241"/>
-        <location filename="../UI/UserInterface.py" line="1096"/>
+        <location filename="../UI/UserInterface.py" line="2246"/>
+        <location filename="../UI/UserInterface.py" line="1101"/>
         <source>Horizontal Toolbox</source>
         <translation>Horizontale Werkzeugbox</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2218"/>
-        <location filename="../UI/UserInterface.py" line="1107"/>
+        <location filename="../UI/UserInterface.py" line="2223"/>
+        <location filename="../UI/UserInterface.py" line="1112"/>
         <source>Right Toolbox</source>
         <translation>Rechte Werkzeugbox</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2037"/>
-        <location filename="../UI/UserInterface.py" line="1301"/>
-        <location filename="../UI/UserInterface.py" line="1117"/>
+        <location filename="../UI/UserInterface.py" line="2042"/>
+        <location filename="../UI/UserInterface.py" line="1306"/>
+        <location filename="../UI/UserInterface.py" line="1122"/>
         <source>Multiproject-Viewer</source>
         <translation>Mehrfachprojektanzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2015"/>
-        <location filename="../UI/UserInterface.py" line="1307"/>
-        <location filename="../UI/UserInterface.py" line="1123"/>
+        <location filename="../UI/UserInterface.py" line="2020"/>
+        <location filename="../UI/UserInterface.py" line="1312"/>
+        <location filename="../UI/UserInterface.py" line="1128"/>
         <source>Project-Viewer</source>
         <translation>Projektanzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2577"/>
-        <location filename="../UI/UserInterface.py" line="2576"/>
-        <location filename="../UI/UserInterface.py" line="1314"/>
-        <location filename="../UI/UserInterface.py" line="1130"/>
+        <location filename="../UI/UserInterface.py" line="2582"/>
+        <location filename="../UI/UserInterface.py" line="2581"/>
+        <location filename="../UI/UserInterface.py" line="1319"/>
+        <location filename="../UI/UserInterface.py" line="1135"/>
         <source>Find/Replace In Files</source>
         <translation>Suchen/Ersetzen in Dateien</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2600"/>
-        <location filename="../UI/UserInterface.py" line="2599"/>
-        <location filename="../UI/UserInterface.py" line="1321"/>
-        <location filename="../UI/UserInterface.py" line="1137"/>
+        <location filename="../UI/UserInterface.py" line="2605"/>
+        <location filename="../UI/UserInterface.py" line="2604"/>
+        <location filename="../UI/UserInterface.py" line="1326"/>
+        <location filename="../UI/UserInterface.py" line="1142"/>
         <source>Find File</source>
         <translation>Datei suchen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1327"/>
-        <location filename="../UI/UserInterface.py" line="1143"/>
+        <location filename="../UI/UserInterface.py" line="1332"/>
+        <location filename="../UI/UserInterface.py" line="1148"/>
         <source>VCS Status</source>
         <translation>VCS-Status</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2170"/>
-        <location filename="../UI/UserInterface.py" line="1334"/>
-        <location filename="../UI/UserInterface.py" line="1150"/>
+        <location filename="../UI/UserInterface.py" line="2175"/>
+        <location filename="../UI/UserInterface.py" line="1339"/>
+        <location filename="../UI/UserInterface.py" line="1155"/>
         <source>Template-Viewer</source>
         <translation>Vorlagen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2103"/>
-        <location filename="../UI/UserInterface.py" line="1341"/>
-        <location filename="../UI/UserInterface.py" line="1157"/>
+        <location filename="../UI/UserInterface.py" line="2108"/>
+        <location filename="../UI/UserInterface.py" line="1346"/>
+        <location filename="../UI/UserInterface.py" line="1162"/>
         <source>File-Browser</source>
         <translation>Dateibrowser</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1348"/>
-        <location filename="../UI/UserInterface.py" line="1164"/>
+        <location filename="../UI/UserInterface.py" line="1353"/>
+        <location filename="../UI/UserInterface.py" line="1169"/>
         <source>Symbols</source>
         <translation>Symbole</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2059"/>
-        <location filename="../UI/UserInterface.py" line="1370"/>
-        <location filename="../UI/UserInterface.py" line="1364"/>
-        <location filename="../UI/UserInterface.py" line="1174"/>
+        <location filename="../UI/UserInterface.py" line="2064"/>
+        <location filename="../UI/UserInterface.py" line="1375"/>
+        <location filename="../UI/UserInterface.py" line="1369"/>
+        <location filename="../UI/UserInterface.py" line="1179"/>
         <source>Debug-Viewer</source>
         <translation>Debuganzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2431"/>
-        <location filename="../UI/UserInterface.py" line="2430"/>
-        <location filename="../UI/UserInterface.py" line="1377"/>
-        <location filename="../UI/UserInterface.py" line="1181"/>
+        <location filename="../UI/UserInterface.py" line="2436"/>
+        <location filename="../UI/UserInterface.py" line="2435"/>
+        <location filename="../UI/UserInterface.py" line="1382"/>
+        <location filename="../UI/UserInterface.py" line="1186"/>
         <source>Code Documentation Viewer</source>
         <translation>Dokumentationsanzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2646"/>
-        <location filename="../UI/UserInterface.py" line="2645"/>
-        <location filename="../UI/UserInterface.py" line="1384"/>
-        <location filename="../UI/UserInterface.py" line="1188"/>
+        <location filename="../UI/UserInterface.py" line="2651"/>
+        <location filename="../UI/UserInterface.py" line="2650"/>
+        <location filename="../UI/UserInterface.py" line="1389"/>
+        <location filename="../UI/UserInterface.py" line="1193"/>
         <source>Help Viewer</source>
         <translation>Hilfeanzeiger</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3550"/>
-        <location filename="../UI/UserInterface.py" line="2526"/>
-        <location filename="../UI/UserInterface.py" line="2525"/>
-        <location filename="../UI/UserInterface.py" line="1390"/>
-        <location filename="../UI/UserInterface.py" line="1194"/>
+        <location filename="../UI/UserInterface.py" line="3575"/>
+        <location filename="../UI/UserInterface.py" line="2531"/>
+        <location filename="../UI/UserInterface.py" line="2530"/>
+        <location filename="../UI/UserInterface.py" line="1395"/>
+        <location filename="../UI/UserInterface.py" line="1199"/>
         <source>Plugin Repository</source>
         <translation>Plugin-Repository</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2550"/>
-        <location filename="../UI/UserInterface.py" line="2549"/>
-        <location filename="../UI/UserInterface.py" line="1396"/>
-        <location filename="../UI/UserInterface.py" line="1200"/>
+        <location filename="../UI/UserInterface.py" line="2555"/>
+        <location filename="../UI/UserInterface.py" line="2554"/>
+        <location filename="../UI/UserInterface.py" line="1401"/>
+        <location filename="../UI/UserInterface.py" line="1205"/>
         <source>Virtual Environments</source>
         <translation>Virtuelle Umgebungen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2458"/>
-        <location filename="../UI/UserInterface.py" line="2457"/>
-        <location filename="../UI/UserInterface.py" line="1401"/>
-        <location filename="../UI/UserInterface.py" line="1205"/>
+        <location filename="../UI/UserInterface.py" line="2463"/>
+        <location filename="../UI/UserInterface.py" line="2462"/>
+        <location filename="../UI/UserInterface.py" line="1406"/>
+        <location filename="../UI/UserInterface.py" line="1210"/>
         <source>PyPI</source>
         <translation>PyPI</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2480"/>
-        <location filename="../UI/UserInterface.py" line="2479"/>
-        <location filename="../UI/UserInterface.py" line="1408"/>
-        <location filename="../UI/UserInterface.py" line="1210"/>
+        <location filename="../UI/UserInterface.py" line="2485"/>
+        <location filename="../UI/UserInterface.py" line="2484"/>
+        <location filename="../UI/UserInterface.py" line="1413"/>
+        <location filename="../UI/UserInterface.py" line="1215"/>
         <source>Conda</source>
         <translation>Conda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1415"/>
-        <location filename="../UI/UserInterface.py" line="1217"/>
+        <location filename="../UI/UserInterface.py" line="1420"/>
+        <location filename="../UI/UserInterface.py" line="1222"/>
         <source>Cooperation</source>
         <translation>Zusammenarbeit</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2358"/>
-        <location filename="../UI/UserInterface.py" line="1419"/>
-        <location filename="../UI/UserInterface.py" line="1222"/>
+        <location filename="../UI/UserInterface.py" line="2363"/>
+        <location filename="../UI/UserInterface.py" line="1424"/>
+        <location filename="../UI/UserInterface.py" line="1227"/>
         <source>IRC</source>
         <translation>IRC</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2502"/>
-        <location filename="../UI/UserInterface.py" line="2501"/>
-        <location filename="../UI/UserInterface.py" line="1425"/>
-        <location filename="../UI/UserInterface.py" line="1229"/>
+        <location filename="../UI/UserInterface.py" line="2507"/>
+        <location filename="../UI/UserInterface.py" line="2506"/>
+        <location filename="../UI/UserInterface.py" line="1430"/>
+        <location filename="../UI/UserInterface.py" line="1234"/>
         <source>MicroPython</source>
         <translation>MicroPython</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2081"/>
-        <location filename="../UI/UserInterface.py" line="1433"/>
-        <location filename="../UI/UserInterface.py" line="1237"/>
+        <location filename="../UI/UserInterface.py" line="2086"/>
+        <location filename="../UI/UserInterface.py" line="1438"/>
+        <location filename="../UI/UserInterface.py" line="1242"/>
         <source>Shell</source>
         <translation>Shell</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2147"/>
-        <location filename="../UI/UserInterface.py" line="1439"/>
-        <location filename="../UI/UserInterface.py" line="1241"/>
+        <location filename="../UI/UserInterface.py" line="2152"/>
+        <location filename="../UI/UserInterface.py" line="1444"/>
+        <location filename="../UI/UserInterface.py" line="1246"/>
         <source>Task-Viewer</source>
         <translation>Aufgabenanzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2125"/>
-        <location filename="../UI/UserInterface.py" line="1445"/>
-        <location filename="../UI/UserInterface.py" line="1245"/>
+        <location filename="../UI/UserInterface.py" line="2130"/>
+        <location filename="../UI/UserInterface.py" line="1450"/>
+        <location filename="../UI/UserInterface.py" line="1250"/>
         <source>Log-Viewer</source>
         <translation>Ausgabefenster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1452"/>
-        <location filename="../UI/UserInterface.py" line="1252"/>
+        <location filename="../UI/UserInterface.py" line="1457"/>
+        <location filename="../UI/UserInterface.py" line="1257"/>
         <source>Numbers</source>
         <translation>Zahlen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1827"/>
+        <location filename="../UI/UserInterface.py" line="1832"/>
         <source>{0} - Passive Mode</source>
         <translation>{0} – Passiver Modus</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1836"/>
-        <location filename="../UI/UserInterface.py" line="1830"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
+        <location filename="../UI/UserInterface.py" line="1835"/>
         <source>{0} - {1} - Passive Mode</source>
         <translation>{0} – {1} – Passiver Modus</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1842"/>
+        <location filename="../UI/UserInterface.py" line="1847"/>
         <source>{0} - {1} - {2} - Passive Mode</source>
         <translation>{0} . {1} – {2} – Passiver Modus</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1873"/>
         <source>Quit</source>
         <translation>Beenden</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1870"/>
+        <location filename="../UI/UserInterface.py" line="1875"/>
         <source>&amp;Quit</source>
         <translation>B&amp;eenden</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1871"/>
+        <location filename="../UI/UserInterface.py" line="1876"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1876"/>
+        <location filename="../UI/UserInterface.py" line="1881"/>
         <source>Quit the IDE</source>
         <translation>Beenden der Entwicklungsumgebung</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1878"/>
+        <location filename="../UI/UserInterface.py" line="1883"/>
         <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="1892"/>
-        <location filename="../UI/UserInterface.py" line="1890"/>
+        <location filename="../UI/UserInterface.py" line="1897"/>
+        <location filename="../UI/UserInterface.py" line="1895"/>
         <source>Restart</source>
         <translation>Neu starten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1893"/>
-        <source>Ctrl+Shift+Q</source>
-        <comment>File|Quit</comment>
-        <translation>Ctrl+Shift+Q</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1898"/>
+        <source>Ctrl+Shift+Q</source>
+        <comment>File|Quit</comment>
+        <translation>Ctrl+Shift+Q</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1903"/>
         <source>Restart the IDE</source>
         <translation>Neustart der Entwicklungsumgebung</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1900"/>
+        <location filename="../UI/UserInterface.py" line="1905"/>
         <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="1918"/>
-        <location filename="../UI/UserInterface.py" line="1911"/>
+        <location filename="../UI/UserInterface.py" line="1923"/>
+        <location filename="../UI/UserInterface.py" line="1916"/>
         <source>Save session</source>
         <translation>Sitzung speichern</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1912"/>
+        <location filename="../UI/UserInterface.py" line="1917"/>
         <source>Save session...</source>
         <translation>Sitzung speichern...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1920"/>
+        <location filename="../UI/UserInterface.py" line="1925"/>
         <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="7729"/>
-        <location filename="../UI/UserInterface.py" line="1937"/>
-        <location filename="../UI/UserInterface.py" line="1930"/>
+        <location filename="../UI/UserInterface.py" line="7767"/>
+        <location filename="../UI/UserInterface.py" line="1942"/>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <source>Load session</source>
         <translation>Sitzung laden</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1931"/>
+        <location filename="../UI/UserInterface.py" line="1936"/>
         <source>Load session...</source>
         <translation>Sitzung laden...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1939"/>
+        <location filename="../UI/UserInterface.py" line="1944"/>
         <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="1949"/>
+        <location filename="../UI/UserInterface.py" line="1954"/>
         <source>New Window</source>
         <translation>Neues Fenster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1951"/>
+        <location filename="../UI/UserInterface.py" line="1956"/>
         <source>New &amp;Window</source>
         <translation>Neues &amp;Fenster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1952"/>
-        <source>Ctrl+Shift+N</source>
-        <comment>File|New Window</comment>
-        <translation>Ctrl+Shift+N</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1957"/>
+        <source>Ctrl+Shift+N</source>
+        <comment>File|New Window</comment>
+        <translation>Ctrl+Shift+N</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1962"/>
         <source>Open a new eric instance</source>
         <translation>Öffnet eine neue eric Instanz</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1959"/>
+        <location filename="../UI/UserInterface.py" line="1964"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neues Fenster&lt;/b&gt;&lt;p&gt;Dies öffnet eine neue Instanz der eric IDE.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1973"/>
-        <location filename="../UI/UserInterface.py" line="1971"/>
+        <location filename="../UI/UserInterface.py" line="1978"/>
+        <location filename="../UI/UserInterface.py" line="1976"/>
         <source>Edit Profile</source>
         <translation>Editieren-Profil</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1980"/>
+        <location filename="../UI/UserInterface.py" line="1985"/>
         <source>Activate the edit view profile</source>
         <translation>Aktiviert das Editieren-Ansichtsprofil</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1982"/>
+        <location filename="../UI/UserInterface.py" line="1987"/>
         <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="1995"/>
-        <location filename="../UI/UserInterface.py" line="1993"/>
+        <location filename="../UI/UserInterface.py" line="2000"/>
+        <location filename="../UI/UserInterface.py" line="1998"/>
         <source>Debug Profile</source>
         <translation>Debuggen-Profil</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2002"/>
+        <location filename="../UI/UserInterface.py" line="2007"/>
         <source>Activate the debug view profile</source>
         <translation>Aktiviert das Debuggen-Ansichtsprofil</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2004"/>
+        <location filename="../UI/UserInterface.py" line="2009"/>
         <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="2016"/>
+        <location filename="../UI/UserInterface.py" line="2021"/>
         <source>&amp;Project-Viewer</source>
         <translation>&amp;Projektanzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2017"/>
+        <location filename="../UI/UserInterface.py" line="2022"/>
         <source>Alt+Shift+P</source>
         <translation>Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
+        <location filename="../UI/UserInterface.py" line="2028"/>
         <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="2026"/>
+        <location filename="../UI/UserInterface.py" line="2031"/>
         <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="2038"/>
+        <location filename="../UI/UserInterface.py" line="2043"/>
         <source>&amp;Multiproject-Viewer</source>
         <translation>&amp;Mehrfachprojektanzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2039"/>
+        <location filename="../UI/UserInterface.py" line="2044"/>
         <source>Alt+Shift+M</source>
         <translation>Alt+Shift+M</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2045"/>
+        <location filename="../UI/UserInterface.py" line="2050"/>
         <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="2048"/>
+        <location filename="../UI/UserInterface.py" line="2053"/>
         <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="2060"/>
+        <location filename="../UI/UserInterface.py" line="2065"/>
         <source>&amp;Debug-Viewer</source>
         <translation>&amp;Debuganzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2061"/>
+        <location filename="../UI/UserInterface.py" line="2066"/>
         <source>Alt+Shift+D</source>
         <translation>Alt+Shift+D</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2067"/>
+        <location filename="../UI/UserInterface.py" line="2072"/>
         <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="2070"/>
+        <location filename="../UI/UserInterface.py" line="2075"/>
         <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="2082"/>
+        <location filename="../UI/UserInterface.py" line="2087"/>
         <source>&amp;Shell</source>
         <translation>&amp;Shell</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2083"/>
+        <location filename="../UI/UserInterface.py" line="2088"/>
         <source>Alt+Shift+S</source>
         <translation>Alt+Shift+S</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2089"/>
+        <location filename="../UI/UserInterface.py" line="2094"/>
         <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="2092"/>
+        <location filename="../UI/UserInterface.py" line="2097"/>
         <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="2104"/>
+        <location filename="../UI/UserInterface.py" line="2109"/>
         <source>&amp;File-Browser</source>
         <translation>Datei&amp;browser</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2105"/>
+        <location filename="../UI/UserInterface.py" line="2110"/>
         <source>Alt+Shift+F</source>
         <translation>Alt+Shift+F</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2111"/>
+        <location filename="../UI/UserInterface.py" line="2116"/>
         <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="2114"/>
+        <location filename="../UI/UserInterface.py" line="2119"/>
         <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="2126"/>
+        <location filename="../UI/UserInterface.py" line="2131"/>
         <source>Lo&amp;g-Viewer</source>
         <translation>&amp;Ausgabefenster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2127"/>
+        <location filename="../UI/UserInterface.py" line="2132"/>
         <source>Alt+Shift+G</source>
         <translation>Alt+Shift+G</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2133"/>
+        <location filename="../UI/UserInterface.py" line="2138"/>
         <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="2136"/>
+        <location filename="../UI/UserInterface.py" line="2141"/>
         <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="2148"/>
+        <location filename="../UI/UserInterface.py" line="2153"/>
         <source>&amp;Task-Viewer</source>
         <translation>&amp;Aufgabenanzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2149"/>
+        <location filename="../UI/UserInterface.py" line="2154"/>
         <source>Alt+Shift+T</source>
         <translation>Alt+Shift+T</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2155"/>
+        <location filename="../UI/UserInterface.py" line="2160"/>
         <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="2158"/>
+        <location filename="../UI/UserInterface.py" line="2163"/>
         <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="2171"/>
+        <location filename="../UI/UserInterface.py" line="2176"/>
         <source>Templ&amp;ate-Viewer</source>
         <translation>&amp;Vorlagen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2172"/>
+        <location filename="../UI/UserInterface.py" line="2177"/>
         <source>Alt+Shift+A</source>
         <translation>Alt+Shift+A</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2178"/>
+        <location filename="../UI/UserInterface.py" line="2183"/>
         <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="2181"/>
+        <location filename="../UI/UserInterface.py" line="2186"/>
         <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="2196"/>
+        <location filename="../UI/UserInterface.py" line="2201"/>
         <source>&amp;Left Toolbox</source>
         <translation>&amp;Linke Werkzeugbox</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2203"/>
+        <location filename="../UI/UserInterface.py" line="2208"/>
         <source>Toggle the Left Toolbox window</source>
         <translation>Schalte das Fenster der linken Werkzeugbox um</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2205"/>
+        <location filename="../UI/UserInterface.py" line="2210"/>
         <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="2219"/>
+        <location filename="../UI/UserInterface.py" line="2224"/>
         <source>&amp;Right Toolbox</source>
         <translation>&amp;Rechte Werkzeugbox</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2226"/>
+        <location filename="../UI/UserInterface.py" line="2231"/>
         <source>Toggle the Right Toolbox window</source>
         <translation>Schalte das Fenster der rechten Werkzeugbox um</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2228"/>
+        <location filename="../UI/UserInterface.py" line="2233"/>
         <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="2242"/>
+        <location filename="../UI/UserInterface.py" line="2247"/>
         <source>&amp;Horizontal Toolbox</source>
         <translation>&amp;Horizontale Werkzeugbox</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2249"/>
+        <location filename="../UI/UserInterface.py" line="2254"/>
         <source>Toggle the Horizontal Toolbox window</source>
         <translation>Schalte das Fenster der Horizontalen Werkzeugbox um</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2251"/>
+        <location filename="../UI/UserInterface.py" line="2256"/>
         <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="2264"/>
+        <location filename="../UI/UserInterface.py" line="2269"/>
         <source>Left Sidebar</source>
         <translation>Linke Seitenleiste</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2265"/>
+        <location filename="../UI/UserInterface.py" line="2270"/>
         <source>&amp;Left Sidebar</source>
         <translation>&amp;Linke Seitenleiste</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2272"/>
+        <location filename="../UI/UserInterface.py" line="2277"/>
         <source>Toggle the left sidebar window</source>
         <translation>Schalte das Fenster der linken Seitenleiste um</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2274"/>
+        <location filename="../UI/UserInterface.py" line="2279"/>
         <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="2287"/>
+        <location filename="../UI/UserInterface.py" line="2292"/>
         <source>Right Sidebar</source>
         <translation>Rechte Seitenleiste</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2288"/>
+        <location filename="../UI/UserInterface.py" line="2293"/>
         <source>&amp;Right Sidebar</source>
         <translation>&amp;Rechte Seitenleiste</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2295"/>
+        <location filename="../UI/UserInterface.py" line="2300"/>
         <source>Toggle the right sidebar window</source>
         <translation>Schalte das Fenster der rechten Seitenleiste um</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2297"/>
+        <location filename="../UI/UserInterface.py" line="2302"/>
         <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="2310"/>
+        <location filename="../UI/UserInterface.py" line="2315"/>
         <source>Bottom Sidebar</source>
         <translation>Untere Seitenleiste</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2311"/>
+        <location filename="../UI/UserInterface.py" line="2316"/>
         <source>&amp;Bottom Sidebar</source>
         <translation>&amp;Untere Seitenleiste</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2318"/>
+        <location filename="../UI/UserInterface.py" line="2323"/>
         <source>Toggle the bottom sidebar window</source>
         <translation>Schalte das Fenster der unteren Seitenleiste um</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2320"/>
+        <location filename="../UI/UserInterface.py" line="2325"/>
         <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="2333"/>
+        <location filename="../UI/UserInterface.py" line="2338"/>
         <source>Cooperation-Viewer</source>
         <translation>Zusammenarbeit</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2334"/>
+        <location filename="../UI/UserInterface.py" line="2339"/>
         <source>Co&amp;operation-Viewer</source>
         <translation>&amp;Zusammenarbeit</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2335"/>
+        <location filename="../UI/UserInterface.py" line="2340"/>
         <source>Alt+Shift+O</source>
         <translation>Alt+Shift+O</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2341"/>
+        <location filename="../UI/UserInterface.py" line="2346"/>
         <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="2344"/>
+        <location filename="../UI/UserInterface.py" line="2349"/>
         <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="2359"/>
+        <location filename="../UI/UserInterface.py" line="2364"/>
         <source>&amp;IRC</source>
         <translation>&amp;IRC</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2360"/>
+        <location filename="../UI/UserInterface.py" line="2365"/>
         <source>Ctrl+Alt+Shift+I</source>
         <translation>Ctrl+Alt+Shift+I</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2366"/>
+        <location filename="../UI/UserInterface.py" line="2371"/>
         <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="2369"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <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="2380"/>
+        <location filename="../UI/UserInterface.py" line="2385"/>
         <source>Symbols-Viewer</source>
         <translation>Symbolanzeiger</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2381"/>
+        <location filename="../UI/UserInterface.py" line="2386"/>
         <source>S&amp;ymbols-Viewer</source>
         <translation>S&amp;ymbolanzeiger</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2382"/>
+        <location filename="../UI/UserInterface.py" line="2387"/>
         <source>Alt+Shift+Y</source>
         <translation>Alt+Shift+Y</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2388"/>
+        <location filename="../UI/UserInterface.py" line="2393"/>
         <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="2391"/>
+        <location filename="../UI/UserInterface.py" line="2396"/>
         <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="2405"/>
+        <location filename="../UI/UserInterface.py" line="2410"/>
         <source>Numbers-Viewer</source>
         <translation>Zahlenanzeiger</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2406"/>
+        <location filename="../UI/UserInterface.py" line="2411"/>
         <source>Num&amp;bers-Viewer</source>
         <translation>Za&amp;hlenanzeiger</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2407"/>
+        <location filename="../UI/UserInterface.py" line="2412"/>
         <source>Alt+Shift+B</source>
         <translation>Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2413"/>
+        <location filename="../UI/UserInterface.py" line="2418"/>
         <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="2416"/>
+        <location filename="../UI/UserInterface.py" line="2421"/>
         <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="2432"/>
+        <location filename="../UI/UserInterface.py" line="2437"/>
         <source>Ctrl+Alt+Shift+D</source>
         <translation>Ctrl+Alt+Shift+D</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2438"/>
-        <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="2443"/>
+        <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="2448"/>
         <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="2459"/>
+        <location filename="../UI/UserInterface.py" line="2464"/>
         <source>Ctrl+Alt+Shift+P</source>
         <translation>Ctrl+Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2465"/>
+        <location filename="../UI/UserInterface.py" line="2470"/>
         <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="2468"/>
+        <location filename="../UI/UserInterface.py" line="2473"/>
         <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="2481"/>
+        <location filename="../UI/UserInterface.py" line="2486"/>
         <source>Ctrl+Alt+Shift+C</source>
         <translation>Ctrl+Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2487"/>
+        <location filename="../UI/UserInterface.py" line="2492"/>
         <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="2490"/>
+        <location filename="../UI/UserInterface.py" line="2495"/>
         <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="2503"/>
+        <location filename="../UI/UserInterface.py" line="2508"/>
         <source>Ctrl+Alt+Shift+M</source>
         <translation>Ctrl+Alt+Shift+M</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2509"/>
+        <location filename="../UI/UserInterface.py" line="2514"/>
         <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="2512"/>
+        <location filename="../UI/UserInterface.py" line="2517"/>
         <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="2527"/>
+        <location filename="../UI/UserInterface.py" line="2532"/>
         <source>Ctrl+Alt+Shift+R</source>
         <translation>Ctrl+Alt+Shift+R</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2533"/>
+        <location filename="../UI/UserInterface.py" line="2538"/>
         <source>Switch the input focus to the Plugin Repository window.</source>
         <translation>Schalte den Eingabefokus auf das Plugin Repository Fenster um.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2536"/>
+        <location filename="../UI/UserInterface.py" line="2541"/>
         <source>&lt;b&gt;Plugin Repository&lt;/b&gt;&lt;p&gt;This switches the input focus to the Plugin Repository window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Plugin-Repository&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Plugin Repository Fenster um.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2551"/>
+        <location filename="../UI/UserInterface.py" line="2556"/>
         <source>Ctrl+Alt+V</source>
         <translation>Ctrl+Alt+V</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2557"/>
-        <source>Switch the input focus to the Virtual Environments Manager window.</source>
-        <translation>Schalte den Eingabefokus auf den Manager für Virtuelle Umgebungen um.</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2562"/>
+        <source>Switch the input focus to the Virtual Environments Manager window.</source>
+        <translation>Schalte den Eingabefokus auf den Manager für Virtuelle Umgebungen um.</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2567"/>
         <source>&lt;b&gt;Virtual Environments&lt;/b&gt;&lt;p&gt;This switches the input focus to the Virtual Environments Manager window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Virtuelle Umgebungen&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf den Manager für Virtuelle Umgebungen um.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2578"/>
+        <location filename="../UI/UserInterface.py" line="2583"/>
         <source>Ctrl+Alt+Shift+F</source>
         <translation>Ctrl+Alt+Shift+F</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2584"/>
+        <location filename="../UI/UserInterface.py" line="2589"/>
         <source>Switch the input focus to the Find/Replace In Files window.</source>
         <translation>Schalte den Eingabefokus auf das &apos;Suchen/Ersetzen in Dateien&apos; Fenster um.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2587"/>
+        <location filename="../UI/UserInterface.py" line="2592"/>
         <source>&lt;b&gt;Find/Replace In Files&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find/Replace In Files window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Suchen/Ersetzen in Dateien&lt;b&gt;&lt;p&gt;Dies schalte den Eingabefokus auf das &apos;Suchen/Ersetzen in Dateien&apos; Fenster um.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2601"/>
+        <location filename="../UI/UserInterface.py" line="2606"/>
         <source>Ctrl+Alt+Shift+L</source>
         <translation>Ctrl+Alt+Shift+L</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2607"/>
+        <location filename="../UI/UserInterface.py" line="2612"/>
         <source>Switch the input focus to the Find File window.</source>
         <translation>Schalte den Eingabefokus auf das &apos;Datei Suchen&apos; Fenster um.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2610"/>
+        <location filename="../UI/UserInterface.py" line="2615"/>
         <source>&lt;b&gt;Find File&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find File window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Datei Suchen&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das &apos;Datei Suchen&apos; Fenster um.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2624"/>
-        <location filename="../UI/UserInterface.py" line="2623"/>
+        <location filename="../UI/UserInterface.py" line="2629"/>
+        <location filename="../UI/UserInterface.py" line="2628"/>
         <source>VCS Status List</source>
         <translation>VCS Statusliste</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2625"/>
+        <location filename="../UI/UserInterface.py" line="2630"/>
         <source>Alt+Shift+V</source>
         <translation>Alt+Shift+V</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2631"/>
+        <location filename="../UI/UserInterface.py" line="2636"/>
         <source>Switch the input focus to the VCS Status List window.</source>
         <translation>Schalte den Eingabefokus auf die VCS Statusliste um.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2634"/>
+        <location filename="../UI/UserInterface.py" line="2639"/>
         <source>&lt;b&gt;VCS Status List&lt;/b&gt;&lt;p&gt;This switches the input focus to the VCS Status List window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;VCS Statusliste&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf die VCS Statusliste um.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2647"/>
+        <location filename="../UI/UserInterface.py" line="2652"/>
         <source>Alt+Shift+H</source>
         <translation>Alt+Shift+H</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2653"/>
+        <location filename="../UI/UserInterface.py" line="2658"/>
         <source>Switch the input focus to the embedded Help Viewer window.</source>
         <translation>Schalte den Eingabefokus auf die integrierte Hilfeanzeige.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2656"/>
+        <location filename="../UI/UserInterface.py" line="2661"/>
         <source>&lt;b&gt;Help Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Hilfeanzeiger&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf die integrierte Hilfeanzeige. Sie zeigt HTML Hilfedateien und Hilfedateien von Qt-Hilfesammlungen an.&lt;/p&gt;&lt;p&gt;Falls sie mit einem selektierten Wort aufgerufen wird, so wird diese Wort in der Qt-Hilfesammlung gesucht.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2669"/>
+        <location filename="../UI/UserInterface.py" line="2674"/>
         <source>What&apos;s This?</source>
         <translation>Was ist das?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2671"/>
+        <location filename="../UI/UserInterface.py" line="2676"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Was ist das?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2672"/>
-        <source>Shift+F1</source>
-        <translation>Shift+F1</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2677"/>
+        <source>Shift+F1</source>
+        <translation>Shift+F1</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2682"/>
         <source>Context sensitive help</source>
         <translation>Kontextsensitive Hilfe</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2679"/>
+        <location filename="../UI/UserInterface.py" line="2684"/>
         <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="2692"/>
+        <location filename="../UI/UserInterface.py" line="2697"/>
         <source>Helpviewer</source>
         <translation>Hilfe</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2694"/>
+        <location filename="../UI/UserInterface.py" line="2699"/>
         <source>&amp;Helpviewer...</source>
         <translation>&amp;Hilfe...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2695"/>
-        <source>F1</source>
-        <translation>F1</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2700"/>
+        <source>F1</source>
+        <translation>F1</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2705"/>
         <source>Open the helpviewer window</source>
         <translation>Öffnet das Hilfe-Fenster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2702"/>
+        <location filename="../UI/UserInterface.py" line="2707"/>
         <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Hilfe-Fenster&lt;/b&gt;&lt;p&gt;Zeige den eric Web Browser an. Dieses Fenster zeigt Hilfedateien im HTML-Format und Qt-Hilfesammlungen an. In ihm kann über Hyperlinks navigiert, Lesezeichen gesetzt und neben anderen Funktionen die dargestellte Seite ausgedruckt werden. Er kann auch zum Surfen im Internet benutzt werden.&lt;/p&gt;&lt;p&gt;Wenn es mit einem selektierten Wort aufgerufen wird, so wird dieses Wort in der Qt-Hilfesammlung gesucht.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2722"/>
+        <location filename="../UI/UserInterface.py" line="2727"/>
         <source>Show Versions</source>
         <translation>Zeige Versionen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2723"/>
+        <location filename="../UI/UserInterface.py" line="2728"/>
         <source>Show &amp;Versions</source>
         <translation>Zeige &amp;Versionen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2729"/>
+        <location filename="../UI/UserInterface.py" line="2734"/>
         <source>Display version information</source>
         <translation>Zeigt Versionsinformationen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2731"/>
+        <location filename="../UI/UserInterface.py" line="2736"/>
         <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="2744"/>
-        <location filename="../UI/UserInterface.py" line="2737"/>
+        <location filename="../UI/UserInterface.py" line="2742"/>
+        <source>Copy Versions</source>
+        <translation>Versionen kopieren</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2743"/>
+        <source>&amp;Copy Versions</source>
+        <translation>Versionen &amp;kopieren</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2750"/>
+        <source>Copy version information to the clipboard</source>
+        <translation>Kopiere Versionsinformationen in die Zwischenablage</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2753"/>
+        <source>&lt;b&gt;Copy Versions&lt;/b&gt;&lt;p&gt;This generates version information and copies it to the clipboard.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Versionen kopieren&lt;/b&gt;&lt;p&gt;Dies erzeugt Versionsinformationen und kopiert diese in die Zwischenablage.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2769"/>
+        <location filename="../UI/UserInterface.py" line="2762"/>
         <source>Show Error Log</source>
         <translation>Zeige Fehlerbericht</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2738"/>
+        <location filename="../UI/UserInterface.py" line="2763"/>
         <source>Show Error &amp;Log...</source>
         <translation>Zeige Fehler&amp;bericht...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2746"/>
+        <location filename="../UI/UserInterface.py" line="2771"/>
         <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="2755"/>
+        <location filename="../UI/UserInterface.py" line="2780"/>
         <source>Show Install Info</source>
         <translation>Installationsinformation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2756"/>
+        <location filename="../UI/UserInterface.py" line="2781"/>
         <source>Show Install &amp;Info...</source>
         <translation>&amp;Installationsinformation...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2762"/>
+        <location filename="../UI/UserInterface.py" line="2787"/>
         <source>Show Installation Information</source>
         <translation>Installationsinformation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2764"/>
+        <location filename="../UI/UserInterface.py" line="2789"/>
         <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Installationsinformation&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zur Anzeige von Informationen über den Installationsprozess.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4634"/>
-        <location filename="../UI/UserInterface.py" line="2774"/>
+        <location filename="../UI/UserInterface.py" line="4672"/>
+        <location filename="../UI/UserInterface.py" line="2799"/>
         <source>Report Bug</source>
         <translation>Fehler berichten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2774"/>
+        <location filename="../UI/UserInterface.py" line="2799"/>
         <source>Report &amp;Bug...</source>
         <translation>&amp;Fehler berichten...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2776"/>
+        <location filename="../UI/UserInterface.py" line="2801"/>
         <source>Report a bug</source>
         <translation>Einen Fehler berichten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2778"/>
+        <location filename="../UI/UserInterface.py" line="2803"/>
         <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="2784"/>
+        <location filename="../UI/UserInterface.py" line="2809"/>
         <source>Request Feature</source>
         <translation>Neue Funktion anfragen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2785"/>
+        <location filename="../UI/UserInterface.py" line="2810"/>
         <source>Request &amp;Feature...</source>
         <translation>Neue &amp;Funktion anfragen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2791"/>
+        <location filename="../UI/UserInterface.py" line="2816"/>
         <source>Send a feature request</source>
         <translation>Sende eine Anfrage für eine neue Funktion</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2793"/>
+        <location filename="../UI/UserInterface.py" line="2818"/>
         <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="4094"/>
-        <location filename="../UI/UserInterface.py" line="2804"/>
+        <location filename="../UI/UserInterface.py" line="4120"/>
+        <location filename="../UI/UserInterface.py" line="2829"/>
         <source>Testing</source>
         <translation>Modultest</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2806"/>
+        <location filename="../UI/UserInterface.py" line="2831"/>
         <source>&amp;Testing...</source>
         <translation>Modul&amp;test...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2812"/>
+        <location filename="../UI/UserInterface.py" line="2837"/>
         <source>Start the testing dialog</source>
         <translation>Starte den Modultest Dialog</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2814"/>
+        <location filename="../UI/UserInterface.py" line="2839"/>
         <source>&lt;b&gt;Testing&lt;/b&gt;&lt;p&gt;Perform test runs. The dialog gives the ability to select and run a test suite or auto discover them.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Modultests&lt;/b&gt;&lt;p&gt;Führe Modultests durch. Der Dialog bietet die Möglichkeit eine Zusammenstellung von Modultests auszuwählen und auszuführen oder sie automatisch zu ermitteln.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2825"/>
+        <location filename="../UI/UserInterface.py" line="2850"/>
         <source>Restart Last Test</source>
         <translation>Letzten Test neu starten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2827"/>
+        <location filename="../UI/UserInterface.py" line="2852"/>
         <source>&amp;Restart Last Test...</source>
         <translation>Letzten Test &amp;neu starten...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2833"/>
+        <location filename="../UI/UserInterface.py" line="2858"/>
         <source>Restarts the last test</source>
         <translation>Startet den letzten Test erneut</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2835"/>
+        <location filename="../UI/UserInterface.py" line="2860"/>
         <source>&lt;b&gt;Restart Last Test&lt;/b&gt;&lt;p&gt;Restarts the test performed last.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Letzten Test neu starten&lt;/b&gt;&lt;p&gt;Startet den letzten Test erneut.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2845"/>
+        <location filename="../UI/UserInterface.py" line="2870"/>
         <source>Rerun Failed Tests</source>
         <translation>Fehlerhafte Tests wiederholen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2847"/>
+        <location filename="../UI/UserInterface.py" line="2872"/>
         <source>Rerun Failed Tests...</source>
         <translation>Fehlerhafte Tests wiederholen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2854"/>
+        <location filename="../UI/UserInterface.py" line="2879"/>
         <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="2857"/>
+        <location filename="../UI/UserInterface.py" line="2882"/>
         <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last test run.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Fehlerhafte Tests wiederholen&lt;/b&gt;&lt;p&gt;Alle Tests wiederholen, die während des letzten Testlaufes fehlgeschlagen sind.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2867"/>
-        <source>Test Script</source>
-        <translation>Test (Skript)</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2869"/>
-        <source>Test &amp;Script...</source>
-        <translation>Test (&amp;Skript)...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2875"/>
-        <source>Run tests of the current script</source>
-        <translation>Tests des aktuelles Skripts ausführen</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2877"/>
-        <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Test (Skript)&lt;/b&gt;&lt;p&gt;Tests des aktuelles Skripts ausführen.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2884"/>
-        <source>Test Project</source>
-        <translation>Test (Projekt)</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2886"/>
-        <source>Test &amp;Project...</source>
-        <translation>Test (&amp;Projekt)...</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2892"/>
-        <source>Run tests of the current project</source>
-        <translation>Tests des aktuellen Projektes ausführen</translation>
+        <source>Test Script</source>
+        <translation>Test (Skript)</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2894"/>
-        <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Test (Projekt)&lt;/b&gt;&lt;p&gt;Tests des aktuellen Projektes ausführen&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2903"/>
-        <source>Qt-Designer</source>
-        <translation>Qt Designer</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2905"/>
-        <source>Qt-&amp;Designer...</source>
-        <translation>Qt &amp;Designer...</translation>
+        <source>Test &amp;Script...</source>
+        <translation>Test (&amp;Skript)...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2900"/>
+        <source>Run tests of the current script</source>
+        <translation>Tests des aktuelles Skripts ausführen</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2902"/>
+        <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Test (Skript)&lt;/b&gt;&lt;p&gt;Tests des aktuelles Skripts ausführen.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2909"/>
+        <source>Test Project</source>
+        <translation>Test (Projekt)</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2911"/>
-        <source>Start Qt-Designer</source>
-        <translation>Starte Qt Designer</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2913"/>
-        <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="2922"/>
-        <source>Qt-Linguist</source>
-        <translation>Qt Linguist</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2924"/>
-        <source>Qt-&amp;Linguist...</source>
-        <translation>Qt &amp;Linguist...</translation>
+        <source>Test &amp;Project...</source>
+        <translation>Test (&amp;Projekt)...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2917"/>
+        <source>Run tests of the current project</source>
+        <translation>Tests des aktuellen Projektes ausführen</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2919"/>
+        <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Test (Projekt)&lt;/b&gt;&lt;p&gt;Tests des aktuellen Projektes ausführen&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2928"/>
+        <source>Qt-Designer</source>
+        <translation>Qt Designer</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2930"/>
+        <source>Qt-&amp;Designer...</source>
+        <translation>Qt &amp;Designer...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2936"/>
+        <source>Start Qt-Designer</source>
+        <translation>Starte Qt Designer</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2938"/>
+        <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="2947"/>
+        <source>Qt-Linguist</source>
+        <translation>Qt Linguist</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2949"/>
+        <source>Qt-&amp;Linguist...</source>
+        <translation>Qt &amp;Linguist...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2955"/>
         <source>Start Qt-Linguist</source>
         <translation>Starte Qt Linguist</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2932"/>
+        <location filename="../UI/UserInterface.py" line="2957"/>
         <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="2940"/>
+        <location filename="../UI/UserInterface.py" line="2965"/>
         <source>UI Previewer</source>
         <translation>UI-Vorschau</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2942"/>
+        <location filename="../UI/UserInterface.py" line="2967"/>
         <source>&amp;UI Previewer...</source>
         <translation>&amp;UI-Vorschau...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2948"/>
+        <location filename="../UI/UserInterface.py" line="2973"/>
         <source>Start the UI Previewer</source>
         <translation>Starte die UI-Vorschau</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2950"/>
-        <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="2956"/>
-        <source>Translations Previewer</source>
-        <translation>Übersetzungsvorschau</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2958"/>
-        <source>&amp;Translations Previewer...</source>
-        <translation>&amp;Übersetzungsvorschau...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2964"/>
-        <source>Start the Translations Previewer</source>
-        <translation>Die Übersetzungsvorschau starten</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2966"/>
-        <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="2975"/>
+        <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="2981"/>
+        <source>Translations Previewer</source>
+        <translation>Übersetzungsvorschau</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2983"/>
+        <source>&amp;Translations Previewer...</source>
+        <translation>&amp;Übersetzungsvorschau...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2989"/>
+        <source>Start the Translations Previewer</source>
+        <translation>Die Übersetzungsvorschau starten</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2991"/>
+        <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="3000"/>
         <source>Compare Files</source>
         <translation>Dateien vergleichen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2977"/>
-        <source>&amp;Compare Files...</source>
-        <translation>Dateien &amp;vergleichen...</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="3002"/>
-        <location filename="../UI/UserInterface.py" line="2983"/>
+        <source>&amp;Compare Files...</source>
+        <translation>Dateien &amp;vergleichen...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3027"/>
+        <location filename="../UI/UserInterface.py" line="3008"/>
         <source>Compare two files</source>
         <translation>Zwei Dateien vergleichen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2985"/>
+        <location filename="../UI/UserInterface.py" line="3010"/>
         <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="2994"/>
+        <location filename="../UI/UserInterface.py" line="3019"/>
         <source>Compare Files side by side</source>
         <translation>Dateien Seite an Seite vergleichen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2996"/>
+        <location filename="../UI/UserInterface.py" line="3021"/>
         <source>Compare &amp;Files side by side...</source>
         <translation>Dateien &amp;Seite an Seite vergleichen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3004"/>
+        <location filename="../UI/UserInterface.py" line="3029"/>
         <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="3014"/>
+        <location filename="../UI/UserInterface.py" line="3039"/>
         <source>SQL Browser</source>
         <translation>SQL-Browser</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3016"/>
+        <location filename="../UI/UserInterface.py" line="3041"/>
         <source>SQL &amp;Browser...</source>
         <translation>SQL-&amp;Browser...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3022"/>
+        <location filename="../UI/UserInterface.py" line="3047"/>
         <source>Browse a SQL database</source>
         <translation>Erforsche eine SQL-Datenbank</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3024"/>
-        <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="3038"/>
-        <location filename="../UI/UserInterface.py" line="3030"/>
-        <source>Mini Editor</source>
-        <translation>Mini-Editor</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3032"/>
-        <source>Mini &amp;Editor...</source>
-        <translation>Mini-&amp;Editor...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3040"/>
-        <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="3049"/>
-        <source>Hex Editor</source>
-        <translation>Hex-Editor</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3051"/>
-        <source>&amp;Hex Editor...</source>
-        <translation>&amp;Hex Editor...</translation>
+        <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="3063"/>
+        <location filename="../UI/UserInterface.py" line="3055"/>
+        <source>Mini Editor</source>
+        <translation>Mini-Editor</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="3057"/>
+        <source>Mini &amp;Editor...</source>
+        <translation>Mini-&amp;Editor...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3065"/>
+        <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="3074"/>
+        <source>Hex Editor</source>
+        <translation>Hex-Editor</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3076"/>
+        <source>&amp;Hex Editor...</source>
+        <translation>&amp;Hex Editor...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3082"/>
         <source>Start the eric Hex Editor</source>
         <translation>Starte den eric Hex-Editor</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3059"/>
+        <location filename="../UI/UserInterface.py" line="3084"/>
         <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Hex-Editor&lt;/b&gt;&lt;p&gt;Startet den eric Hex-Editor zum Ansehen oder Bearbeiten von Binärdateien.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3069"/>
+        <location filename="../UI/UserInterface.py" line="3094"/>
         <source>eric Web Browser</source>
         <translation>eric Web Browser</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3071"/>
-        <source>eric &amp;Web Browser...</source>
-        <translation>eric &amp;Web Browser...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3077"/>
-        <source>Start the eric Web Browser</source>
-        <translation>Startet den eric Web Browser</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3079"/>
-        <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Durchforste das Internet mit dem eric Web Browser.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3088"/>
-        <source>Icon Editor</source>
-        <translation>Symbol-Editor</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3090"/>
-        <source>&amp;Icon Editor...</source>
-        <translation>&amp;Symbol-Editor...</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="3096"/>
+        <source>eric &amp;Web Browser...</source>
+        <translation>eric &amp;Web Browser...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3102"/>
+        <source>Start the eric Web Browser</source>
+        <translation>Startet den eric Web Browser</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3104"/>
+        <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Durchforste das Internet mit dem eric Web Browser.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3113"/>
+        <source>Icon Editor</source>
+        <translation>Symbol-Editor</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3115"/>
+        <source>&amp;Icon Editor...</source>
+        <translation>&amp;Symbol-Editor...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3121"/>
         <source>Start the eric Icon Editor</source>
         <translation>Starte den eric Symbol-Editor</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3098"/>
+        <location filename="../UI/UserInterface.py" line="3123"/>
         <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Symbol-Editor&lt;/b&gt;&lt;p&gt;Startet den eric Symbol-Editor zum Editieren einfacher Icons.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6494"/>
-        <location filename="../UI/UserInterface.py" line="3110"/>
+        <location filename="../UI/UserInterface.py" line="6532"/>
+        <location filename="../UI/UserInterface.py" line="3135"/>
         <source>Snapshot</source>
         <translation>Bildschirmfoto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3112"/>
+        <location filename="../UI/UserInterface.py" line="3137"/>
         <source>&amp;Snapshot...</source>
         <translation>&amp;Bildschirmfoto...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3118"/>
+        <location filename="../UI/UserInterface.py" line="3143"/>
         <source>Take snapshots of a screen region</source>
         <translation>Bildschirmfoto aufnehmen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3120"/>
+        <location filename="../UI/UserInterface.py" line="3145"/>
         <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="3130"/>
+        <location filename="../UI/UserInterface.py" line="3155"/>
         <source>eric PDF Viewer</source>
         <translation>eric PDF Anzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3132"/>
-        <source>eric PDF &amp;Viewer...</source>
-        <translation>eric PDF &amp;Anzeige...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3138"/>
-        <source>Start the eric PDF Viewer</source>
-        <translation>Startet die eric PDF Anzeige</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3140"/>
-        <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;eric PDF Anzeige&lt;/b&gt;&lt;p&gt;Startet die eric PDF Anzeige zur Ansicht von PDF Dateien.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3149"/>
-        <source>Preferences</source>
-        <translation>Einstellungen</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3151"/>
-        <source>&amp;Preferences...</source>
-        <translation>&amp;Einstellungen...</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="3157"/>
+        <source>eric PDF &amp;Viewer...</source>
+        <translation>eric PDF &amp;Anzeige...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3163"/>
+        <source>Start the eric PDF Viewer</source>
+        <translation>Startet die eric PDF Anzeige</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3165"/>
+        <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;eric PDF Anzeige&lt;/b&gt;&lt;p&gt;Startet die eric PDF Anzeige zur Ansicht von PDF Dateien.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3174"/>
+        <source>Preferences</source>
+        <translation>Einstellungen</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3176"/>
+        <source>&amp;Preferences...</source>
+        <translation>&amp;Einstellungen...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3182"/>
         <source>Set the prefered configuration</source>
         <translation>Konfiguriert die Einstellungen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3159"/>
+        <location filename="../UI/UserInterface.py" line="3184"/>
         <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="3170"/>
+        <location filename="../UI/UserInterface.py" line="3195"/>
         <source>Export Preferences</source>
         <translation>Einstellungen exportieren</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3172"/>
+        <location filename="../UI/UserInterface.py" line="3197"/>
         <source>E&amp;xport Preferences...</source>
         <translation>Einstellungen e&amp;xportieren...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3178"/>
+        <location filename="../UI/UserInterface.py" line="3203"/>
         <source>Export the current configuration</source>
         <translation>Exportiert die aktuelle Konfiguration</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3180"/>
+        <location filename="../UI/UserInterface.py" line="3205"/>
         <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="3189"/>
+        <location filename="../UI/UserInterface.py" line="3214"/>
         <source>Import Preferences</source>
         <translation>Einstellungen importieren</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3191"/>
+        <location filename="../UI/UserInterface.py" line="3216"/>
         <source>I&amp;mport Preferences...</source>
         <translation>Einstellungen i&amp;mportieren...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3198"/>
+        <location filename="../UI/UserInterface.py" line="3223"/>
         <source>Import a previously exported configuration</source>
         <translation>Importiert eine zuvor exportierte Konfiguration</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3201"/>
+        <location filename="../UI/UserInterface.py" line="3226"/>
         <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="3210"/>
+        <location filename="../UI/UserInterface.py" line="3235"/>
         <source>Export Theme</source>
         <translation>Schema exportieren</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3212"/>
-        <source>Export Theme...</source>
-        <translation>Schema exportieren...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3218"/>
-        <source>Export the current theme</source>
-        <translation>Exportiert das aktuelle Schema</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3220"/>
-        <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Schema exportieren&lt;/b&gt;&lt;p&gt;Exportiert das aktuelle Schema in eine Datei.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3229"/>
-        <source>Import Theme</source>
-        <translation>Schema importieren</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3231"/>
-        <source>Import Theme...</source>
-        <translation>Schema importieren...</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="3237"/>
+        <source>Export Theme...</source>
+        <translation>Schema exportieren...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3243"/>
+        <source>Export the current theme</source>
+        <translation>Exportiert das aktuelle Schema</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3245"/>
+        <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Schema exportieren&lt;/b&gt;&lt;p&gt;Exportiert das aktuelle Schema in eine Datei.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3254"/>
+        <source>Import Theme</source>
+        <translation>Schema importieren</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3256"/>
+        <source>Import Theme...</source>
+        <translation>Schema importieren...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3262"/>
         <source>Import a previously exported theme</source>
         <translation>Importiert ein vorher exportiertes Schema</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3239"/>
+        <location filename="../UI/UserInterface.py" line="3264"/>
         <source>&lt;b&gt;Import Theme&lt;/b&gt;&lt;p&gt;Import a previously exported theme.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Schema importieren&lt;/b&gt;&lt;p&gt;Importiert ein vorher exportiertes Schema.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3248"/>
+        <location filename="../UI/UserInterface.py" line="3273"/>
         <source>Reload APIs</source>
         <translation>APIs neu laden</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3248"/>
+        <location filename="../UI/UserInterface.py" line="3273"/>
         <source>Reload &amp;APIs</source>
         <translation>APIs &amp;neu laden</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3250"/>
+        <location filename="../UI/UserInterface.py" line="3275"/>
         <source>Reload the API information</source>
         <translation>Die API-Informationen neu laden</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3252"/>
+        <location filename="../UI/UserInterface.py" line="3277"/>
         <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="3266"/>
-        <location filename="../UI/UserInterface.py" line="3258"/>
+        <location filename="../UI/UserInterface.py" line="3291"/>
+        <location filename="../UI/UserInterface.py" line="3283"/>
         <source>Show external tools</source>
         <translation>Zeige externe Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3260"/>
+        <location filename="../UI/UserInterface.py" line="3285"/>
         <source>Show external &amp;tools</source>
         <translation>Zeige externe &amp;Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3268"/>
+        <location filename="../UI/UserInterface.py" line="3293"/>
         <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zeige externe Werkzeuge&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog, der die Pfade und Versionen der von eric genutzten externen Werkzeuge anzeigt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3278"/>
+        <location filename="../UI/UserInterface.py" line="3303"/>
         <source>View Profiles</source>
         <translation>Ansichtenprofile</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3280"/>
+        <location filename="../UI/UserInterface.py" line="3305"/>
         <source>&amp;View Profiles...</source>
         <translation>&amp;Ansichtenprofile...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3286"/>
+        <location filename="../UI/UserInterface.py" line="3311"/>
         <source>Configure view profiles</source>
         <translation>Ansichtenprofile konfigurieren</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3288"/>
+        <location filename="../UI/UserInterface.py" line="3313"/>
         <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="3299"/>
+        <location filename="../UI/UserInterface.py" line="3324"/>
         <source>Toolbars</source>
         <translation>Werkzeugleisten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3301"/>
+        <location filename="../UI/UserInterface.py" line="3326"/>
         <source>Tool&amp;bars...</source>
         <translation>Werkzeug&amp;leisten...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3307"/>
+        <location filename="../UI/UserInterface.py" line="3332"/>
         <source>Configure toolbars</source>
         <translation>Werkzeugleisten einrichten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3309"/>
+        <location filename="../UI/UserInterface.py" line="3334"/>
         <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="3320"/>
+        <location filename="../UI/UserInterface.py" line="3345"/>
         <source>Keyboard Shortcuts</source>
         <translation>Tastaturkurzbefehle</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3322"/>
+        <location filename="../UI/UserInterface.py" line="3347"/>
         <source>Keyboard &amp;Shortcuts...</source>
         <translation>&amp;Tastaturkurzbefehle...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3328"/>
+        <location filename="../UI/UserInterface.py" line="3353"/>
         <source>Set the keyboard shortcuts</source>
         <translation>Setze die Tastaturkurzbefehle</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3330"/>
+        <location filename="../UI/UserInterface.py" line="3355"/>
         <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="7453"/>
-        <location filename="../UI/UserInterface.py" line="7434"/>
-        <location filename="../UI/UserInterface.py" line="3340"/>
+        <location filename="../UI/UserInterface.py" line="7491"/>
+        <location filename="../UI/UserInterface.py" line="7472"/>
+        <location filename="../UI/UserInterface.py" line="3365"/>
         <source>Export Keyboard Shortcuts</source>
         <translation>Tastaturkurzbefehle exportieren</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3342"/>
-        <source>&amp;Export Keyboard Shortcuts...</source>
-        <translation>Tastaturkurzbefehle &amp;exportieren...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3348"/>
-        <source>Export the keyboard shortcuts</source>
-        <translation>Exportiert die Tastaturkurzbefehle</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3350"/>
-        <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="7472"/>
-        <location filename="../UI/UserInterface.py" line="3359"/>
-        <source>Import Keyboard Shortcuts</source>
-        <translation>Tastaturkurzbefehle importieren</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3361"/>
-        <source>&amp;Import Keyboard Shortcuts...</source>
-        <translation>Tastaturkurzbefehle &amp;importieren...</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="3367"/>
+        <source>&amp;Export Keyboard Shortcuts...</source>
+        <translation>Tastaturkurzbefehle &amp;exportieren...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3373"/>
+        <source>Export the keyboard shortcuts</source>
+        <translation>Exportiert die Tastaturkurzbefehle</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3375"/>
+        <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="7510"/>
+        <location filename="../UI/UserInterface.py" line="3384"/>
+        <source>Import Keyboard Shortcuts</source>
+        <translation>Tastaturkurzbefehle importieren</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3386"/>
+        <source>&amp;Import Keyboard Shortcuts...</source>
+        <translation>Tastaturkurzbefehle &amp;importieren...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3392"/>
         <source>Import the keyboard shortcuts</source>
         <translation>Importiert die Tastaturkurzbefehle</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3369"/>
+        <location filename="../UI/UserInterface.py" line="3394"/>
         <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="3379"/>
+        <location filename="../UI/UserInterface.py" line="3404"/>
         <source>Manage SSL Certificates</source>
         <translation>SSL-Zertifikate verwalten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3381"/>
+        <location filename="../UI/UserInterface.py" line="3406"/>
         <source>Manage SSL Certificates...</source>
         <translation>SSL-Zertifikate verwalten...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3388"/>
-        <source>Manage the saved SSL certificates</source>
-        <translation>Verwalten der gespeicherten SSL-Zertifikate</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3391"/>
-        <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="3401"/>
-        <source>Edit Message Filters</source>
-        <translation>Meldungsfilter bearbeiten</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3403"/>
-        <source>Edit Message Filters...</source>
-        <translation>Meldungsfilter bearbeiten...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3410"/>
-        <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="3413"/>
+        <source>Manage the saved SSL certificates</source>
+        <translation>Verwalten der gespeicherten SSL-Zertifikate</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3416"/>
+        <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="3426"/>
+        <source>Edit Message Filters</source>
+        <translation>Meldungsfilter bearbeiten</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3428"/>
+        <source>Edit Message Filters...</source>
+        <translation>Meldungsfilter bearbeiten...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3435"/>
+        <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="3438"/>
         <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="3432"/>
-        <location filename="../UI/UserInterface.py" line="3426"/>
-        <location filename="../UI/UserInterface.py" line="3424"/>
-        <source>Clear private data</source>
-        <translation>Private Daten löschen</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3434"/>
-        <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="3445"/>
-        <location filename="../UI/UserInterface.py" line="3444"/>
-        <source>Activate current editor</source>
-        <translation>Aktiviere aktuellen Editor</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3446"/>
-        <source>Alt+Shift+E</source>
-        <translation>Alt+Shift+E</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="3457"/>
-        <location filename="../UI/UserInterface.py" line="3456"/>
-        <source>Show next</source>
-        <translation>Zeige nächste</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3458"/>
-        <source>Ctrl+Alt+Tab</source>
-        <translation>Ctrl+Alt+Tab</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3469"/>
-        <location filename="../UI/UserInterface.py" line="3468"/>
-        <source>Show previous</source>
-        <translation>Zeige vorherige</translation>
+        <location filename="../UI/UserInterface.py" line="3451"/>
+        <location filename="../UI/UserInterface.py" line="3449"/>
+        <source>Clear private data</source>
+        <translation>Private Daten löschen</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3459"/>
+        <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="3470"/>
-        <source>Shift+Ctrl+Alt+Tab</source>
-        <translation>Shift+Ctrl+Alt+Tab</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3481"/>
-        <location filename="../UI/UserInterface.py" line="3480"/>
-        <source>Switch between tabs</source>
-        <translation>Zwischen Tabs umschalten</translation>
+        <location filename="../UI/UserInterface.py" line="3469"/>
+        <source>Activate current editor</source>
+        <translation>Aktiviere aktuellen Editor</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3471"/>
+        <source>Alt+Shift+E</source>
+        <translation>Alt+Shift+E</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="3482"/>
-        <source>Ctrl+1</source>
-        <translation>Ctrl+1</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3492"/>
-        <source>Plugin Infos</source>
-        <translation>Plugininformationen</translation>
+        <location filename="../UI/UserInterface.py" line="3481"/>
+        <source>Show next</source>
+        <translation>Zeige nächste</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3483"/>
+        <source>Ctrl+Alt+Tab</source>
+        <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="3494"/>
+        <location filename="../UI/UserInterface.py" line="3493"/>
+        <source>Show previous</source>
+        <translation>Zeige vorherige</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3495"/>
+        <source>Shift+Ctrl+Alt+Tab</source>
+        <translation>Shift+Ctrl+Alt+Tab</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3506"/>
+        <location filename="../UI/UserInterface.py" line="3505"/>
+        <source>Switch between tabs</source>
+        <translation>Zwischen Tabs umschalten</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3507"/>
+        <source>Ctrl+1</source>
+        <translation>Ctrl+1</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3517"/>
+        <source>Plugin Infos</source>
+        <translation>Plugininformationen</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3519"/>
         <source>&amp;Plugin Infos...</source>
         <translation>&amp;Plugininformationen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3500"/>
+        <location filename="../UI/UserInterface.py" line="3525"/>
         <source>Show Plugin Infos</source>
         <translation>Zeigt Plugininformationen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3502"/>
+        <location filename="../UI/UserInterface.py" line="3527"/>
         <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="3520"/>
-        <location filename="../UI/UserInterface.py" line="3512"/>
+        <location filename="../UI/UserInterface.py" line="3545"/>
+        <location filename="../UI/UserInterface.py" line="3537"/>
         <source>Install Plugins</source>
         <translation>Plugins installieren</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3514"/>
-        <source>&amp;Install Plugins...</source>
-        <translation>Plugins &amp;installieren...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3522"/>
-        <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="3539"/>
-        <location filename="../UI/UserInterface.py" line="3531"/>
+        <source>&amp;Install Plugins...</source>
+        <translation>Plugins &amp;installieren...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3547"/>
+        <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="3564"/>
+        <location filename="../UI/UserInterface.py" line="3556"/>
         <source>Uninstall Plugin</source>
         <translation>Plugin deinstallieren</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3533"/>
-        <source>&amp;Uninstall Plugin...</source>
-        <translation>Plugin &amp;deinstallieren...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3541"/>
-        <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="3552"/>
-        <source>Plugin &amp;Repository...</source>
-        <translation>Plugin-&amp;Repository...</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="3558"/>
+        <source>&amp;Uninstall Plugin...</source>
+        <translation>Plugin &amp;deinstallieren...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3566"/>
+        <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="3577"/>
+        <source>Plugin &amp;Repository...</source>
+        <translation>Plugin-&amp;Repository...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3583"/>
         <source>Show Plugins available for download</source>
         <translation>Zeige  zum Download verfügbare Plugins an</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3560"/>
+        <location filename="../UI/UserInterface.py" line="3585"/>
         <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="3587"/>
-        <location filename="../UI/UserInterface.py" line="3586"/>
+        <location filename="../UI/UserInterface.py" line="3612"/>
+        <location filename="../UI/UserInterface.py" line="3611"/>
         <source>Qt5 Documentation</source>
         <translation>Qt5 Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3593"/>
+        <location filename="../UI/UserInterface.py" line="3618"/>
         <source>Open Qt5 Documentation</source>
         <translation>Öffne die Qt5 Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3595"/>
+        <location filename="../UI/UserInterface.py" line="3620"/>
         <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/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3608"/>
-        <location filename="../UI/UserInterface.py" line="3607"/>
+        <location filename="../UI/UserInterface.py" line="3633"/>
+        <location filename="../UI/UserInterface.py" line="3632"/>
         <source>Qt6 Documentation</source>
         <translation>Qt6 Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3614"/>
+        <location filename="../UI/UserInterface.py" line="3639"/>
         <source>Open Qt6 Documentation</source>
         <translation>Öffne die Qt6 Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3616"/>
+        <location filename="../UI/UserInterface.py" line="3641"/>
         <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation>&lt;b&gt;Qt6-Dokumentation&lt;/b&gt;&lt;p&gt;Zeige die Qt6-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3629"/>
-        <location filename="../UI/UserInterface.py" line="3628"/>
+        <location filename="../UI/UserInterface.py" line="3654"/>
+        <location filename="../UI/UserInterface.py" line="3653"/>
         <source>PyQt5 Documentation</source>
         <translation>PyQt5-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3635"/>
+        <location filename="../UI/UserInterface.py" line="3660"/>
         <source>Open PyQt5 Documentation</source>
         <translation>Öffne die PyQt5-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3637"/>
+        <location filename="../UI/UserInterface.py" line="3662"/>
         <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/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3650"/>
-        <location filename="../UI/UserInterface.py" line="3649"/>
+        <location filename="../UI/UserInterface.py" line="3675"/>
+        <location filename="../UI/UserInterface.py" line="3674"/>
         <source>PyQt6 Documentation</source>
         <translation>PyQt6-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3656"/>
+        <location filename="../UI/UserInterface.py" line="3681"/>
         <source>Open PyQt6 Documentation</source>
         <translation>Öffne die PyQt6-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3658"/>
+        <location filename="../UI/UserInterface.py" line="3683"/>
         <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation>&lt;b&gt;PyQt6-Dokumentation&lt;/b&gt;&lt;p&gt;Zeige die PyQt6-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3676"/>
-        <location filename="../UI/UserInterface.py" line="3675"/>
+        <location filename="../UI/UserInterface.py" line="3701"/>
+        <location filename="../UI/UserInterface.py" line="3700"/>
         <source>Python 3 Documentation</source>
         <translation>Python 3-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3682"/>
+        <location filename="../UI/UserInterface.py" line="3707"/>
         <source>Open Python 3 Documentation</source>
         <translation>Öffne die Python 3-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3684"/>
-        <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="3703"/>
-        <location filename="../UI/UserInterface.py" line="3702"/>
-        <source>eric API Documentation</source>
-        <translation>eric-API-Dokumentation</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="3709"/>
+        <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="3728"/>
+        <location filename="../UI/UserInterface.py" line="3727"/>
+        <source>eric API Documentation</source>
+        <translation>eric-API-Dokumentation</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3734"/>
         <source>Open eric API Documentation</source>
         <translation>Öffne die eric-API-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3711"/>
+        <location filename="../UI/UserInterface.py" line="3736"/>
         <source>&lt;b&gt;eric API Documentation&lt;/b&gt;&lt;p&gt;Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
         <translation>&lt;b&gt;eric API Dokumentation&lt;/b&gt;&lt;p&gt;Zeige die eric API Dokumentation an. Der Pfad für die Dokumentation ist das Unterverzeichnis Documentation/Source im eric Installationverzeichnis.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3729"/>
-        <location filename="../UI/UserInterface.py" line="3728"/>
+        <location filename="../UI/UserInterface.py" line="3754"/>
+        <location filename="../UI/UserInterface.py" line="3753"/>
         <source>PySide2 Documentation</source>
         <translation>PySide2-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3735"/>
+        <location filename="../UI/UserInterface.py" line="3760"/>
         <source>Open PySide2 Documentation</source>
         <translation>Öffne die PySide2-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3737"/>
+        <location filename="../UI/UserInterface.py" line="3762"/>
         <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/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3755"/>
-        <location filename="../UI/UserInterface.py" line="3754"/>
+        <location filename="../UI/UserInterface.py" line="3780"/>
+        <location filename="../UI/UserInterface.py" line="3779"/>
         <source>PySide6 Documentation</source>
         <translation>PySide6-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3761"/>
+        <location filename="../UI/UserInterface.py" line="3786"/>
         <source>Open PySide6 Documentation</source>
         <translation>Öffne die PySide6-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3763"/>
+        <location filename="../UI/UserInterface.py" line="3788"/>
         <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation>&lt;b&gt;PySide6-Dokumentation&lt;/b&gt;&lt;p&gt;Zeige die PySide6-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3865"/>
+        <location filename="../UI/UserInterface.py" line="3890"/>
         <source>E&amp;xtras</source>
         <translation>E&amp;xtras</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3875"/>
+        <location filename="../UI/UserInterface.py" line="3900"/>
         <source>Wi&amp;zards</source>
         <translation>&amp;Assistenten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3893"/>
+        <location filename="../UI/UserInterface.py" line="3918"/>
         <source>P&amp;lugins</source>
         <translation>Plugi&amp;ns</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3902"/>
+        <location filename="../UI/UserInterface.py" line="3927"/>
         <source>Configure...</source>
         <translation>Einstellungen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3911"/>
+        <location filename="../UI/UserInterface.py" line="3936"/>
         <source>&amp;Testing</source>
         <translation>Modul&amp;tests</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3928"/>
+        <location filename="../UI/UserInterface.py" line="3953"/>
         <source>Select Tool Group</source>
         <translation>Werkzeuggruppe wählen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3939"/>
+        <location filename="../UI/UserInterface.py" line="3964"/>
         <source>Se&amp;ttings</source>
         <translation>&amp;Einstellungen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3972"/>
+        <location filename="../UI/UserInterface.py" line="3997"/>
         <source>&amp;Window</source>
         <translation>&amp;Fenster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3981"/>
+        <location filename="../UI/UserInterface.py" line="4006"/>
         <source>&amp;Windows</source>
         <translation>&amp;Fenster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3985"/>
+        <location filename="../UI/UserInterface.py" line="4010"/>
         <source>Central Park</source>
         <translation>Mittelbereich</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3989"/>
+        <location filename="../UI/UserInterface.py" line="4014"/>
         <source>Left Side</source>
         <translation>Linke Seite</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4008"/>
+        <location filename="../UI/UserInterface.py" line="4033"/>
         <source>Right Side</source>
         <translation>Rechte Seite</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4027"/>
+        <location filename="../UI/UserInterface.py" line="4052"/>
         <source>Bottom Side</source>
         <translation>Unterer Rand</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4035"/>
+        <location filename="../UI/UserInterface.py" line="4060"/>
         <source>Plug-ins</source>
         <translation>Plugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4041"/>
+        <location filename="../UI/UserInterface.py" line="4066"/>
         <source>&amp;Toolbars</source>
         <translation>&amp;Werkzeugleisten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4054"/>
+        <location filename="../UI/UserInterface.py" line="4079"/>
         <source>&amp;Help</source>
         <translation>&amp;Hilfe</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4109"/>
-        <location filename="../UI/UserInterface.py" line="4093"/>
+        <location filename="../UI/UserInterface.py" line="4135"/>
+        <location filename="../UI/UserInterface.py" line="4119"/>
         <source>Tools</source>
         <translation>Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4111"/>
-        <location filename="../UI/UserInterface.py" line="4097"/>
+        <location filename="../UI/UserInterface.py" line="4137"/>
+        <location filename="../UI/UserInterface.py" line="4123"/>
         <source>Settings</source>
         <translation>Einstellungen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6222"/>
-        <location filename="../UI/UserInterface.py" line="4112"/>
-        <location filename="../UI/UserInterface.py" line="4098"/>
+        <location filename="../UI/UserInterface.py" line="6260"/>
+        <location filename="../UI/UserInterface.py" line="4138"/>
+        <location filename="../UI/UserInterface.py" line="4124"/>
         <source>Help</source>
         <translation>Hilfe</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4113"/>
-        <location filename="../UI/UserInterface.py" line="4099"/>
+        <location filename="../UI/UserInterface.py" line="4139"/>
+        <location filename="../UI/UserInterface.py" line="4125"/>
         <source>Profiles</source>
         <translation>Profile</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4114"/>
-        <location filename="../UI/UserInterface.py" line="4100"/>
+        <location filename="../UI/UserInterface.py" line="4140"/>
+        <location filename="../UI/UserInterface.py" line="4126"/>
         <source>Plugins</source>
         <translation>Plugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4110"/>
+        <location filename="../UI/UserInterface.py" line="4136"/>
         <source>Unittest</source>
         <translation>Modultests</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4284"/>
+        <location filename="../UI/UserInterface.py" line="4310"/>
         <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="4293"/>
+        <location filename="../UI/UserInterface.py" line="4319"/>
         <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="4302"/>
+        <location filename="../UI/UserInterface.py" line="4328"/>
         <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="4311"/>
+        <location filename="../UI/UserInterface.py" line="4337"/>
         <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="4320"/>
+        <location filename="../UI/UserInterface.py" line="4346"/>
         <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="4329"/>
+        <location filename="../UI/UserInterface.py" line="4355"/>
         <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="4343"/>
+        <location filename="../UI/UserInterface.py" line="4369"/>
         <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="4414"/>
-        <location filename="../UI/UserInterface.py" line="4373"/>
+        <location filename="../UI/UserInterface.py" line="4440"/>
+        <location filename="../UI/UserInterface.py" line="4399"/>
         <source>External Tools/{0}</source>
         <translation>Externe Werkzeuge/{0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4522"/>
+        <location filename="../UI/UserInterface.py" line="4548"/>
         <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="4571"/>
+        <location filename="../UI/UserInterface.py" line="4597"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Security)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Sicherheit)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4588"/>
+        <location filename="../UI/UserInterface.py" line="4614"/>
         <source>Desktop</source>
         <translation>Arbeitsumgebung</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4592"/>
+        <location filename="../UI/UserInterface.py" line="4618"/>
         <source>Session Type</source>
         <translation>Sitzungstyp</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4595"/>
+        <location filename="../UI/UserInterface.py" line="4621"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4635"/>
+        <location filename="../UI/UserInterface.py" line="4673"/>
         <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="4970"/>
+        <location filename="../UI/UserInterface.py" line="5008"/>
         <source>Restart application</source>
         <translation>Anwendung neu starten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4971"/>
+        <location filename="../UI/UserInterface.py" line="5009"/>
         <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="4995"/>
+        <location filename="../UI/UserInterface.py" line="5033"/>
         <source>Upgrade PyQt</source>
         <translation>PyQt aktualisieren</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4996"/>
+        <location filename="../UI/UserInterface.py" line="5034"/>
         <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
@@ -91341,13 +91361,13 @@
 Soll die Aktualisierung jetzt durchgeführt werden?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5046"/>
-        <location filename="../UI/UserInterface.py" line="5020"/>
+        <location filename="../UI/UserInterface.py" line="5084"/>
+        <location filename="../UI/UserInterface.py" line="5058"/>
         <source>Upgrade Eric</source>
         <translation>Eric aktualisieren</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5021"/>
+        <location filename="../UI/UserInterface.py" line="5059"/>
         <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
@@ -91356,7 +91376,7 @@
 Soll die Aktualisierung jetzt durchgeführt werden?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5047"/>
+        <location filename="../UI/UserInterface.py" line="5085"/>
         <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
  Shall the upgrade be done now?</source>
@@ -91365,336 +91385,336 @@
 Soll die Aktualisierung jetzt durchgeführt werden?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5105"/>
+        <location filename="../UI/UserInterface.py" line="5143"/>
         <source>&amp;Builtin Tools</source>
         <translation>&amp;Eingebaute Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5124"/>
+        <location filename="../UI/UserInterface.py" line="5162"/>
         <source>&amp;Plugin Tools</source>
         <translation>&amp;Pluginwerkzeuge</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5127"/>
+        <location filename="../UI/UserInterface.py" line="5165"/>
         <source>&amp;User Tools</source>
         <translation>&amp;Benutzerwerkzeuge</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5153"/>
+        <location filename="../UI/UserInterface.py" line="5191"/>
         <source>Configure Tool Groups ...</source>
         <translation>Konfiguriere Werkzeuggruppen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5157"/>
+        <location filename="../UI/UserInterface.py" line="5195"/>
         <source>Configure current Tool Group ...</source>
         <translation>Konfiguriere aktuelle Werkzeuggruppe...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5196"/>
-        <location filename="../UI/UserInterface.py" line="5176"/>
+        <location filename="../UI/UserInterface.py" line="5234"/>
+        <location filename="../UI/UserInterface.py" line="5214"/>
         <source>No User Tools Configured</source>
         <translation>Keine Benutzerwerkzeuge konfiguriert</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5272"/>
+        <location filename="../UI/UserInterface.py" line="5310"/>
         <source>&amp;Show all</source>
         <translation>Alle an&amp;zeigen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5274"/>
+        <location filename="../UI/UserInterface.py" line="5312"/>
         <source>&amp;Hide all</source>
         <translation>Alle &amp;ausblenden</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6359"/>
-        <location filename="../UI/UserInterface.py" line="6348"/>
-        <location filename="../UI/UserInterface.py" line="6300"/>
-        <location filename="../UI/UserInterface.py" line="6290"/>
-        <location filename="../UI/UserInterface.py" line="6121"/>
-        <location filename="../UI/UserInterface.py" line="6111"/>
-        <location filename="../UI/UserInterface.py" line="6053"/>
-        <location filename="../UI/UserInterface.py" line="6043"/>
+        <location filename="../UI/UserInterface.py" line="6397"/>
+        <location filename="../UI/UserInterface.py" line="6386"/>
+        <location filename="../UI/UserInterface.py" line="6338"/>
+        <location filename="../UI/UserInterface.py" line="6328"/>
+        <location filename="../UI/UserInterface.py" line="6159"/>
+        <location filename="../UI/UserInterface.py" line="6149"/>
+        <location filename="../UI/UserInterface.py" line="6091"/>
+        <location filename="../UI/UserInterface.py" line="6081"/>
         <source>Problem</source>
         <translation>Problem</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6360"/>
-        <location filename="../UI/UserInterface.py" line="6349"/>
-        <location filename="../UI/UserInterface.py" line="6301"/>
-        <location filename="../UI/UserInterface.py" line="6291"/>
-        <location filename="../UI/UserInterface.py" line="6122"/>
-        <location filename="../UI/UserInterface.py" line="6112"/>
-        <location filename="../UI/UserInterface.py" line="6054"/>
-        <location filename="../UI/UserInterface.py" line="6044"/>
+        <location filename="../UI/UserInterface.py" line="6398"/>
+        <location filename="../UI/UserInterface.py" line="6387"/>
+        <location filename="../UI/UserInterface.py" line="6339"/>
+        <location filename="../UI/UserInterface.py" line="6329"/>
+        <location filename="../UI/UserInterface.py" line="6160"/>
+        <location filename="../UI/UserInterface.py" line="6150"/>
+        <location filename="../UI/UserInterface.py" line="6092"/>
+        <location filename="../UI/UserInterface.py" line="6082"/>
         <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="6603"/>
-        <location filename="../UI/UserInterface.py" line="6514"/>
-        <location filename="../UI/UserInterface.py" line="6395"/>
-        <location filename="../UI/UserInterface.py" line="6372"/>
-        <location filename="../UI/UserInterface.py" line="6313"/>
-        <location filename="../UI/UserInterface.py" line="6260"/>
-        <location filename="../UI/UserInterface.py" line="6238"/>
-        <location filename="../UI/UserInterface.py" line="6197"/>
-        <location filename="../UI/UserInterface.py" line="6188"/>
-        <location filename="../UI/UserInterface.py" line="6153"/>
-        <location filename="../UI/UserInterface.py" line="6144"/>
-        <location filename="../UI/UserInterface.py" line="6085"/>
-        <location filename="../UI/UserInterface.py" line="6076"/>
+        <location filename="../UI/UserInterface.py" line="6641"/>
+        <location filename="../UI/UserInterface.py" line="6552"/>
+        <location filename="../UI/UserInterface.py" line="6433"/>
+        <location filename="../UI/UserInterface.py" line="6410"/>
+        <location filename="../UI/UserInterface.py" line="6351"/>
+        <location filename="../UI/UserInterface.py" line="6298"/>
+        <location filename="../UI/UserInterface.py" line="6276"/>
+        <location filename="../UI/UserInterface.py" line="6235"/>
+        <location filename="../UI/UserInterface.py" line="6226"/>
+        <location filename="../UI/UserInterface.py" line="6191"/>
+        <location filename="../UI/UserInterface.py" line="6182"/>
+        <location filename="../UI/UserInterface.py" line="6123"/>
+        <location filename="../UI/UserInterface.py" line="6114"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6077"/>
+        <location filename="../UI/UserInterface.py" line="6115"/>
         <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="6086"/>
+        <location filename="../UI/UserInterface.py" line="6124"/>
         <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="6145"/>
+        <location filename="../UI/UserInterface.py" line="6183"/>
         <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="6154"/>
+        <location filename="../UI/UserInterface.py" line="6192"/>
         <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="6189"/>
+        <location filename="../UI/UserInterface.py" line="6227"/>
         <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="6198"/>
+        <location filename="../UI/UserInterface.py" line="6236"/>
         <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="6223"/>
-        <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="6239"/>
-        <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="6261"/>
+        <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="6277"/>
+        <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="6299"/>
         <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="6314"/>
+        <location filename="../UI/UserInterface.py" line="6352"/>
         <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="6373"/>
+        <location filename="../UI/UserInterface.py" line="6411"/>
         <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="6396"/>
+        <location filename="../UI/UserInterface.py" line="6434"/>
         <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="6495"/>
+        <location filename="../UI/UserInterface.py" line="6533"/>
         <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Bildschirmfotofunktion steht für Wayland basierte Desktop-Umgebungen nicht zur Verfügung.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6515"/>
+        <location filename="../UI/UserInterface.py" line="6553"/>
         <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="6548"/>
-        <location filename="../UI/UserInterface.py" line="6538"/>
-        <source>External Tools</source>
-        <translation>Externe Werkzeuge</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6539"/>
-        <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="6549"/>
-        <source>No toolgroup entry &apos;{0}&apos; found.</source>
-        <translation>Kein Werkzeuggruppeneintrag „{0}“ gefunden.</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="6586"/>
+        <location filename="../UI/UserInterface.py" line="6576"/>
+        <source>External Tools</source>
+        <translation>Externe Werkzeuge</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6577"/>
+        <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="6587"/>
+        <source>No toolgroup entry &apos;{0}&apos; found.</source>
+        <translation>Kein Werkzeuggruppeneintrag „{0}“ gefunden.</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6624"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation>Starte Prozess „{0} {1}“.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6604"/>
+        <location filename="../UI/UserInterface.py" line="6642"/>
         <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="6683"/>
+        <location filename="../UI/UserInterface.py" line="6721"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation>Prozess „{0}“ ist beendet.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6970"/>
-        <location filename="../UI/UserInterface.py" line="6908"/>
-        <location filename="../UI/UserInterface.py" line="6864"/>
-        <location filename="../UI/UserInterface.py" line="6790"/>
-        <location filename="../UI/UserInterface.py" line="6726"/>
+        <location filename="../UI/UserInterface.py" line="7008"/>
+        <location filename="../UI/UserInterface.py" line="6946"/>
+        <location filename="../UI/UserInterface.py" line="6902"/>
+        <location filename="../UI/UserInterface.py" line="6828"/>
+        <location filename="../UI/UserInterface.py" line="6764"/>
         <source>Documentation Missing</source>
         <translation>Dokumentation fehlt</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6971"/>
-        <location filename="../UI/UserInterface.py" line="6909"/>
-        <location filename="../UI/UserInterface.py" line="6865"/>
-        <location filename="../UI/UserInterface.py" line="6791"/>
-        <location filename="../UI/UserInterface.py" line="6727"/>
+        <location filename="../UI/UserInterface.py" line="7009"/>
+        <location filename="../UI/UserInterface.py" line="6947"/>
+        <location filename="../UI/UserInterface.py" line="6903"/>
+        <location filename="../UI/UserInterface.py" line="6829"/>
+        <location filename="../UI/UserInterface.py" line="6765"/>
         <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="6952"/>
-        <location filename="../UI/UserInterface.py" line="6834"/>
+        <location filename="../UI/UserInterface.py" line="6990"/>
+        <location filename="../UI/UserInterface.py" line="6872"/>
         <source>Documentation</source>
         <translation>Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6835"/>
+        <location filename="../UI/UserInterface.py" line="6873"/>
         <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der PyQt{0}-Dokumentations-Startpunkt ist nicht konfiguriert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6953"/>
+        <location filename="../UI/UserInterface.py" line="6991"/>
         <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="7132"/>
-        <location filename="../UI/UserInterface.py" line="7068"/>
+        <location filename="../UI/UserInterface.py" line="7170"/>
+        <location filename="../UI/UserInterface.py" line="7106"/>
         <source>Start Web Browser</source>
         <translation>Web Browser starten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7069"/>
+        <location filename="../UI/UserInterface.py" line="7107"/>
         <source>The eric web browser could not be started.</source>
         <translation>Der eric Web Browser konnte nicht gestartet werden.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7133"/>
+        <location filename="../UI/UserInterface.py" line="7171"/>
         <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der eric Web Browser ist nicht gestartet.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7179"/>
+        <location filename="../UI/UserInterface.py" line="7217"/>
         <source>Open Browser</source>
         <translation>Browser starten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7179"/>
+        <location filename="../UI/UserInterface.py" line="7217"/>
         <source>Could not start a web browser</source>
         <translation>Der System Web Browser konnte nicht gestartet werden</translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="7512"/>
         <location filename="../UI/UserInterface.py" line="7474"/>
-        <location filename="../UI/UserInterface.py" line="7436"/>
         <source>Keyboard Shortcuts File (*.ekj)</source>
         <translation>Tastaturkurzbefehlsdatei (*.ekj)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7454"/>
+        <location filename="../UI/UserInterface.py" line="7492"/>
         <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Tastaturkurzbefehlsdatei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7682"/>
+        <location filename="../UI/UserInterface.py" line="7720"/>
         <source>Read Session</source>
         <translation>Sitzung lesen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7683"/>
+        <location filename="../UI/UserInterface.py" line="7721"/>
         <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="7706"/>
+        <location filename="../UI/UserInterface.py" line="7744"/>
         <source>Save Session</source>
         <translation>Sitzung speichern</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7731"/>
-        <location filename="../UI/UserInterface.py" line="7708"/>
+        <location filename="../UI/UserInterface.py" line="7769"/>
+        <location filename="../UI/UserInterface.py" line="7746"/>
         <source>eric Session Files (*.esj)</source>
         <translation>eric Sitzungsdateien (*.esj)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7776"/>
+        <location filename="../UI/UserInterface.py" line="7814"/>
         <source>Crash Session found!</source>
         <translation>Absturzsitzung gefunden!</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7777"/>
+        <location filename="../UI/UserInterface.py" line="7815"/>
         <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="8154"/>
+        <location filename="../UI/UserInterface.py" line="8192"/>
         <source>Drop Error</source>
         <translation>Drop-Fehler</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="8155"/>
+        <location filename="../UI/UserInterface.py" line="8193"/>
         <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="8341"/>
+        <location filename="../UI/UserInterface.py" line="8379"/>
         <source>Upgrade available</source>
         <translation>Aktualisierung verfügbar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="8342"/>
+        <location filename="../UI/UserInterface.py" line="8380"/>
         <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href=&quot;{0}/eric-ide/&quot;&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Eine neuere Version des &lt;b&gt;eric-ide&lt;/b&gt; Paketes ist auf &lt;a href=&quot;{0}/eric-ide/&quot;&gt;PyPI&lt;/a&gt; verfügbar.&lt;/p&gt;&lt;p&gt;Installiert: {1}&lt;br/&gt;Verfügbar: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Soll &lt;b&gt;eric-ide&lt;/b&gt; aktualisiert werden?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="8387"/>
+        <location filename="../UI/UserInterface.py" line="8425"/>
         <source>First time usage</source>
         <translation>Erstmalige Nutzung</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="8388"/>
+        <location filename="../UI/UserInterface.py" line="8426"/>
         <source>eric has not been configured yet. The configuration dialog will be started.</source>
         <translation>eric wurde noch nicht konfiguriert. Der Konfigurationsdialog wird nun gestartet.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="8410"/>
+        <location filename="../UI/UserInterface.py" line="8448"/>
         <source>Select Workspace Directory</source>
         <translation>Wähle Arbeitsverzeichnis</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="8575"/>
+        <location filename="../UI/UserInterface.py" line="8616"/>
         <source>Unsaved Data Detected</source>
         <translation>Nicht gespeicherte Daten gefunden</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="8576"/>
+        <location filename="../UI/UserInterface.py" line="8617"/>
         <source>Some editors contain unsaved data. Shall these be saved?</source>
         <translation>Einige Editoren haben nicht gespeicherte Inhalte. Sollen diese gespeichert werden?</translation>
     </message>
@@ -92127,40 +92147,40 @@
         <translation>&lt;b&gt;Das Lokale Variablen Fenster&lt;/b&gt;&lt;p&gt;Dieses Fenster zeigt die lokalen Variablen des untersuchten Programmes an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1055"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1056"/>
         <source>Show Details...</source>
         <translation>Zeige Details...</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1057"/>
-        <source>Expand</source>
-        <translation>Ausklappen</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1058"/>
-        <source>Collapse</source>
-        <translation>Einklappen</translation>
-    </message>
-    <message>
         <location filename="../Debugger/VariablesViewer.py" line="1059"/>
+        <source>Expand Subitems</source>
+        <translation>Unterpunkte erweitern</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/VariablesViewer.py" line="1062"/>
+        <source>Collapse Subitems</source>
+        <translation>Unterpunkte einklappen</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/VariablesViewer.py" line="1064"/>
         <source>Collapse All</source>
         <translation>Alle einklappen</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1067"/>
-        <location filename="../Debugger/VariablesViewer.py" line="1061"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1072"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1066"/>
         <source>Refresh</source>
         <translation>Aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1069"/>
-        <location filename="../Debugger/VariablesViewer.py" line="1063"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1074"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1068"/>
         <source>Configure...</source>
         <translation>Einstellungen...</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1071"/>
-        <location filename="../Debugger/VariablesViewer.py" line="1064"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1076"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1069"/>
         <source>Variables Type Filter...</source>
         <translation>Variablentypenfilter …</translation>
     </message>
@@ -96761,91 +96781,91 @@
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; enthält ungesicherte Änderungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5972"/>
+        <location filename="../ViewManager/ViewManager.py" line="5969"/>
         <source>Line: {0:5}</source>
         <translation>Zeile: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5978"/>
+        <location filename="../ViewManager/ViewManager.py" line="5975"/>
         <source>Pos: {0:5}</source>
         <translation>Pos: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5998"/>
+        <location filename="../ViewManager/ViewManager.py" line="5995"/>
         <source>Language: {0}</source>
         <translation>Sprache: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6007"/>
+        <location filename="../ViewManager/ViewManager.py" line="6004"/>
         <source>EOL Mode: {0}</source>
         <translation>EOL-Modus: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6503"/>
-        <location filename="../ViewManager/ViewManager.py" line="6460"/>
+        <location filename="../ViewManager/ViewManager.py" line="6500"/>
+        <location filename="../ViewManager/ViewManager.py" line="6457"/>
         <source>&amp;Clear</source>
         <translation>&amp;Löschen</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="6494"/>
+        <source>&amp;Add</source>
+        <translation>&amp;Hinzufügen</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="6497"/>
-        <source>&amp;Add</source>
-        <translation>&amp;Hinzufügen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="6500"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Bearbeiten...</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="7567"/>
+        <location filename="../ViewManager/ViewManager.py" line="7553"/>
+        <location filename="../ViewManager/ViewManager.py" line="7521"/>
+        <source>Edit Spelling Dictionary</source>
+        <translation>Wörterbuch bearbeiten</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="7524"/>
+        <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Die Wörterbuchdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="7540"/>
+        <source>Editing {0}</source>
+        <translation>Bearbeite {0}</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="7556"/>
+        <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Die Wörterbuchdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht geschrieben werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="7570"/>
-        <location filename="../ViewManager/ViewManager.py" line="7556"/>
-        <location filename="../ViewManager/ViewManager.py" line="7524"/>
-        <source>Edit Spelling Dictionary</source>
-        <translation>Wörterbuch bearbeiten</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="7527"/>
-        <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Die Wörterbuchdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="7543"/>
-        <source>Editing {0}</source>
-        <translation>Bearbeite {0}</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="7559"/>
-        <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Die Wörterbuchdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht geschrieben werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="7573"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation>Das Wörterbuch wurde erfolgreich gespeichert.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6682"/>
+        <location filename="../ViewManager/ViewManager.py" line="6679"/>
         <source>Clear Editor</source>
         <translation>Editor löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6683"/>
+        <location filename="../ViewManager/ViewManager.py" line="6680"/>
         <source>Do you really want to delete all text of the current editor?</source>
         <translation>Soll wirklich der gesamte Text des aktuellen Editors gelöscht werden?</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="8103"/>
-        <location filename="../ViewManager/ViewManager.py" line="8086"/>
+        <location filename="../ViewManager/ViewManager.py" line="8100"/>
+        <location filename="../ViewManager/ViewManager.py" line="8083"/>
         <source>File System Watcher Error</source>
         <translation>Fehler bei Dateisystemüberwachung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="8087"/>
+        <location filename="../ViewManager/ViewManager.py" line="8084"/>
         <source>&lt;p&gt;The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should &lt;ul&gt;&lt;li&gt;sudo nano /etc/sysctl.conf&lt;/li&gt;&lt;li&gt;add to the bottom &quot;fs.inotify.max_user_instances = 1024&quot;&lt;/li&gt;&lt;li&gt;save and close the editor&lt;/li&gt;&lt;li&gt;sudo sysctl -p&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Error Message: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Betriebssystemresourcen zur Dateisystemüberwachung sind erschöpft. Diese Grenze sollte erhöht werden. Auf einem Linux System sollte dies ausgeführt werden &lt;ul&gt;&lt;li&gt;sudo nano /etc/sysctl.conf&lt;/li&gt;&lt;li&gt;ergänze am Ende &quot;fs.inotify.max_user_instances = 1024&quot;&lt;/li&gt;&lt;li&gt;speichere und beende den Editor&lt;/li&gt;&lt;li&gt;sudo sysctl -p&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Fehlermeldung: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="8104"/>
+        <location filename="../ViewManager/ViewManager.py" line="8101"/>
         <source>The file system watcher reported an error with code &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error Message: {1}&lt;/p&gt;</source>
         <translation>Die Dateisystemüberwachung meldete einen Fehler mit dem Code &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Fehlermeldung: {1}&lt;/p&gt;</translation>
     </message>
@@ -98734,16 +98754,6 @@
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0"/>
-        <source>Select to delete all web databases</source>
-        <translation>Auswählen, um alle Webdatenbanken zu löschen</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0"/>
-        <source>Web &amp;Databases</source>
-        <translation>Web&amp;datenbanken</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0"/>
         <source>Select to delete all remembered zoom settings</source>
         <translation>Auswählen, um die gespeicherten Zoomeinstellungen zu löschen</translation>
     </message>
@@ -99007,6 +99017,16 @@
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0"/>
+        <source>Select to render all web contents using a dark theme.</source>
+        <translation>Auswählen, um alle Webinhalte mit einem dunklen Thema darzustellen.</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0"/>
+        <source>Force Dark Mode</source>
+        <translation>Dunklen Modus erzwingen</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0"/>
         <source>Startup</source>
         <translation>Start</translation>
     </message>
@@ -99964,355 +99984,355 @@
 <context>
     <name>WebBrowserView</name>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="366"/>
-        <location filename="../WebBrowser/WebBrowserView.py" line="353"/>
-        <location filename="../WebBrowser/WebBrowserView.py" line="341"/>
-        <location filename="../WebBrowser/WebBrowserView.py" line="329"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="367"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="354"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="342"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="330"/>
         <source>eric Web Browser</source>
         <translation>eric Web Browser</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="330"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="331"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert nicht.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="367"/>
-        <location filename="../WebBrowser/WebBrowserView.py" line="342"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="368"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="343"/>
         <source>&lt;p&gt;Could not start a viewer for file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Es konnte kein Betrachter für die Datei &lt;b&gt;{0}&lt;/b&gt; gestartet werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="354"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="355"/>
         <source>&lt;p&gt;Could not start an application for URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Es konnte keine Anwendung für die URL &lt;b&gt;{0}&lt;/b&gt; gestartet werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="608"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="609"/>
         <source>Match {0} of {1}</source>
         <translation>Fundstelle {0} von {1}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="634"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="635"/>
         <source>Inspect Element...</source>
         <translation>Element untersuchen...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="666"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="667"/>
         <source>No suggestions</source>
         <translation>Keine Vorschläge</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="723"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="724"/>
         <source>Open Link in New Tab	Ctrl+LMB</source>
         <translation>Link in neuem Fenster öffnen	Strg+LMK</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="728"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="729"/>
         <source>Open Link in New Window</source>
         <translation>Link in neuem Fenster öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="734"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="735"/>
         <source>Open Link in New Private Window</source>
         <translation>Link in neuem privaten Fenster öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="741"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="742"/>
         <source>Save Lin&amp;k</source>
         <translation>Lin&amp;k speichern</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="745"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="746"/>
         <source>Bookmark this Link</source>
         <translation>Lesezeichen für diesen Link hinzufügen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="751"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="752"/>
         <source>Copy URL to Clipboard</source>
         <translation>URL in die Zwischenablage kopieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="755"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="756"/>
         <source>Send URL</source>
         <translation>URL senden</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="764"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="765"/>
         <source>Scan Link with VirusTotal</source>
         <translation>Link mit VirusTotal überprüfen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="782"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="783"/>
         <source>Open Image in New Tab</source>
         <translation>Bild in neuem Register öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="789"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="790"/>
         <source>Save Image</source>
         <translation>Bild speichern</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="792"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="793"/>
         <source>Copy Image to Clipboard</source>
         <translation>Bild in die Zwischenablage kopieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="794"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="795"/>
         <source>Copy Image URL to Clipboard</source>
         <translation>Bild-URL in die Zwischenablage kopieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="799"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="800"/>
         <source>Send Image URL</source>
         <translation>Bild-URL senden</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="818"/>
-        <location filename="../WebBrowser/WebBrowserView.py" line="810"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="819"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="811"/>
         <source>Search image in {0}</source>
         <translation>Bild mit {0} suchen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="814"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="815"/>
         <source>Search image with...</source>
         <translation>Bild suchen mit ...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="825"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="826"/>
         <source>Block Image</source>
         <translation>Bild blockieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="835"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="836"/>
         <source>Scan Image with VirusTotal</source>
         <translation>Bild mit VirusTotal überprüfen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="855"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="856"/>
         <source>Play</source>
         <translation>Abspielen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="861"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="862"/>
         <source>Pause</source>
         <translation>Pause</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="867"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="868"/>
         <source>Unmute</source>
         <translation>Ton ein</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="873"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="874"/>
         <source>Mute</source>
         <translation>Stumm</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="878"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="879"/>
         <source>Copy Media URL to Clipboard</source>
         <translation>Medien-URL in die Zwischenablage kopieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="883"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="884"/>
         <source>Send Media URL</source>
         <translation>Medien-URL senden</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="889"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="890"/>
         <source>Save Media</source>
         <translation>Medium speichern</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="910"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="911"/>
         <source>Send Text</source>
         <translation>Text verschicken</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="917"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="918"/>
         <source>Search with &apos;{0}&apos;</source>
         <translation>Mit &apos;{0}&apos; suchen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="921"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="922"/>
         <source>Search with...</source>
         <translation>Suchen mit...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1078"/>
-        <location filename="../WebBrowser/WebBrowserView.py" line="947"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1079"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="948"/>
         <source>Google Translate</source>
         <translation>Google Übersetzer</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="957"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="958"/>
         <source>Dictionary</source>
         <translation>Wörterbuch</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="965"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="966"/>
         <source>Go to web address</source>
         <translation>Zur Web-Adresse springen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="994"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="995"/>
         <source>Add New Page</source>
         <translation>Neue Seite hinzufügen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="999"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1000"/>
         <source>Configure Speed Dial</source>
         <translation>Schnellwahleinstellungen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1006"/>
         <source>Reload All Dials</source>
         <translation>Alle Schnellwahlen neu laden</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1009"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1010"/>
         <source>Reset to Default Dials</source>
         <translation>Alle Schnellwahlen zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1014"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1015"/>
         <source>Bookmark this Page</source>
         <translation>Lesezeichen für diese Seite hinzufügen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1018"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1019"/>
         <source>Copy Page URL to Clipboard</source>
         <translation>Seiten-URL in die Zwischenablage kopieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1023"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1024"/>
         <source>Send Page URL</source>
         <translation>URL der Seite verschicken</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1029"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1030"/>
         <source>User Agent</source>
         <translation>User Agent</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1057"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1058"/>
         <source>Validate Page</source>
         <translation>Seite validieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1120"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1121"/>
         <source>Add to web search toolbar</source>
         <translation>Zur Websuchleiste hinzufügen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1804"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1805"/>
         <source>Empty Page</source>
         <translation>Leere Seite</translation>
     </message>
     <message>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1869"/>
         <location filename="../WebBrowser/WebBrowserView.py" line="1868"/>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1867"/>
         <source>Render Process terminated abnormally</source>
         <translation>Renderprozess wurde unnormal terminiert</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1873"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1874"/>
         <source>The render process crashed while loading this page.</source>
         <translation>Der Renderprozess ist beim Laden der Seite abgestürzt.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1878"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1879"/>
         <source>The render process was killed.</source>
         <translation>Der Renderprozess wurde abgeschossen.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1880"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1881"/>
         <source>The render process terminated while loading this page.</source>
         <translation>Der Renderprozess terminierte beim Laden der Seite.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1884"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1885"/>
         <source>Try reloading the page or closing some tabs to make more memory available.</source>
         <translation>Versuche die Seite neu zu laden oder schließe einige Register, um Speicher freizumachen.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2012"/>
-        <source>Web Archive (*.mhtml *.mht)</source>
-        <translation>Web Archiv (*.mhtml *.mht)</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserView.py" line="2013"/>
-        <source>HTML File (*.html *.htm)</source>
-        <translation>HTML Datei (*.html *.htm)</translation>
+        <source>Web Archive (*.mhtml *.mht)</source>
+        <translation>Web Archiv (*.mhtml *.mht)</translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserView.py" line="2014"/>
+        <source>HTML File (*.html *.htm)</source>
+        <translation>HTML Datei (*.html *.htm)</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2015"/>
         <source>HTML File with all resources (*.html *.htm)</source>
         <translation>HTML Datei mit allen Resourcen (*.html *.htm)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2036"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2037"/>
         <source>Save Web Page</source>
         <translation>Web Seite speichern</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2428"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2429"/>
         <source>eric7 {0} ({1})</source>
         <translation>eric7 {0} ({1})</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2439"/>
-        <source>Print Page</source>
-        <translation>Seite drucken</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserView.py" line="2440"/>
+        <source>Print Page</source>
+        <translation>Seite drucken</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2441"/>
         <source>There is already a print job in progress. Printing is temporarily disabled until the current job is finished.</source>
         <translation>Es wird bereits ein Druckauftrag ausgeführt. Drucken ist temporär deaktiviert bis dieser Auftrag beendet ist.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2555"/>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2485"/>
-        <source>Print to PDF</source>
-        <translation>Als PDF drucken</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2486"/>
-        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Soll sie überschrieben werden?&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserView.py" line="2556"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2486"/>
+        <source>Print to PDF</source>
+        <translation>Als PDF drucken</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2487"/>
+        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Soll sie überschrieben werden?&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2557"/>
         <source>&lt;p&gt;The PDF file &lt;b&gt;{0}&lt;/b&gt; could not be generated.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die PDF Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht erzeugt werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2590"/>
-        <source>Quota Request</source>
-        <translation>Speicherplatzanfrage</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserView.py" line="2591"/>
+        <source>Quota Request</source>
+        <translation>Speicherplatzanfrage</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2592"/>
         <source>&lt;p&gt; Allow the website at &lt;b&gt;{0}&lt;/b&gt; to use &lt;b&gt;{1}&lt;/b&gt; of persistent storage?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Website &lt;b&gt;{0}&lt;/b&gt; gestatten, &lt;b&gt;{1}&lt;/b&gt; permanenten Speicherplatz zu verwenden?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2634"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2635"/>
         <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Read&lt;/b&gt; access to &apos;{1}&apos;?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Website &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Lese&lt;/b&gt;zugriff auf &apos;{1}&apos; gestatten?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2642"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2643"/>
         <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Write&lt;/b&gt; access to &apos;{1}&apos;?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Website &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Schreib&lt;/b&gt;zugriff auf &apos;{1}&apos; gestatten?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2647"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2648"/>
         <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Read and Write&lt;/b&gt; access to &apos;{1}&apos;?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Website &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Lese- und Schreib&lt;/b&gt;zugriff auf &apos;{1}&apos; gestatten?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2654"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2655"/>
         <source>File System Access Request</source>
         <translation>Dateisystemzugriffsanfrage</translation>
     </message>
@@ -100426,10 +100446,10 @@
         <translation>eric Web Browser (Privater Modus)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4099"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3007"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2991"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2976"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4105"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3013"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2997"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2982"/>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="207"/>
         <source>eric Web Browser</source>
         <translation>eric Web Browser</translation>
@@ -100440,2076 +100460,2076 @@
         <translation>Inhalt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1758"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1758"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1764"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1764"/>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="306"/>
         <source>Index</source>
         <translation>Index</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1769"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1768"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1775"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1774"/>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="318"/>
         <source>Search</source>
         <translation>Suchen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2115"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2114"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2121"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2120"/>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="325"/>
         <source>JavaScript Console</source>
         <translation>JavaScript-Konsole</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="743"/>
         <source>New Tab</source>
         <translation>Neues Register</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="739"/>
-        <source>&amp;New Tab</source>
-        <translation>&amp;Neues Register</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="740"/>
-        <source>Ctrl+T</source>
-        <comment>File|New Tab</comment>
-        <translation>Ctrl+T</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="745"/>
+        <source>&amp;New Tab</source>
+        <translation>&amp;Neues Register</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="746"/>
+        <source>Ctrl+T</source>
+        <comment>File|New Tab</comment>
+        <translation>Ctrl+T</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="751"/>
         <source>Open a new web browser tab</source>
         <translation>Öffne ein neues Web Browser Register</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="747"/>
-        <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Neues Register&lt;/b&gt;&lt;p&gt;Dies öffnet ein neues Web Browser Register.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="753"/>
+        <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Neues Register&lt;/b&gt;&lt;p&gt;Dies öffnet ein neues Web Browser Register.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="759"/>
         <source>New Window</source>
         <translation>Neues Fenster</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="755"/>
-        <source>New &amp;Window</source>
-        <translation>Neues &amp;Fenster</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="756"/>
-        <source>Ctrl+N</source>
-        <comment>File|New Window</comment>
-        <translation>Ctrl+N</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="761"/>
+        <source>New &amp;Window</source>
+        <translation>Neues &amp;Fenster</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="762"/>
+        <source>Ctrl+N</source>
+        <comment>File|New Window</comment>
+        <translation>Ctrl+N</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="767"/>
         <source>Open a new web browser window</source>
         <translation>Öffne ein neues Web Browser Fenster</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="763"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="769"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new web browser window in the current privacy mode.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neues Fenster&lt;/b&gt;&lt;p&gt;Dies öffnet ein neues Web Browser Fenster im aktuellen Privatsphärenmodus.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2889"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="773"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2895"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="779"/>
         <source>New Private Window</source>
         <translation>Neues Privates Fenster</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="775"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="781"/>
         <source>New &amp;Private Window</source>
         <translation>Neues &amp;Privates Fenster</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="776"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="782"/>
         <source>Ctrl+Shift+P</source>
         <comment>File|New Private Window</comment>
         <translation>Ctrl+Shift+P</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="782"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="788"/>
         <source>Open a new private web browser window</source>
         <translation>Öffnet ein neues privates Web Browser Fenster</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="785"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="791"/>
         <source>&lt;b&gt;New Private Window&lt;/b&gt;&lt;p&gt;This opens a new private web browser window by starting a new web browser instance in private mode.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neues Privates Fenster&lt;/b&gt;&lt;p&gt;Dies startet ein neues privates Web Browser Fenster durch Starten einer neuen Web Browser Instanz im Privatmodus.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2927"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2904"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="795"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2933"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2910"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="801"/>
         <source>Open File</source>
         <translation>Datei öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="797"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="803"/>
         <source>&amp;Open File</source>
         <translation>Datei &amp;öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="798"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="804"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="803"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="809"/>
         <source>Open a file for display</source>
         <translation>Öffnet eine Datei zur Anzeige</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="805"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="811"/>
         <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new file for display. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Datei öffnen&lt;/b&gt;&lt;p&gt;Dies öffnet eine neue Datei zur Anzeige. Es wird zunächst ein Dateiauswahldialog angezeigt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="815"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="821"/>
         <source>Open File in New Tab</source>
         <translation>Datei in neuem Register öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="817"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="823"/>
         <source>Open File in New &amp;Tab</source>
         <translation>Datei in neuem &amp;Register öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="818"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="824"/>
         <source>Shift+Ctrl+O</source>
         <comment>File|Open in new tab</comment>
         <translation>Shift+Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="823"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="829"/>
         <source>Open a file for display in a new tab</source>
         <translation>Öffnet eine Datei zur Anzeige in einem neuen Register</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="825"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="831"/>
         <source>&lt;b&gt;Open File in New Tab&lt;/b&gt;&lt;p&gt;This opens a new file for display in a new tab. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Datei in neuem Register öffnen&lt;/b&gt;&lt;p&gt;Dies öffnet eine Datei zur Anzeige in einem neuen Register. Es wird zunächst ein Dateiauswahldialog angezeigt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="836"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="842"/>
         <source>Save As</source>
         <translation>Speichern unter</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="838"/>
-        <source>&amp;Save As...</source>
-        <translation>&amp;Speichern unter...</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="839"/>
-        <source>Shift+Ctrl+S</source>
-        <comment>File|Save As</comment>
-        <translation>Shift+Ctrl+S</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="844"/>
+        <source>&amp;Save As...</source>
+        <translation>&amp;Speichern unter...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="845"/>
+        <source>Shift+Ctrl+S</source>
+        <comment>File|Save As</comment>
+        <translation>Shift+Ctrl+S</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="850"/>
         <source>Save the current page to disk</source>
         <translation>Speichert die aktuelle Seite</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="846"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="852"/>
         <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current page to disk.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Speichern unter&lt;/b&gt;&lt;p&gt;Dies speichert die aktuelle Seite in eine Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="854"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="860"/>
         <source>Save Page Screen</source>
         <translation>Bildschirmfoto speichern</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="856"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="862"/>
         <source>Save Page Screen...</source>
         <translation>Bildschirmfoto speichern...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="869"/>
         <source>Save the visible part of the current page as a screen shot</source>
         <translation>Speichert den sichtbaren Bereich der aktuellen Seite als Bildschirmfoto</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="866"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="872"/>
         <source>&lt;b&gt;Save Page Screen...&lt;/b&gt;&lt;p&gt;Saves the visible part of the current page as a screen shot.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Bildschirmphoto speichern...&lt;/b&gt;&lt;p&gt;Dies speichert den sichtbaren Bereich der aktuellen Seite als Bildschirmphoto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="877"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="883"/>
         <source>Import Bookmarks</source>
         <translation>Lesezeichen importieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="878"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="884"/>
         <source>&amp;Import Bookmarks...</source>
         <translation>Lesezeichen &amp;importieren...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="885"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="891"/>
         <source>Import bookmarks from other browsers</source>
         <translation>Importiere Lesezeichen von anderen Browsern</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="888"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="894"/>
         <source>&lt;b&gt;Import Bookmarks&lt;/b&gt;&lt;p&gt;Import bookmarks from other browsers.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Lesezeichen importieren&lt;/b&gt;&lt;p&gt;Importiere Lesezeichen von anderen Browsern.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="897"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="903"/>
         <source>Export Bookmarks</source>
         <translation>Lesezeichen exportieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="898"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="904"/>
         <source>&amp;Export Bookmarks...</source>
         <translation>Lesezeichen &amp;exportieren...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="911"/>
         <source>Export the bookmarks into a file</source>
         <translation>Exportiert die Lesezeichen in eine Datei</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="908"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="914"/>
         <source>&lt;b&gt;Export Bookmarks&lt;/b&gt;&lt;p&gt;Export the bookmarks into a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Lesezeichen exportieren&lt;/b&gt;&lt;p&gt;Exportiert die Lesezeichen in eine Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2537"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="917"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2543"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="923"/>
         <source>Print</source>
         <translation>Drucken</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="919"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="925"/>
         <source>&amp;Print</source>
         <translation>&amp;Drucken</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="926"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation>Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="925"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
         <source>Print the displayed help</source>
         <translation>Druckt die angezeigte Hilfe</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="927"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="933"/>
         <source>&lt;b&gt;Print&lt;/b&gt;&lt;p&gt;Print the displayed help text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Drucken&lt;/b&gt;&lt;p&gt;Druckt den angezeigten Hilfetext.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="935"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="933"/>
-        <source>Print as PDF</source>
-        <translation>Als PDF drucken</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="941"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="939"/>
+        <source>Print as PDF</source>
+        <translation>Als PDF drucken</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="947"/>
         <source>Print the displayed help as PDF</source>
         <translation>Druckt die angezeigte Hilfe als PDF</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="943"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="949"/>
         <source>&lt;b&gt;Print as PDF&lt;/b&gt;&lt;p&gt;Print the displayed help text as a PDF file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Als PDF drucken&lt;/b&gt;&lt;p&gt;Druckt den angezeigten Hilfetext als PDF-Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="954"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="952"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="960"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="958"/>
         <source>Print Preview</source>
         <translation>Druckvorschau</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="961"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Print preview of the displayed help</source>
         <translation>Druckvorschau der angezeigten Hilfe</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="964"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="970"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the displayed help text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Druckvorschau&lt;/b&gt;&lt;p&gt;Zeigt eine Druckvorschau des angezeigten Hilfetextes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="975"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="973"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="981"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="979"/>
         <source>Send Page Link</source>
         <translation>Link der Seite verschicken</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="988"/>
         <source>Send the link of the current page via email</source>
         <translation>Versende den Link der aktuellen Seite per Email</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="985"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
         <source>&lt;b&gt;Send Page Link&lt;/b&gt;&lt;p&gt;Send the link of the current page via email.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Link der Seite verschicken&lt;/b&gt;&lt;p&gt;Versende den Link der aktuellen Seite per Email.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="994"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1000"/>
         <source>Close</source>
         <translation>Schließen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1002"/>
         <source>&amp;Close</source>
         <translation>Schl&amp;ießen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="997"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1003"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1002"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1008"/>
         <source>Close the current help window</source>
         <translation>Schließt das aktuelle Fenster</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1004"/>
-        <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Schließen&lt;/b&gt;&lt;p&gt;Schließt das aktuelle Web Browser Fenster.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
+        <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Schließen&lt;/b&gt;&lt;p&gt;Schließt das aktuelle Web Browser Fenster.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1016"/>
         <source>Close All</source>
         <translation>Alle schließen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1011"/>
-        <source>Close &amp;All</source>
-        <translation>Alle &amp;schließen</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1017"/>
+        <source>Close &amp;All</source>
+        <translation>Alle &amp;schließen</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1023"/>
         <source>Close all help windows</source>
         <translation>Schließt alle Fenster</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1025"/>
         <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all web browser windows except the first one.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alle schließen&lt;/b&gt;&lt;p&gt;Schließt alle Web Browser Fenster mit Ausnahme des ersten.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1028"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1034"/>
         <source>Quit</source>
         <translation>Beenden</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3319"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1030"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3325"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1036"/>
         <source>&amp;Quit</source>
         <translation>B&amp;eenden</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1031"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1037"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1036"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1042"/>
         <source>Quit the eric Web Browser</source>
         <translation>Beendet den eric Web Browser</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
-        <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Beenden&lt;/b&gt;&lt;p&gt;Beendet den eric Web Browser.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1044"/>
+        <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Beenden&lt;/b&gt;&lt;p&gt;Beendet den eric Web Browser.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1050"/>
         <source>Backward</source>
         <translation>Zurück</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1046"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>&amp;Backward</source>
         <translation>&amp;Zurück</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1053"/>
         <source>Alt+Left</source>
         <comment>Go|Backward</comment>
         <translation>Alt+Left</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1058"/>
         <source>Move one screen backward</source>
         <translation>Eine Seite zurück</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1054"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1060"/>
         <source>&lt;b&gt;Backward&lt;/b&gt;&lt;p&gt;Moves one screen backward. If none is available, this action is disabled.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zurück&lt;/b&gt;&lt;p&gt;Bewegt die Anzeige rückwärts. Falls keine Anzeige möglich ist, ist diese Aktion inaktiv.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1064"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1070"/>
         <source>Forward</source>
         <translation>Vorwärts</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1066"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1072"/>
         <source>&amp;Forward</source>
         <translation>&amp;Vorwärts</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1067"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1073"/>
         <source>Alt+Right</source>
         <comment>Go|Forward</comment>
         <translation>Alt+Right</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1072"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1078"/>
         <source>Move one screen forward</source>
         <translation>Eine Seite vorwärts</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1080"/>
         <source>&lt;b&gt;Forward&lt;/b&gt;&lt;p&gt;Moves one screen forward. If none is available, this action is disabled.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zurück&lt;/b&gt;&lt;p&gt;Bewegt die Anzeige vorwärts. Falls keine Anzeige möglich ist, ist diese Aktion inaktiv.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1084"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1090"/>
         <source>Home</source>
         <translation>Home</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1086"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1092"/>
         <source>&amp;Home</source>
         <translation>&amp;Anfang</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1087"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>Ctrl+Home</source>
         <comment>Go|Home</comment>
         <translation>Ctrl+Home</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1092"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1098"/>
         <source>Move to the initial screen</source>
         <translation>Zur Startseite wechseln</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1094"/>
-        <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Anfang&lt;/b&gt;&lt;p&gt;Zeigt die Startseite an.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1100"/>
+        <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Anfang&lt;/b&gt;&lt;p&gt;Zeigt die Startseite an.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1106"/>
         <source>Reload</source>
         <translation>Erneut laden</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1102"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>&amp;Reload</source>
         <translation>E&amp;rneut laden</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1109"/>
         <source>Ctrl+R</source>
         <comment>Go|Reload</comment>
         <translation>Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1104"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1110"/>
         <source>F5</source>
         <comment>Go|Reload</comment>
         <translation>F5</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1114"/>
         <source>Reload the current screen</source>
         <translation>Die aktuelle Seite erneut laden</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1110"/>
-        <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Erneut laden&lt;/b&gt;&lt;p&gt;Lädt die aktuelle Seite erneut.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1116"/>
+        <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Erneut laden&lt;/b&gt;&lt;p&gt;Lädt die aktuelle Seite erneut.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1122"/>
         <source>Stop</source>
         <translation>Anhalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1118"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1124"/>
         <source>&amp;Stop</source>
         <translation>An&amp;halten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1119"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
         <source>Ctrl+.</source>
         <comment>Go|Stop</comment>
         <translation>Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1126"/>
         <source>Esc</source>
         <comment>Go|Stop</comment>
         <translation>Esc</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1124"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1130"/>
         <source>Stop loading</source>
         <translation>Laden anhalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1126"/>
-        <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Anhalten&lt;/b&gt;&lt;p&gt;Hält das Laden der aktuellen Seite an.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1132"/>
+        <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Anhalten&lt;/b&gt;&lt;p&gt;Hält das Laden der aktuellen Seite an.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1138"/>
         <source>Copy</source>
         <translation>Kopieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1134"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>&amp;Copy</source>
         <translation>&amp;Kopieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1141"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1146"/>
         <source>Copy the selected text</source>
         <translation>Kopiert den ausgewählten Text</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1142"/>
-        <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="../WebBrowser/WebBrowserWindow.py" line="1148"/>
+        <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="../WebBrowser/WebBrowserWindow.py" line="1154"/>
         <source>Cut</source>
         <translation>Ausschneiden</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1150"/>
-        <source>Cu&amp;t</source>
-        <translation>&amp;Ausschneiden</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1151"/>
-        <source>Ctrl+X</source>
-        <comment>Edit|Cut</comment>
-        <translation>Ctrl+X</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1156"/>
+        <source>Cu&amp;t</source>
+        <translation>&amp;Ausschneiden</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1157"/>
+        <source>Ctrl+X</source>
+        <comment>Edit|Cut</comment>
+        <translation>Ctrl+X</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1162"/>
         <source>Cut the selected text</source>
         <translation>Schneidet die Auswahl aus</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1158"/>
-        <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="../WebBrowser/WebBrowserWindow.py" line="1164"/>
+        <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="../WebBrowser/WebBrowserWindow.py" line="1170"/>
         <source>Paste</source>
         <translation>Einfügen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1166"/>
-        <source>&amp;Paste</source>
-        <translation>Ein&amp;fügen</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1167"/>
-        <source>Ctrl+V</source>
-        <comment>Edit|Paste</comment>
-        <translation>Ctrl+V</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1172"/>
+        <source>&amp;Paste</source>
+        <translation>Ein&amp;fügen</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1173"/>
+        <source>Ctrl+V</source>
+        <comment>Edit|Paste</comment>
+        <translation>Ctrl+V</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1178"/>
         <source>Paste text from the clipboard</source>
         <translation>Fügt den Text der Zwischenablage ein</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1174"/>
-        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some 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="../WebBrowser/WebBrowserWindow.py" line="1180"/>
+        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some 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="../WebBrowser/WebBrowserWindow.py" line="1186"/>
         <source>Undo</source>
         <translation>Rückgängig</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1182"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1188"/>
         <source>&amp;Undo</source>
         <translation>&amp;Rückgängig</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1183"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1189"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1188"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1194"/>
         <source>Undo the last edit action</source>
         <translation>Die letzte Bearbeitung rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1190"/>
-        <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Rückgängig&lt;/b&gt;&lt;p&gt;Die letzte Bearbeitung rückgängig machen.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1196"/>
+        <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Rückgängig&lt;/b&gt;&lt;p&gt;Die letzte Bearbeitung rückgängig machen.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1202"/>
         <source>Redo</source>
         <translation>Wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1198"/>
-        <source>&amp;Redo</source>
-        <translation>Wieder&amp;herstellen</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1199"/>
-        <source>Ctrl+Shift+Z</source>
-        <comment>Edit|Redo</comment>
-        <translation>Ctrl+Shift+Z</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1204"/>
+        <source>&amp;Redo</source>
+        <translation>Wieder&amp;herstellen</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1205"/>
+        <source>Ctrl+Shift+Z</source>
+        <comment>Edit|Redo</comment>
+        <translation>Ctrl+Shift+Z</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1210"/>
         <source>Redo the last edit action</source>
         <translation>Die letzte Bearbeitung wieder herstellen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1206"/>
-        <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Wiederherstellen&lt;/b&gt;&lt;p&gt;Die letzte Bearbeitung wieder herstellen.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1212"/>
+        <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Wiederherstellen&lt;/b&gt;&lt;p&gt;Die letzte Bearbeitung wieder herstellen.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1218"/>
         <source>Select All</source>
         <translation>Alles auswählen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1214"/>
-        <source>&amp;Select All</source>
-        <translation>&amp;Alles auswählen</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1215"/>
-        <source>Ctrl+A</source>
-        <comment>Edit|Select All</comment>
-        <translation>Ctrl+A</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1220"/>
+        <source>&amp;Select All</source>
+        <translation>&amp;Alles auswählen</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1221"/>
+        <source>Ctrl+A</source>
+        <comment>Edit|Select All</comment>
+        <translation>Ctrl+A</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1226"/>
         <source>Select all text</source>
         <translation>Gesamten Text auswählen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1222"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current browser.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alles auswählen&lt;/b&gt;&lt;p&gt;Dies wählt den gesamten Text des aktuellen Browsers aus.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1232"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1231"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1238"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1237"/>
         <source>Unselect</source>
         <translation>Abwählen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1233"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Unselect</comment>
         <translation>Alt+Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1238"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Clear current selection</source>
         <translation>Löscht die aktuelle Auswahl</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1240"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1246"/>
         <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Abwählen&lt;/b&gt;&lt;p&gt;Löscht die Auswahl des aktuellen Browsers.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1249"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
         <source>Find...</source>
         <translation>Suchen...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1251"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1257"/>
         <source>&amp;Find...</source>
         <translation>&amp;Suchen...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1252"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1258"/>
         <source>Ctrl+F</source>
         <comment>Edit|Find</comment>
         <translation>Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1257"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1263"/>
         <source>Find text in page</source>
         <translation>Text in Seite suchen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1259"/>
-        <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Suchen&lt;/b&gt;&lt;p&gt;Text in der angezeigten Seite suchen.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1265"/>
+        <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Suchen&lt;/b&gt;&lt;p&gt;Text in der angezeigten Seite suchen.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1271"/>
         <source>Find next</source>
         <translation>Weitersuchen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1267"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1273"/>
         <source>Find &amp;next</source>
         <translation>&amp;Weitersuchen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1268"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1274"/>
         <source>F3</source>
         <comment>Edit|Find next</comment>
         <translation>F3</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1273"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1279"/>
         <source>Find next occurrence of text in page</source>
         <translation>Das nächste Vorkommen des Textes in der Seite suchen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1275"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1281"/>
         <source>&lt;b&gt;Find next&lt;/b&gt;&lt;p&gt;Find the next occurrence of text in the current page.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Weitersuchen&lt;/b&gt;&lt;p&gt;Suche das nächste Vorkommen des Textes in der aktuellen Seite.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1284"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1290"/>
         <source>Find previous</source>
         <translation>Rückwärtssuchen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1286"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1292"/>
         <source>Find &amp;previous</source>
         <translation>&amp;Rückwärtssuchen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1287"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1293"/>
         <source>Shift+F3</source>
         <comment>Edit|Find previous</comment>
         <translation>Shift+F3</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1293"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1299"/>
         <source>Find previous occurrence of text in page</source>
         <translation>Das vorherige Vorkommen des Textes in der Seite suchen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1296"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1302"/>
         <source>&lt;b&gt;Find previous&lt;/b&gt;&lt;p&gt;Find the previous occurrence of text in the current page.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rückwärtssuchen&lt;/b&gt;&lt;p&gt;Suche das vorherige Vorkommen des Textes in der aktuellen Seite.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1306"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1312"/>
         <source>Manage Bookmarks</source>
         <translation>Lesezeichen verwalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1307"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1313"/>
         <source>&amp;Manage Bookmarks...</source>
         <translation>Lesezeichen &amp;verwalten...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1308"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1314"/>
         <source>Ctrl+Shift+B</source>
         <comment>Help|Manage bookmarks</comment>
         <translation>Ctrl+Shift+B</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1314"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1320"/>
         <source>Open a dialog to manage the bookmarks.</source>
         <translation>Öffnet einen Dialog zur Verwaltung der Lesezeichen.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1317"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1323"/>
         <source>&lt;b&gt;Manage Bookmarks...&lt;/b&gt;&lt;p&gt;Open a dialog to manage the bookmarks.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Lesezeichen verwalten...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zur Verwaltung der Lesezeichen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1326"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1332"/>
         <source>Add Bookmark</source>
         <translation>Lesezeichen hinzufügen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1328"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1334"/>
         <source>Add &amp;Bookmark...</source>
         <translation>&amp;Lesezeichen hinzufügen…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1329"/>
-        <source>Ctrl+D</source>
-        <comment>Help|Add bookmark</comment>
-        <translation>Ctrl+D</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1335"/>
+        <source>Ctrl+D</source>
+        <comment>Help|Add bookmark</comment>
+        <translation>Ctrl+D</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1341"/>
         <source>Open a dialog to add a bookmark.</source>
         <translation>Öffnet einen Dialog zum Hinzufügen von Lesezeichen.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1337"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1343"/>
         <source>&lt;b&gt;Add Bookmark&lt;/b&gt;&lt;p&gt;Open a dialog to add the current URL as a bookmark.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Lesezeichen hinzufügen...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zum Hinzufügen von Lesezeichen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1346"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1352"/>
         <source>Add Folder</source>
         <translation>Ordner hinzufügen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1347"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1353"/>
         <source>Add &amp;Folder...</source>
         <translation>&amp;Ordner hinzufügen...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1354"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1360"/>
         <source>Open a dialog to add a new bookmarks folder.</source>
         <translation>Öffnet einen Dialog zum Hinzufügen eines Lesezeichenordners.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1357"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1363"/>
         <source>&lt;b&gt;Add Folder...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ordner hinzufügen...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zum Hinzufügen eines Lesezeichenordners.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1366"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1372"/>
         <source>Bookmark All Tabs</source>
         <translation>Lesezeichen für alle Tabs</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1367"/>
-        <source>Bookmark All Tabs...</source>
-        <translation>Lesezeichen für alle Tabs...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1373"/>
+        <source>Bookmark All Tabs...</source>
+        <translation>Lesezeichen für alle Tabs...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1379"/>
         <source>Bookmark all open tabs.</source>
         <translation>Fügt Lesezeichen für alle offenen Tabs hinzu.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1375"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1381"/>
         <source>&lt;b&gt;Bookmark All Tabs...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder for all open tabs.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Lesezeichen für alle Tabs...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog, um einen neuen Lesezeichenordner für alle offenen Tabs hinzuzufügen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1385"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1391"/>
         <source>What&apos;s This?</source>
         <translation>Was ist das?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1387"/>
-        <source>&amp;What&apos;s This?</source>
-        <translation>&amp;Was ist das?</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1388"/>
-        <source>Shift+F1</source>
-        <comment>Help|What&apos;s This?&apos;</comment>
-        <translation>Shift+F1</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1393"/>
+        <source>&amp;What&apos;s This?</source>
+        <translation>&amp;Was ist das?</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1394"/>
+        <source>Shift+F1</source>
+        <comment>Help|What&apos;s This?&apos;</comment>
+        <translation>Shift+F1</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1399"/>
         <source>Context sensitive help</source>
         <translation>Kontextsensitive Hilfe</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1395"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1401"/>
         <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="../WebBrowser/WebBrowserWindow.py" line="1408"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1414"/>
         <source>About</source>
         <translation>Über</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1408"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1414"/>
         <source>&amp;About</source>
         <translation>Ü&amp;ber</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1410"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1416"/>
         <source>Display information about this software</source>
         <translation>Zeigt Informationen zu diesem Programm an</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1412"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1418"/>
         <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="../WebBrowser/WebBrowserWindow.py" line="1421"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1427"/>
         <source>About Qt</source>
         <translation>Über Qt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1422"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1428"/>
         <source>About &amp;Qt</source>
         <translation>Über &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1429"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1435"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Zeige Informationen über das Qt-Toolkit an</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1432"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1438"/>
         <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="../WebBrowser/WebBrowserWindow.py" line="1441"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1447"/>
         <source>Zoom in</source>
         <translation>Vergrößern</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1443"/>
-        <source>Zoom &amp;in</source>
-        <translation>Ver&amp;größern</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1444"/>
-        <source>Ctrl++</source>
-        <comment>View|Zoom in</comment>
-        <translation>Ctrl++</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1445"/>
-        <source>Zoom In</source>
-        <comment>View|Zoom in</comment>
-        <translation>Vergrößern</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1449"/>
-        <source>Zoom in on the web page</source>
-        <translation>Die angezeigte Seite vergrößern</translation>
+        <source>Zoom &amp;in</source>
+        <translation>Ver&amp;größern</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1450"/>
+        <source>Ctrl++</source>
+        <comment>View|Zoom in</comment>
+        <translation>Ctrl++</translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1451"/>
+        <source>Zoom In</source>
+        <comment>View|Zoom in</comment>
+        <translation>Vergrößern</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1455"/>
+        <source>Zoom in on the web page</source>
+        <translation>Die angezeigte Seite vergrößern</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1457"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the web page. This makes the web page bigger.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vergrößern&lt;/b&gt;&lt;p&gt;Die angezeigte Web-Seite vergrößert darstellen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1461"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1467"/>
         <source>Zoom out</source>
         <translation>Verkleinern</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1463"/>
-        <source>Zoom &amp;out</source>
-        <translation>Ver&amp;kleinern</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1464"/>
-        <source>Ctrl+-</source>
-        <comment>View|Zoom out</comment>
-        <translation>Ctrl+-</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1465"/>
-        <source>Zoom Out</source>
-        <comment>View|Zoom out</comment>
-        <translation>Verkleinern</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1469"/>
-        <source>Zoom out on the web page</source>
-        <translation>Die angezeigte Seite verkleinern</translation>
+        <source>Zoom &amp;out</source>
+        <translation>Ver&amp;kleinern</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1470"/>
+        <source>Ctrl+-</source>
+        <comment>View|Zoom out</comment>
+        <translation>Ctrl+-</translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1471"/>
+        <source>Zoom Out</source>
+        <comment>View|Zoom out</comment>
+        <translation>Verkleinern</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1475"/>
+        <source>Zoom out on the web page</source>
+        <translation>Die angezeigte Seite verkleinern</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1477"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the web page. This makes the web page smaller.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Verkleinern&lt;/b&gt;&lt;p&gt;Die angezeigte Web-Seite verkleinert darstellen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1481"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1487"/>
         <source>Zoom reset</source>
         <translation>Vergrößerung zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1483"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1489"/>
         <source>Zoom &amp;reset</source>
         <translation>Vergrößerung &amp;zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1484"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1490"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1489"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1495"/>
         <source>Reset the zoom of the web page</source>
         <translation>Die Anzeigegröße zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1491"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1497"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the web page. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vergrößerung zurücksetzen&lt;/b&gt;&lt;p&gt;Setzt die Vergrößerung auf den Wert 100% zurück.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1502"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1501"/>
-        <source>Show page source</source>
-        <translation>Seitenquelltext anzeigen</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1503"/>
-        <source>Ctrl+U</source>
-        <translation>Ctrl+U</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1508"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1507"/>
+        <source>Show page source</source>
+        <translation>Seitenquelltext anzeigen</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1509"/>
+        <source>Ctrl+U</source>
+        <translation>Ctrl+U</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1514"/>
         <source>Show the page source in an editor</source>
         <translation>Zeige den Seitenquelltext in einem Editor</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1510"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1516"/>
         <source>&lt;b&gt;Show page source&lt;/b&gt;&lt;p&gt;Show the page source in an editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Seitenquelltext anzeigen&lt;/b&gt;&lt;p&gt;Zeige den Seitenquelltext in einem Editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1520"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1526"/>
         <source>Full Screen</source>
         <translation>Vollbild</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1522"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1528"/>
         <source>&amp;Full Screen</source>
         <translation>&amp;Vollbild</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1529"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1535"/>
         <source>Meta+Ctrl+F</source>
         <translation>Meta+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1531"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1537"/>
         <source>F11</source>
         <translation>F11</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1538"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1537"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1544"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1543"/>
         <source>Show next tab</source>
         <translation>Zeige nächstes Register</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1539"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1545"/>
         <source>Ctrl+Alt+Tab</source>
         <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1550"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1549"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1556"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1555"/>
         <source>Show previous tab</source>
         <translation>Zeige vorheriges Register</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1551"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1557"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1562"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1561"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1568"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1567"/>
         <source>Switch between tabs</source>
         <translation>Zwischen Registern umschalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1563"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1569"/>
         <source>Ctrl+1</source>
         <translation>Ctrl+1</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1573"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1579"/>
         <source>Preferences</source>
         <translation>Einstellungen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1575"/>
-        <source>&amp;Preferences...</source>
-        <translation>&amp;Einstellungen...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/>
+        <source>&amp;Preferences...</source>
+        <translation>&amp;Einstellungen...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/>
         <source>Set the prefered configuration</source>
         <translation>Konfiguriert die Einstellungen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1583"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1589"/>
         <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="../WebBrowser/WebBrowserWindow.py" line="1593"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1599"/>
         <source>Languages</source>
         <translation>Sprachen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1595"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1601"/>
         <source>&amp;Languages...</source>
         <translation>&amp;Sprachen...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1602"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1608"/>
         <source>Configure the accepted languages for web pages</source>
         <translation>Konfigurieren der bevorzugten Sprachen für Websites</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1605"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1611"/>
         <source>&lt;b&gt;Languages&lt;/b&gt;&lt;p&gt;Configure the accepted languages for web pages.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sprachen&lt;/b&gt;&lt;p&gt;Konfigurieren der bevorzugten Sprachen für Websites.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1614"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1620"/>
         <source>Cookies</source>
         <translation>Cookies</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1616"/>
-        <source>C&amp;ookies...</source>
-        <translation>C&amp;ookies...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1622"/>
+        <source>C&amp;ookies...</source>
+        <translation>C&amp;ookies...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1628"/>
         <source>Configure cookies handling</source>
         <translation>Cookieverwaltung konfigurieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1624"/>
-        <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Cookieverwaltung konfigurieren&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1630"/>
+        <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Cookieverwaltung konfigurieren&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1636"/>
         <source>Personal Information</source>
         <translation>Persönliche Informationen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1632"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1638"/>
         <source>Personal Information...</source>
         <translation>Persönliche Informationen...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1639"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1645"/>
         <source>Configure personal information for completing form fields</source>
         <translation>Persönliche Informationen zum Ausfüllen von Formularen eingeben</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1642"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1648"/>
         <source>&lt;b&gt;Personal Information...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the personal information used for completing form fields.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Persönliche Informationen...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zur Eingabe persönlicher Informationen, die zum Ausfüllen von Formularen verwendet werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1652"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1658"/>
         <source>GreaseMonkey Scripts</source>
         <translation>GreaseMonkey-Skripte</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1654"/>
-        <source>GreaseMonkey Scripts...</source>
-        <translation>GreaseMonkey-Skripte...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1660"/>
+        <source>GreaseMonkey Scripts...</source>
+        <translation>GreaseMonkey-Skripte...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1666"/>
         <source>Configure the GreaseMonkey Scripts</source>
         <translation>GreaseMonkey-Skripte konfigurieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1662"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1668"/>
         <source>&lt;b&gt;GreaseMonkey Scripts...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available GreaseMonkey Scripts.&lt;/p&gt;</source>
         <translation>&lt;b&gt;GreaseMonkey-Skripte...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zur Konfiguration der verfügbaren GreaseMonkey-Skripte.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1672"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1678"/>
         <source>Edit Message Filters</source>
         <translation>Meldungsfilter bearbeiten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1680"/>
         <source>Edit Message Filters...</source>
         <translation>Meldungsfilter bearbeiten...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1681"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation>Bearbeite die Meldungsfilter, die zur Unterdrückung unerwünschter Meldungen verwendet werden</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1684"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1690"/>
         <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 unerwünschter Meldungen verwendet werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1695"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1701"/>
         <source>Edit HTML5 Feature Permissions</source>
         <translation>HTML5 Feature Berechtigungen bearbeiten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1697"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1703"/>
         <source>Edit HTML5 Feature Permissions...</source>
         <translation>HTML5 Feature Berechtigungen bearbeiten...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1704"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1710"/>
         <source>Edit the remembered HTML5 feature permissions</source>
         <translation>Gemerkte HTML5 Feature Berechtigungen bearbeiten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1707"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1713"/>
         <source>&lt;b&gt;Edit HTML5 Feature Permissions&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the remembered HTML5 feature permissions.&lt;/p&gt;</source>
         <translation>&lt;b&gt;HTML5 Feature Berechtigungen bearbeiten&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zum Bearbeiten der gemerkten HTML5 Feature Berechtigungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1720"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1718"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1726"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1724"/>
         <source>Sync with Table of Contents</source>
         <translation>Mit Inhalt synchronisieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1727"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/>
         <source>Synchronizes the table of contents with current page</source>
         <translation>Synchronisiert das Inhaltsverzeichnis mit der aktuellen Seite</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1730"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1736"/>
         <source>&lt;b&gt;Sync with Table of Contents&lt;/b&gt;&lt;p&gt;Synchronizes the table of contents with current page.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mit Inhalt synchronisieren&lt;/b&gt;&lt;p&gt;Synchronisiert das Inhaltsverzeichnis mit der aktuellen Seite.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1741"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1740"/>
-        <source>Table of Contents</source>
-        <translation>Inhaltsverzeichnis</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1747"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1746"/>
+        <source>Table of Contents</source>
+        <translation>Inhaltsverzeichnis</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1753"/>
         <source>Shows the table of contents window</source>
         <translation>Zeigt das Fenster mit dem Inhaltsverzeichnis an</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1749"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1755"/>
         <source>&lt;b&gt;Table of Contents&lt;/b&gt;&lt;p&gt;Shows the table of contents window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Inhaltsverzeichnis&lt;/b&gt;&lt;p&gt;Zeigt das Fenster mit dem Inhaltsverzeichnis an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1760"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1766"/>
         <source>Shows the index window</source>
         <translation>Zeigt das Indexfenster an</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1762"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1768"/>
         <source>&lt;b&gt;Index&lt;/b&gt;&lt;p&gt;Shows the index window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Index&lt;/b&gt;&lt;p&gt;Zeigt das Indexfenster an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1775"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1781"/>
         <source>Shows the search window</source>
         <translation>Zeigt das Suchfenster an</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1777"/>
-        <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Suchen&lt;/b&gt;&lt;p&gt;Zeigt das Suchfenster an.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1783"/>
+        <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Suchen&lt;/b&gt;&lt;p&gt;Zeigt das Suchfenster an.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1789"/>
         <source>Manage QtHelp Documents</source>
         <translation>QtHelp-Dokumente verwalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1784"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1790"/>
         <source>Manage QtHelp &amp;Documents</source>
         <translation>QtHelp &amp;Dokumente verwalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1791"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1797"/>
         <source>Shows a dialog to manage the QtHelp documentation set</source>
         <translation>Zeigt einen Dialog zur Verwaltung der QtHelp-Dokumente</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1794"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1800"/>
         <source>&lt;b&gt;Manage QtHelp Documents&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the QtHelp documentation set.&lt;/p&gt;</source>
         <translation>&lt;b&gt;QtHelp-Dokumente verwalten&lt;/b&gt;&lt;p&gt;Zeigt einen Dialog zur Verwaltung der QtHelp Dokumente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1804"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1810"/>
         <source>Reindex Documentation</source>
         <translation>Dokumentation reindizieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1805"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1811"/>
         <source>&amp;Reindex Documentation</source>
         <translation>Dokumentation &amp;reindizieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1812"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1818"/>
         <source>Reindexes the documentation set</source>
         <translation>Reindiziert die Dokumentation</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1815"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1821"/>
         <source>&lt;b&gt;Reindex Documentation&lt;/b&gt;&lt;p&gt;Reindexes the documentation set.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Dokumentation reindizieren&lt;/b&gt;&lt;p&gt;Reindiziert die Dokumentation.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1840"/>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1834"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1828"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1826"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1832"/>
         <source>Clear private data</source>
         <translation>Private Daten löschen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1836"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1842"/>
         <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like browsing history, search history or the favicons database.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Private Daten löschen&lt;/b&gt;&lt;p&gt;Löscht private Daten wie die Web-Chronik, Such-Chronik oder die Symboldatenbank.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1846"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1852"/>
         <source>Clear icons database</source>
         <translation>Symboldatenbank löschen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1847"/>
-        <source>Clear &amp;icons database</source>
-        <translation>Symboldatenbank &amp;löschen</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1853"/>
+        <source>Clear &amp;icons database</source>
+        <translation>Symboldatenbank &amp;löschen</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1859"/>
         <source>Clear the database of favicons</source>
         <translation>Löscht die Datenbank mit den Favicons</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1855"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1861"/>
         <source>&lt;b&gt;Clear icons database&lt;/b&gt;&lt;p&gt;Clears the database of favicons of previously visited URLs.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Symboldatenbank löschen&lt;/b&gt;&lt;p&gt;Löscht die Datenbank mit den Favicons besuchter URLs.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1867"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1865"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1873"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1871"/>
         <source>Manage Saved Favicons</source>
         <translation>Gespeicherte Favicons verwalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1874"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1880"/>
         <source>Show a dialog to manage the saved favicons</source>
         <translation>Zeigt einen Dialog zur Verwaltung der gespeicherten Favicons an</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1877"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1883"/>
         <source>&lt;b&gt;Manage Saved Favicons&lt;/b&gt;&lt;p&gt;This shows a dialog to manage the saved favicons of previously visited URLs.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gespeicherte Favicons verwalten&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog zur Verwaltung der gespeicherten Favicons von besuchten Webseiten an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1887"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1893"/>
         <source>Configure Search Engines</source>
         <translation>Suchmaschinen verwalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1888"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1894"/>
         <source>Configure Search &amp;Engines...</source>
         <translation>Such&amp;maschinen verwalten...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1895"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1901"/>
         <source>Configure the available search engines</source>
         <translation>Verwalte die verfügbaren Suchmaschinen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1898"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1904"/>
         <source>&lt;b&gt;Configure Search Engines...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available search engines.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Suchmaschinen verwalten...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zur Verwaltung der verfügbaren Suchmaschinen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1908"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1914"/>
         <source>Manage Saved Passwords</source>
         <translation>Gespeicherte Passwörter verwalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1910"/>
-        <source>Manage Saved Passwords...</source>
-        <translation>Gespeicherte Passwörter verwalten...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1916"/>
+        <source>Manage Saved Passwords...</source>
+        <translation>Gespeicherte Passwörter verwalten...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1922"/>
         <source>Manage the saved passwords</source>
         <translation>Verwalten gespeicherter Passwörter</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1918"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1924"/>
         <source>&lt;b&gt;Manage Saved Passwords...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved passwords.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gespeicherte Passwörter verwalten...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zur Verwaltung gespeicherter Passwörter.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1927"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1933"/>
         <source>Ad Block</source>
         <translation>Ad Block</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1929"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1935"/>
         <source>&amp;Ad Block...</source>
         <translation>&amp;Ad Block...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1936"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1942"/>
         <source>Configure AdBlock subscriptions and rules</source>
         <translation>Konfiguriert AdBlock Abonnements und Regeln</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1939"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1945"/>
         <source>&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure AdBlock subscriptions and rules.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zum konfigurieren von AdBlock Abonnements und Regeln&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1949"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1955"/>
         <source>Manage SSL Certificate Errors</source>
         <translation>SSL Zertifikatsfehler verwalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1951"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1957"/>
         <source>Manage SSL Certificate Errors...</source>
         <translation>SSL Zertifikatsfehler verwalten...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1958"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1964"/>
         <source>Manage the accepted SSL certificate Errors</source>
         <translation>Verwalte die akzeptierten SSL Zertifikatsfehler</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1961"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1967"/>
         <source>&lt;b&gt;Manage SSL Certificate Errors...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the accepted SSL certificate errors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;SSL Zertifikatsfehler verwalten&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Verwaltung der akzeptierten SSL Zertifikatsfehler.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1971"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1977"/>
         <source>Manage Safe Browsing</source>
         <translation>Safe Browsing verwalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1973"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1979"/>
         <source>Manage Safe Browsing...</source>
         <translation>Safe Browsing verwalten...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1980"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1986"/>
         <source>Configure Safe Browsing and manage local cache</source>
         <translation>Safe Browsing konfigurieren und Zwischenspeicher verwalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1983"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1989"/>
         <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Safe Browsing verwalten&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Konfiguration des Safe Browsing und zur Verwaltung des lokalen Zwischenspeichers.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1994"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1993"/>
-        <source>Downloads</source>
-        <translation>Downloads</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="2000"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1999"/>
+        <source>Downloads</source>
+        <translation>Downloads</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2006"/>
         <source>Shows the downloads window</source>
         <translation>Zeig das Downloadsfenster an</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2002"/>
-        <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Zeig das Downloadsfenster an.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="2008"/>
+        <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Zeig das Downloadsfenster an.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2014"/>
         <source>RSS Feeds Dialog</source>
         <translation>RSS-Feeds-Dialog</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2010"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2016"/>
         <source>&amp;RSS Feeds Dialog...</source>
         <translation>&amp;RSS-Feeds-Dialog...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2011"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2017"/>
         <source>Ctrl+Shift+F</source>
         <comment>Help|RSS Feeds Dialog</comment>
         <translation>Ctrl+Shift+F</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2017"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2023"/>
         <source>Open a dialog showing the configured RSS feeds.</source>
         <translation>Öffnet einen Dialog mit den konfigurierten RSS-Feeds.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2020"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2026"/>
         <source>&lt;b&gt;RSS Feeds Dialog...&lt;/b&gt;&lt;p&gt;Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.&lt;/p&gt;</source>
         <translation>&lt;b&gt;RSS-Feeds-Dialog...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Anzeige der konfigurierten RSS-Feeds. Er kann verwendet werden, um sie zu verwalten und ihren Inhalt anzuzeigen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2031"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2037"/>
         <source>Siteinfo Dialog</source>
         <translation>Seiteninformationen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2039"/>
         <source>&amp;Siteinfo Dialog...</source>
         <translation>&amp;Seiteninformationen...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2034"/>
-        <source>Ctrl+Shift+I</source>
-        <comment>Help|Siteinfo Dialog</comment>
-        <translation>Ctrl+Shift+I</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="2040"/>
+        <source>Ctrl+Shift+I</source>
+        <comment>Help|Siteinfo Dialog</comment>
+        <translation>Ctrl+Shift+I</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2046"/>
         <source>Open a dialog showing some information about the current site.</source>
         <translation>Öffnet einen Dialog zur Anzeige von Informationen über die aktuelle Site.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2043"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2049"/>
         <source>&lt;b&gt;Siteinfo Dialog...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the current site.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Site Informationen...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zur Anzeige von Informationen über die aktuelle Site.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2053"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2059"/>
         <source>Manage User Agent Settings</source>
         <translation>User-Agent-Einstellungen verwalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2054"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2060"/>
         <source>Manage &amp;User Agent Settings</source>
         <translation>User-&amp;Agent-Einstellungen verwalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2061"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2067"/>
         <source>Shows a dialog to manage the User Agent settings</source>
         <translation>Zeigt einen Dialog zum Verwalten der User-Agent-Einstellungen an</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2064"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2070"/>
         <source>&lt;b&gt;Manage User Agent Settings&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the User Agent settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;User-Agent-Einstellungen verwalten&lt;/b&gt;&lt;p&gt;Zeigt einen Dialog zum Verwalten der User-Agent-Einstellungen an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2073"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2079"/>
         <source>Synchronize data</source>
         <translation>Synchronisation</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2075"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2081"/>
         <source>&amp;Synchronize Data...</source>
         <translation>&amp;Synchronisation...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2082"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2088"/>
         <source>Shows a dialog to synchronize data via the network</source>
         <translation>Zeigt einen Dialog zum Synchronisieren von Daten über das Netzwerk</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2085"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2091"/>
         <source>&lt;b&gt;Synchronize Data...&lt;/b&gt;&lt;p&gt;This shows a dialog to synchronize data via the network.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Synchronisation...&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog zum Synchronisieren von Daten über das Netzwerk.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2095"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2101"/>
         <source>Manage Saved Zoom Values</source>
         <translation>Gespeicherte Zoomwerte verwalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2097"/>
-        <source>Manage Saved Zoom Values...</source>
-        <translation>Gespeicherte Zoomwerte verwalten...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="2103"/>
+        <source>Manage Saved Zoom Values...</source>
+        <translation>Gespeicherte Zoomwerte verwalten...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2109"/>
         <source>Manage the saved zoom values</source>
         <translation>Verwalten gespeicherter Zoomwerte</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2105"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2111"/>
         <source>&lt;b&gt;Manage Saved Zoom Values...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved zoom values.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gespeicherte Zoomwerte verwalten...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zur Verwaltung gespeicherter Zoomwerte.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2122"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2128"/>
         <source>Toggle the JavaScript console window</source>
         <translation>Schalte die JavaScript-Konsole um</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2125"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2131"/>
         <source>&lt;b&gt;JavaScript Console&lt;/b&gt;&lt;p&gt;This toggles the JavaScript console window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;JavaScript Konsole&lt;/b&gt;&lt;p&gt;Dies schaltet die Anzeige der JavaScript Konsole um.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2135"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2134"/>
-        <source>Tab Manager</source>
-        <translation>Registerverwaltung</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="2141"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2140"/>
+        <source>Tab Manager</source>
+        <translation>Registerverwaltung</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2147"/>
         <source>Shows the tab manager window</source>
         <translation>Zeigt das Fenster der Registerverwaltung an</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2143"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2149"/>
         <source>&lt;b&gt;Tab Manager&lt;/b&gt;&lt;p&gt;Shows the tab manager window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Registerverwaltung&lt;/b&gt;&lt;p&gt;Zeig das Fenster der Registerverwaltung an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2151"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2157"/>
         <source>Session Manager</source>
         <translation>Sitzungsmanager</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2152"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2158"/>
         <source>Session Manager...</source>
         <translation>Sitzungsmanager...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2159"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2165"/>
         <source>Shows the session manager window</source>
         <translation>Zeigt das Sitzungsmanagerfenster</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2162"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2168"/>
         <source>&lt;b&gt;Session Manager&lt;/b&gt;&lt;p&gt;Shows the session manager window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sitzungsmanager&lt;/b&gt;&lt;p&gt;Zeigt das Fenster des Sitzungsmanagers an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2173"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2171"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2177"/>
         <source>Scan current site</source>
         <translation>Aktuelle Seite prüfen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5180"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5170"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2187"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2185"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5185"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5175"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2193"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2191"/>
         <source>IP Address Report</source>
         <translation>IP Adressenbericht</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5194"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2199"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2197"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5199"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2205"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2203"/>
         <source>Domain Report</source>
         <translation>Domänenbericht</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2217"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2223"/>
         <source>Keyboard Shortcuts</source>
         <translation>Tastaturkurzbefehle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2219"/>
-        <source>Keyboard &amp;Shortcuts...</source>
-        <translation>&amp;Tastaturkurzbefehle...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="2225"/>
+        <source>Keyboard &amp;Shortcuts...</source>
+        <translation>&amp;Tastaturkurzbefehle...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2231"/>
         <source>Set the keyboard shortcuts</source>
         <translation>Setze die Tastaturkurzbefehle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2227"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2233"/>
         <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="../WebBrowser/WebBrowserWindow.py" line="5600"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5581"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2237"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5605"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5586"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2243"/>
         <source>Export Keyboard Shortcuts</source>
         <translation>Tastaturkurzbefehle exportieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2239"/>
-        <source>&amp;Export Keyboard Shortcuts...</source>
-        <translation>Tastaturkurzbefehle &amp;exportieren...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="2245"/>
+        <source>&amp;Export Keyboard Shortcuts...</source>
+        <translation>Tastaturkurzbefehle &amp;exportieren...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2251"/>
         <source>Export the keyboard shortcuts</source>
         <translation>Exportiert die Tastaturkurzbefehle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2247"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2253"/>
         <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="../WebBrowser/WebBrowserWindow.py" line="5620"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2256"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5625"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2262"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>Tastaturkurzbefehle importieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2258"/>
-        <source>&amp;Import Keyboard Shortcuts...</source>
-        <translation>Tastaturkurzbefehle &amp;importieren...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="2264"/>
+        <source>&amp;Import Keyboard Shortcuts...</source>
+        <translation>Tastaturkurzbefehle &amp;importieren...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2270"/>
         <source>Import the keyboard shortcuts</source>
         <translation>Importiert die Tastaturkurzbefehle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2266"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2272"/>
         <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="../WebBrowser/WebBrowserWindow.py" line="2275"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2281"/>
         <source>Protocol Handler Manager</source>
         <translation>Protokoll Handler Verwaltung</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2276"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2282"/>
         <source>Protocol Handler Manager...</source>
         <translation>Protokoll Handler Verwaltung...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2283"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2289"/>
         <source>Shows the protocol handler manager window</source>
         <translation>Zeigt die Protokoll Handler Verwaltung an</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2286"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2292"/>
         <source>&lt;b&gt;Protocol Handler Manager&lt;/b&gt;&lt;p&gt;Shows the protocol handler manager window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Protokoll Handler Verwaltung&lt;/b&gt;&lt;p&gt;Zeigt das Fenster für die Protokoll Handler Verwaltung an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2330"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2336"/>
         <source>&amp;File</source>
         <translation>&amp;Datei</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2524"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2338"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2530"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2344"/>
         <source>Sessions</source>
         <translation>Sitzungen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2362"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2368"/>
         <source>&amp;Edit</source>
         <translation>&amp;Bearbeiten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2596"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2378"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2602"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2384"/>
         <source>&amp;View</source>
         <translation>&amp;Ansicht</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2389"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2395"/>
         <source>Text Encoding</source>
         <translation>Zeichenkodierung</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2398"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2404"/>
         <source>H&amp;istory</source>
         <translation>&amp;Chronik</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2414"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2420"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Lesezeichen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2430"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2436"/>
         <source>&amp;Settings</source>
         <translation>&amp;Einstellungen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2460"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2466"/>
         <source>Global User Agent</source>
         <translation>Globaler User Agent</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2627"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2472"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2633"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2478"/>
         <source>&amp;Tools</source>
         <translation>&amp;Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2634"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2479"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2640"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2485"/>
         <source>&amp;VirusTotal</source>
         <translation>&amp;VirusTotal</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2598"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2485"/>
-        <source>&amp;Windows</source>
-        <translation>&amp;Fenster</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="2604"/>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="2491"/>
+        <source>&amp;Windows</source>
+        <translation>&amp;Fenster</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2610"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2497"/>
         <source>QtHelp</source>
         <translation>QtHelp</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2496"/>
-        <source>&amp;Toolbars</source>
-        <translation>&amp;Werkzeugleisten</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="2502"/>
+        <source>&amp;Toolbars</source>
+        <translation>&amp;Werkzeugleisten</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2508"/>
         <source>&amp;Help</source>
         <translation>&amp;Hilfe</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2531"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2537"/>
         <source>Save</source>
         <translation>Speichern</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2551"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2557"/>
         <source>Show All History...</source>
         <translation>Chronik anzeigen...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2721"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2558"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2727"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2564"/>
         <source>Settings</source>
         <translation>Einstellungen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2652"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2658"/>
         <source>File</source>
         <translation>Datei</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2676"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2682"/>
         <source>Edit</source>
         <translation>Bearbeiten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2688"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2694"/>
         <source>View</source>
         <translation>Ansicht</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2697"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2703"/>
         <source>Find</source>
         <translation>Suchen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2705"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2711"/>
         <source>Filter</source>
         <translation>Filter</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2712"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2718"/>
         <source>Filtered by: </source>
         <translation>Filter: </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2732"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2738"/>
         <source>Tools</source>
         <translation>Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2740"/>
-        <source>Help</source>
-        <translation>Hilfe</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="2746"/>
+        <source>Help</source>
+        <translation>Hilfe</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2752"/>
         <source>VirusTotal</source>
         <translation>VirusTotal</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2890"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2896"/>
         <source>&lt;p&gt;Could not start the process.&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 Prozess 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="../WebBrowser/WebBrowserWindow.py" line="2894"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2900"/>
         <source>OK</source>
         <translation>OK</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2929"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2906"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2935"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2912"/>
         <source>HTML Files (*.html *.htm *.mhtml *.mht);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source>
         <translation>Hilfedateien (*.html *.htm *.mhtml *.mht);;PDF-Dateien (*.pdf);;CHM Dateien (*.chm);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2983"/>
         <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chromium {2} with Security Patches {3}.&lt;/p&gt;</source>
         <translation>&lt;b&gt;eric Web Browser – {0}&lt;/b&gt;&lt;p&gt;Der eric Web Browser ist eine kombinierte Anzeige für Hilfe- und HTML-Dateien. Er ist Bestandteil der eric Entwicklungsumgebung.&lt;/p&gt;&lt;p&gt;Er basiert auf QtWebEngine {1} und Chromium {2} mit Sicherheitspatches {3}.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2992"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2998"/>
         <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chromium {2}.&lt;/p&gt;</source>
         <translation>&lt;b&gt;eric Web Browser – {0}&lt;/b&gt;&lt;p&gt;Der eric Web Browser ist eine kombinierte Anzeige für Hilfe- und HTML-Dateien. Er ist Bestandteil der eric Entwicklungsumgebung.&lt;/p&gt;&lt;p&gt;Er basiert auf QtWebEngine {1} und Chromium {2}.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3127"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3133"/>
         <source>Saved Tabs</source>
         <translation>Gesicherte Tabs</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3310"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3316"/>
         <source>Are you sure you want to close the web browser?</source>
         <translation>Möchten Sie den Web Browser wirklich schließen?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3311"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3317"/>
         <source>Are you sure you want to close the web browser?
 You have {0} windows with {1} tabs open.</source>
         <translation>Möchten Sie den Web Browser wirklich schließen?
 Es sind {0} Fenster mit {1} Registern offen.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3910"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3916"/>
         <source>Could not find any associated content.</source>
         <translation>Es konnte kein zugehöriger Inhalt gefunden werden.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3956"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3962"/>
         <source>Unfiltered</source>
         <translation>Ungefiltert</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4012"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4018"/>
         <source>Updating search index</source>
         <translation>Aktualisiere Suchindex</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4094"/>
         <source>Looking for Documentation...</source>
         <translation>Suche nach Dokumentation...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4121"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4127"/>
         <source>Help Engine</source>
         <translation>Hilfe</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4717"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4722"/>
         <source>System</source>
         <translation>System</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4721"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4726"/>
         <source>ISO</source>
         <translation>ISO</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4724"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4729"/>
         <source>Unicode</source>
         <translation>Unicode</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4727"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4732"/>
         <source>Windows</source>
         <translation>Windows</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4730"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4735"/>
         <source>IBM</source>
         <translation>IBM</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4733"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4738"/>
         <source>Apple</source>
         <translation>Apple</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4736"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4741"/>
         <source>Other</source>
         <translation>Sonstige</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4763"/>
-        <source>Menu Bar</source>
-        <translation>Menüleiste</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="4768"/>
-        <source>Bookmarks</source>
-        <translation>Lesezeichen</translation>
+        <source>Menu Bar</source>
+        <translation>Menüleiste</translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="4773"/>
+        <source>Bookmarks</source>
+        <translation>Lesezeichen</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4778"/>
         <source>Status Bar</source>
         <translation>Statusleiste</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4788"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4793"/>
         <source>&amp;Show all</source>
         <translation>Alle an&amp;zeigen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4790"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4795"/>
         <source>&amp;Hide all</source>
         <translation>Alle &amp;ausblenden</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5136"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5141"/>
         <source>VirusTotal Scan</source>
         <translation>VirusTotal-Prüfung</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5137"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5142"/>
         <source>&lt;p&gt;The VirusTotal scan could not be scheduled.&lt;p&gt;
 &lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die VirusTotal-Prüfung konnte nicht beauftragt werden.&lt;p&gt;
 &lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5171"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5176"/>
         <source>Enter a valid IPv4 address in dotted quad notation:</source>
         <translation>Gib eine gültige IPv4 Adresse in Vierpunktnotation ein:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5181"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5186"/>
         <source>The given IP address is not in dotted quad notation.</source>
         <translation>Die eingegebene IP Adresse ist nicht in Vierpunktnotation.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5195"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5200"/>
         <source>Enter a valid domain name:</source>
         <translation>Gib einen gültigen Domänennamen ein:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5622"/>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5583"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5627"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5588"/>
         <source>Keyboard Shortcuts File (*.ekj)</source>
         <translation>Tastaturkurzbefehlsdatei (*.ekj)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5601"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5606"/>
         <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Tastaturkurzbefehlsdatei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
--- a/src/eric7/i18n/eric7_empty.ts	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/i18n/eric7_empty.ts	Sun Jun 02 09:51:20 2024 +0200
@@ -1721,42 +1721,42 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="217" />
+      <location filename="../Utilities/BackgroundService.py" line="230" />
       <source>Initialization of Background Service</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="218" />
-      <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="231" />
+      <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="244" />
       <source>Restart background client?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="232" />
+      <location filename="../Utilities/BackgroundService.py" line="245" />
       <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It's used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Yes'&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Retry'&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'No'&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="261" />
+      <location filename="../Utilities/BackgroundService.py" line="274" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="502" />
+      <location filename="../Utilities/BackgroundService.py" line="515" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="511" />
+      <location filename="../Utilities/BackgroundService.py" line="524" />
       <source>Background client disconnected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="512" />
+      <location filename="../Utilities/BackgroundService.py" line="525" />
       <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
       <translation type="unfinished" />
     </message>
@@ -9183,665 +9183,665 @@
   <context>
     <name>DebugUI</name>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="210" />
+      <location filename="../Debugger/DebugUI.py" line="207" />
       <source>Notification</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2342" />
-      <location filename="../Debugger/DebugUI.py" line="237" />
+      <location filename="../Debugger/DebugUI.py" line="2339" />
+      <location filename="../Debugger/DebugUI.py" line="234" />
       <source>Run Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="239" />
+      <location filename="../Debugger/DebugUI.py" line="236" />
       <source>&amp;Run Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="245" />
+      <location filename="../Debugger/DebugUI.py" line="242" />
       <source>Run the current Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="247" />
+      <location filename="../Debugger/DebugUI.py" line="244" />
       <source>&lt;b&gt;Run Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2348" />
-      <location filename="../Debugger/DebugUI.py" line="2342" />
-      <location filename="../Debugger/DebugUI.py" line="258" />
+      <location filename="../Debugger/DebugUI.py" line="2345" />
+      <location filename="../Debugger/DebugUI.py" line="2339" />
+      <location filename="../Debugger/DebugUI.py" line="255" />
       <source>Run Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="260" />
+      <location filename="../Debugger/DebugUI.py" line="257" />
       <source>Run &amp;Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="266" />
+      <location filename="../Debugger/DebugUI.py" line="263" />
       <source>Run the current Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="268" />
+      <location filename="../Debugger/DebugUI.py" line="265" />
       <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="280" />
+      <location filename="../Debugger/DebugUI.py" line="277" />
       <source>Coverage run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="282" />
+      <location filename="../Debugger/DebugUI.py" line="279" />
       <source>Coverage run of Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="286" />
+      <source>Perform a coverage run of the current Script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="289" />
-      <source>Perform a coverage run of the current Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="292" />
       <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="303" />
+      <location filename="../Debugger/DebugUI.py" line="300" />
       <source>Coverage run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="305" />
+      <location filename="../Debugger/DebugUI.py" line="302" />
       <source>Coverage run of Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="309" />
+      <source>Perform a coverage run of the current Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="312" />
-      <source>Perform a coverage run of the current Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="315" />
       <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="327" />
+      <location filename="../Debugger/DebugUI.py" line="324" />
       <source>Profile Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="329" />
+      <location filename="../Debugger/DebugUI.py" line="326" />
       <source>Profile Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="335" />
+      <location filename="../Debugger/DebugUI.py" line="332" />
       <source>Profile the current Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="337" />
+      <location filename="../Debugger/DebugUI.py" line="334" />
       <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="347" />
+      <location filename="../Debugger/DebugUI.py" line="344" />
       <source>Profile Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="349" />
+      <location filename="../Debugger/DebugUI.py" line="346" />
       <source>Profile Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="355" />
+      <location filename="../Debugger/DebugUI.py" line="352" />
       <source>Profile the current Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="357" />
+      <location filename="../Debugger/DebugUI.py" line="354" />
       <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2528" />
-      <location filename="../Debugger/DebugUI.py" line="368" />
+      <location filename="../Debugger/DebugUI.py" line="2525" />
+      <location filename="../Debugger/DebugUI.py" line="365" />
       <source>Debug Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="370" />
+      <location filename="../Debugger/DebugUI.py" line="367" />
       <source>&amp;Debug Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="376" />
+      <location filename="../Debugger/DebugUI.py" line="373" />
       <source>Debug the current Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="378" />
+      <location filename="../Debugger/DebugUI.py" line="375" />
       <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2534" />
-      <location filename="../Debugger/DebugUI.py" line="2528" />
-      <location filename="../Debugger/DebugUI.py" line="390" />
+      <location filename="../Debugger/DebugUI.py" line="2531" />
+      <location filename="../Debugger/DebugUI.py" line="2525" />
+      <location filename="../Debugger/DebugUI.py" line="387" />
       <source>Debug Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="392" />
+      <location filename="../Debugger/DebugUI.py" line="389" />
       <source>Debug &amp;Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="398" />
+      <location filename="../Debugger/DebugUI.py" line="395" />
       <source>Debug the current Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="400" />
+      <location filename="../Debugger/DebugUI.py" line="397" />
       <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="414" />
-      <location filename="../Debugger/DebugUI.py" line="412" />
+      <location filename="../Debugger/DebugUI.py" line="411" />
+      <location filename="../Debugger/DebugUI.py" line="409" />
       <source>Restart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="420" />
+      <location filename="../Debugger/DebugUI.py" line="417" />
       <source>Restart the last debugged script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="422" />
+      <location filename="../Debugger/DebugUI.py" line="419" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="631" />
-      <location filename="../Debugger/DebugUI.py" line="436" />
-      <location filename="../Debugger/DebugUI.py" line="434" />
+      <location filename="../Debugger/DebugUI.py" line="628" />
+      <location filename="../Debugger/DebugUI.py" line="433" />
+      <location filename="../Debugger/DebugUI.py" line="431" />
       <source>Stop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="442" />
+      <location filename="../Debugger/DebugUI.py" line="439" />
       <source>Stop the running script.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="444" />
+      <location filename="../Debugger/DebugUI.py" line="441" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="455" />
+      <location filename="../Debugger/DebugUI.py" line="452" />
       <source>Continue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="457" />
+      <location filename="../Debugger/DebugUI.py" line="454" />
       <source>&amp;Continue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="463" />
+      <location filename="../Debugger/DebugUI.py" line="460" />
       <source>Continue running the program from the current line</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="465" />
+      <location filename="../Debugger/DebugUI.py" line="462" />
       <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="476" />
+      <location filename="../Debugger/DebugUI.py" line="473" />
       <source>Continue to Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="478" />
+      <location filename="../Debugger/DebugUI.py" line="475" />
       <source>Continue &amp;To Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="485" />
+      <location filename="../Debugger/DebugUI.py" line="482" />
       <source>Continue running the program from the current line to the current cursor position</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="491" />
+      <location filename="../Debugger/DebugUI.py" line="488" />
       <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="501" />
+      <location filename="../Debugger/DebugUI.py" line="498" />
       <source>Continue Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="503" />
+      <location filename="../Debugger/DebugUI.py" line="500" />
       <source>Continue &amp;Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="510" />
+      <location filename="../Debugger/DebugUI.py" line="507" />
       <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="516" />
+      <location filename="../Debugger/DebugUI.py" line="513" />
       <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="527" />
+      <location filename="../Debugger/DebugUI.py" line="524" />
       <source>Move Instruction Pointer to Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="529" />
+      <location filename="../Debugger/DebugUI.py" line="526" />
       <source>&amp;Jump To Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="536" />
+      <location filename="../Debugger/DebugUI.py" line="533" />
       <source>Skip the code from the current line to the current cursor position</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="542" />
+      <location filename="../Debugger/DebugUI.py" line="539" />
       <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="556" />
+      <location filename="../Debugger/DebugUI.py" line="553" />
       <source>Single Step</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="558" />
+      <location filename="../Debugger/DebugUI.py" line="555" />
       <source>Sin&amp;gle Step</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="564" />
+      <location filename="../Debugger/DebugUI.py" line="561" />
       <source>Execute a single Python statement</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="566" />
+      <location filename="../Debugger/DebugUI.py" line="563" />
       <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="578" />
+      <location filename="../Debugger/DebugUI.py" line="575" />
       <source>Step Over</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="580" />
+      <location filename="../Debugger/DebugUI.py" line="577" />
       <source>Step &amp;Over</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="587" />
+      <location filename="../Debugger/DebugUI.py" line="584" />
       <source>Execute a single Python statement staying in the current frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="593" />
+      <location filename="../Debugger/DebugUI.py" line="590" />
       <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="606" />
+      <location filename="../Debugger/DebugUI.py" line="603" />
       <source>Step Out</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="608" />
+      <location filename="../Debugger/DebugUI.py" line="605" />
       <source>Step Ou&amp;t</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="612" />
+      <source>Execute Python statements until leaving the current frame</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="615" />
-      <source>Execute Python statements until leaving the current frame</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="618" />
       <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="633" />
+      <location filename="../Debugger/DebugUI.py" line="630" />
       <source>&amp;Stop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="639" />
+      <location filename="../Debugger/DebugUI.py" line="636" />
       <source>Stop debugging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="641" />
+      <location filename="../Debugger/DebugUI.py" line="638" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="647" />
+      <location filename="../Debugger/DebugUI.py" line="644" />
       <source>Variables Type Filter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="648" />
+      <location filename="../Debugger/DebugUI.py" line="645" />
       <source>Varia&amp;bles Type Filter...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="654" />
+      <location filename="../Debugger/DebugUI.py" line="651" />
       <source>Configure variables type filter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="656" />
+      <location filename="../Debugger/DebugUI.py" line="653" />
       <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="667" />
+      <location filename="../Debugger/DebugUI.py" line="664" />
       <source>Exceptions Filter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="668" />
+      <location filename="../Debugger/DebugUI.py" line="665" />
       <source>&amp;Exceptions Filter...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="674" />
+      <location filename="../Debugger/DebugUI.py" line="671" />
       <source>Configure exceptions filter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="676" />
+      <location filename="../Debugger/DebugUI.py" line="673" />
       <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="688" />
+      <location filename="../Debugger/DebugUI.py" line="685" />
       <source>Ignored Exceptions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="689" />
+      <location filename="../Debugger/DebugUI.py" line="686" />
       <source>&amp;Ignored Exceptions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="695" />
+      <location filename="../Debugger/DebugUI.py" line="692" />
       <source>Configure ignored exceptions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="697" />
+      <location filename="../Debugger/DebugUI.py" line="694" />
       <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="719" />
-      <location filename="../Debugger/DebugUI.py" line="713" />
-      <location filename="../Debugger/DebugUI.py" line="711" />
+      <location filename="../Debugger/DebugUI.py" line="716" />
+      <location filename="../Debugger/DebugUI.py" line="710" />
+      <location filename="../Debugger/DebugUI.py" line="708" />
       <source>Toggle Breakpoint</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="714" />
+      <location filename="../Debugger/DebugUI.py" line="711" />
       <source>Shift+F11</source>
       <comment>Debug|Toggle Breakpoint</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="721" />
+      <location filename="../Debugger/DebugUI.py" line="718" />
       <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="739" />
-      <location filename="../Debugger/DebugUI.py" line="731" />
+      <location filename="../Debugger/DebugUI.py" line="736" />
+      <location filename="../Debugger/DebugUI.py" line="728" />
       <source>Edit Breakpoint</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="733" />
+      <location filename="../Debugger/DebugUI.py" line="730" />
       <source>Edit Breakpoint...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="734" />
+      <location filename="../Debugger/DebugUI.py" line="731" />
       <source>Shift+F12</source>
       <comment>Debug|Edit Breakpoint</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="741" />
+      <location filename="../Debugger/DebugUI.py" line="738" />
       <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="759" />
-      <location filename="../Debugger/DebugUI.py" line="753" />
-      <location filename="../Debugger/DebugUI.py" line="751" />
+      <location filename="../Debugger/DebugUI.py" line="756" />
+      <location filename="../Debugger/DebugUI.py" line="750" />
+      <location filename="../Debugger/DebugUI.py" line="748" />
       <source>Next Breakpoint</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="754" />
+      <location filename="../Debugger/DebugUI.py" line="751" />
       <source>Ctrl+Shift+PgDown</source>
       <comment>Debug|Next Breakpoint</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="761" />
+      <location filename="../Debugger/DebugUI.py" line="758" />
       <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="778" />
-      <location filename="../Debugger/DebugUI.py" line="772" />
-      <location filename="../Debugger/DebugUI.py" line="770" />
+      <location filename="../Debugger/DebugUI.py" line="775" />
+      <location filename="../Debugger/DebugUI.py" line="769" />
+      <location filename="../Debugger/DebugUI.py" line="767" />
       <source>Previous Breakpoint</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="773" />
+      <location filename="../Debugger/DebugUI.py" line="770" />
       <source>Ctrl+Shift+PgUp</source>
       <comment>Debug|Previous Breakpoint</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="780" />
+      <location filename="../Debugger/DebugUI.py" line="777" />
       <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="796" />
-      <location filename="../Debugger/DebugUI.py" line="790" />
-      <location filename="../Debugger/DebugUI.py" line="789" />
+      <location filename="../Debugger/DebugUI.py" line="793" />
+      <location filename="../Debugger/DebugUI.py" line="787" />
+      <location filename="../Debugger/DebugUI.py" line="786" />
       <source>Clear Breakpoints</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="798" />
+      <location filename="../Debugger/DebugUI.py" line="795" />
       <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="822" />
+      <location filename="../Debugger/DebugUI.py" line="819" />
       <source>&amp;Debug</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="824" />
+      <location filename="../Debugger/DebugUI.py" line="821" />
       <source>Sta&amp;rt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="826" />
+      <location filename="../Debugger/DebugUI.py" line="823" />
       <source>&amp;Breakpoints</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="869" />
-      <location filename="../Debugger/DebugUI.py" line="867" />
+      <location filename="../Debugger/DebugUI.py" line="866" />
+      <location filename="../Debugger/DebugUI.py" line="864" />
       <source>Start</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="882" />
-      <location filename="../Debugger/DebugUI.py" line="880" />
+      <location filename="../Debugger/DebugUI.py" line="879" />
+      <location filename="../Debugger/DebugUI.py" line="877" />
       <source>Debug</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1345" />
+      <location filename="../Debugger/DebugUI.py" line="1342" />
       <source>Message: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1349" />
+      <location filename="../Debugger/DebugUI.py" line="1346" />
       <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1354" />
+      <location filename="../Debugger/DebugUI.py" line="1351" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1366" />
+      <location filename="../Debugger/DebugUI.py" line="1363" />
       <source>Program terminated</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1402" />
+      <location filename="../Debugger/DebugUI.py" line="1399" />
       <source>The program being debugged contains an unspecified syntax error.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1422" />
+      <location filename="../Debugger/DebugUI.py" line="1419" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1450" />
+      <location filename="../Debugger/DebugUI.py" line="1447" />
       <source>An unhandled exception occured. See the shell window for details.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1497" />
+      <location filename="../Debugger/DebugUI.py" line="1494" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1515" />
+      <location filename="../Debugger/DebugUI.py" line="1512" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1573" />
+      <location filename="../Debugger/DebugUI.py" line="1570" />
       <source>&lt;p&gt;The program generate the signal "{0}".&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1591" />
+      <location filename="../Debugger/DebugUI.py" line="1588" />
       <source>The program being debugged has terminated unexpectedly.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1652" />
+      <location filename="../Debugger/DebugUI.py" line="1649" />
       <source>No locals available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1699" />
+      <location filename="../Debugger/DebugUI.py" line="1696" />
       <source>Breakpoint Condition Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1700" />
+      <location filename="../Debugger/DebugUI.py" line="1697" />
       <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1757" />
+      <location filename="../Debugger/DebugUI.py" line="1754" />
       <source>Watch Expression Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1758" />
+      <location filename="../Debugger/DebugUI.py" line="1755" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1786" />
+      <location filename="../Debugger/DebugUI.py" line="1783" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1791" />
+      <location filename="../Debugger/DebugUI.py" line="1788" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1797" />
+      <location filename="../Debugger/DebugUI.py" line="1794" />
       <source>Watch expression already exists</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1962" />
-      <location filename="../Debugger/DebugUI.py" line="1953" />
+      <location filename="../Debugger/DebugUI.py" line="1959" />
+      <location filename="../Debugger/DebugUI.py" line="1950" />
       <source>Coverage Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1955" />
+      <location filename="../Debugger/DebugUI.py" line="1952" />
       <source>Coverage Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2349" />
-      <location filename="../Debugger/DebugUI.py" line="2158" />
-      <location filename="../Debugger/DebugUI.py" line="1963" />
+      <location filename="../Debugger/DebugUI.py" line="2346" />
+      <location filename="../Debugger/DebugUI.py" line="2155" />
+      <location filename="../Debugger/DebugUI.py" line="1960" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2157" />
-      <location filename="../Debugger/DebugUI.py" line="2148" />
+      <location filename="../Debugger/DebugUI.py" line="2154" />
+      <location filename="../Debugger/DebugUI.py" line="2145" />
       <source>Profile Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2150" />
+      <location filename="../Debugger/DebugUI.py" line="2147" />
       <source>Profile Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2535" />
+      <location filename="../Debugger/DebugUI.py" line="2532" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation type="unfinished" />
     </message>
@@ -10514,12 +10514,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1451" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1458" />
       <source>Debug Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1452" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1459" />
       <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -12332,7 +12332,7 @@
   <context>
     <name>Editor</name>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3527" />
+      <location filename="../QScintilla/Editor.py" line="3525" />
       <location filename="../QScintilla/Editor.py" line="470" />
       <location filename="../QScintilla/Editor.py" line="455" />
       <source>Open File</source>
@@ -12404,7 +12404,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9939" />
+      <location filename="../QScintilla/Editor.py" line="9937" />
       <location filename="../QScintilla/Editor.py" line="969" />
       <source>Generate Docstring</source>
       <translation type="unfinished" />
@@ -12682,7 +12682,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9026" />
+      <location filename="../QScintilla/Editor.py" line="9024" />
       <location filename="../QScintilla/Editor.py" line="1367" />
       <source>Check spelling...</source>
       <translation type="unfinished" />
@@ -12743,7 +12743,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6498" />
+      <location filename="../QScintilla/Editor.py" line="6496" />
       <location filename="../QScintilla/Editor.py" line="1452" />
       <source>Enable breakpoint</source>
       <translation type="unfinished" />
@@ -12905,444 +12905,444 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="2701" />
+      <location filename="../QScintilla/Editor.py" line="2699" />
       <source>Add Breakpoint</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="2702" />
+      <location filename="../QScintilla/Editor.py" line="2700" />
       <source>No Python byte code will be created for the selected line. No break point will be set!</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3056" />
+      <location filename="../QScintilla/Editor.py" line="3054" />
       <source>Printing...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="3071" />
+      <source>Printing completed</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="3073" />
-      <source>Printing completed</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="3075" />
       <source>Error while printing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3078" />
+      <location filename="../QScintilla/Editor.py" line="3076" />
       <source>Printing aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3460" />
+      <location filename="../QScintilla/Editor.py" line="3458" />
       <source>File Modified</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3461" />
+      <location filename="../QScintilla/Editor.py" line="3459" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3528" />
+      <location filename="../QScintilla/Editor.py" line="3526" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3719" />
-      <location filename="../QScintilla/Editor.py" line="3700" />
-      <location filename="../QScintilla/Editor.py" line="3660" />
+      <location filename="../QScintilla/Editor.py" line="3717" />
+      <location filename="../QScintilla/Editor.py" line="3698" />
+      <location filename="../QScintilla/Editor.py" line="3658" />
       <source>Save File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3661" />
+      <location filename="../QScintilla/Editor.py" line="3659" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3720" />
+      <location filename="../QScintilla/Editor.py" line="3718" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3864" />
+      <location filename="../QScintilla/Editor.py" line="3862" />
       <source>Save File to Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3865" />
+      <location filename="../QScintilla/Editor.py" line="3863" />
       <source>Enter the complete device file path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5653" />
+      <location filename="../QScintilla/Editor.py" line="5651" />
       <source>Autocompletion</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5654" />
+      <location filename="../QScintilla/Editor.py" line="5652" />
       <source>Autocompletion is not available because there is no autocompletion source set.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5788" />
+      <location filename="../QScintilla/Editor.py" line="5786" />
       <source>Auto-Completion Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5789" />
+      <location filename="../QScintilla/Editor.py" line="5787" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6085" />
+      <location filename="../QScintilla/Editor.py" line="6083" />
       <source>Call-Tips Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6086" />
+      <location filename="../QScintilla/Editor.py" line="6084" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6502" />
+      <location filename="../QScintilla/Editor.py" line="6500" />
       <source>Disable breakpoint</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6917" />
+      <location filename="../QScintilla/Editor.py" line="6915" />
       <source>Code Coverage</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6918" />
+      <location filename="../QScintilla/Editor.py" line="6916" />
       <source>Please select a coverage file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6993" />
-      <location filename="../QScintilla/Editor.py" line="6985" />
+      <location filename="../QScintilla/Editor.py" line="6991" />
+      <location filename="../QScintilla/Editor.py" line="6983" />
       <source>Show Code Coverage Annotations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6986" />
+      <location filename="../QScintilla/Editor.py" line="6984" />
       <source>All lines have been covered.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6994" />
+      <location filename="../QScintilla/Editor.py" line="6992" />
       <source>There is no coverage file available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7102" />
+      <location filename="../QScintilla/Editor.py" line="7100" />
       <source>Profile Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7103" />
+      <location filename="../QScintilla/Editor.py" line="7101" />
       <source>Please select a profile file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7265" />
-      <location filename="../QScintilla/Editor.py" line="7259" />
+      <location filename="../QScintilla/Editor.py" line="7263" />
+      <location filename="../QScintilla/Editor.py" line="7257" />
       <source>Syntax Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7266" />
+      <location filename="../QScintilla/Editor.py" line="7264" />
       <source>No syntax error message available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7513" />
-      <location filename="../QScintilla/Editor.py" line="7507" />
+      <location filename="../QScintilla/Editor.py" line="7511" />
+      <location filename="../QScintilla/Editor.py" line="7505" />
       <source>Warning</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7513" />
+      <location filename="../QScintilla/Editor.py" line="7511" />
       <source>No warning messages available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7592" />
+      <location filename="../QScintilla/Editor.py" line="7590" />
       <source>Info: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7608" />
-      <location filename="../QScintilla/Editor.py" line="7594" />
+      <location filename="../QScintilla/Editor.py" line="7606" />
+      <location filename="../QScintilla/Editor.py" line="7592" />
       <source>Error: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7596" />
+      <location filename="../QScintilla/Editor.py" line="7594" />
       <source>Style: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7601" />
+      <location filename="../QScintilla/Editor.py" line="7599" />
       <source>Warning: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7729" />
       <source>Macro Name</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7729" />
       <source>Select a macro name:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7757" />
+      <location filename="../QScintilla/Editor.py" line="7755" />
       <source>Load macro file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7803" />
-      <location filename="../QScintilla/Editor.py" line="7759" />
-      <source>Macro files (*.macro)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7781" />
-      <location filename="../QScintilla/Editor.py" line="7771" />
-      <source>Error loading macro</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7772" />
-      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7782" />
-      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="7801" />
+      <location filename="../QScintilla/Editor.py" line="7757" />
+      <source>Macro files (*.macro)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7779" />
+      <location filename="../QScintilla/Editor.py" line="7769" />
+      <source>Error loading macro</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7770" />
+      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7780" />
+      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7799" />
       <source>Save macro file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7819" />
+      <location filename="../QScintilla/Editor.py" line="7817" />
       <source>Save macro</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7820" />
+      <location filename="../QScintilla/Editor.py" line="7818" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7835" />
+      <location filename="../QScintilla/Editor.py" line="7833" />
       <source>Error saving macro</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7836" />
+      <location filename="../QScintilla/Editor.py" line="7834" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7849" />
+      <location filename="../QScintilla/Editor.py" line="7847" />
       <source>Start Macro Recording</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7850" />
+      <location filename="../QScintilla/Editor.py" line="7848" />
       <source>Macro recording is already active. Start new?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7876" />
+      <location filename="../QScintilla/Editor.py" line="7874" />
       <source>Macro Recording</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7877" />
+      <location filename="../QScintilla/Editor.py" line="7875" />
       <source>Enter name of the macro:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8060" />
+      <location filename="../QScintilla/Editor.py" line="8058" />
       <source>{0} (ro)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8245" />
+      <location filename="../QScintilla/Editor.py" line="8243" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8251" />
+      <location filename="../QScintilla/Editor.py" line="8249" />
       <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8258" />
+      <location filename="../QScintilla/Editor.py" line="8256" />
       <source>File changed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8351" />
+      <location filename="../QScintilla/Editor.py" line="8349" />
       <source>Reload File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8352" />
+      <location filename="../QScintilla/Editor.py" line="8350" />
       <source>&lt;p&gt;The editor contains unsaved modifications.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reloading it.&lt;/p&gt;&lt;p&gt;Shall the editor really be reloaded?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8452" />
+      <location filename="../QScintilla/Editor.py" line="8450" />
       <source>Drop Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8453" />
+      <location filename="../QScintilla/Editor.py" line="8451" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="8472" />
+      <source>Resources</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="8474" />
-      <source>Resources</source>
+      <source>Add file...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="8475" />
+      <source>Add files...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="8476" />
-      <source>Add file...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="8477" />
-      <source>Add files...</source>
+      <source>Add aliased file...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="8478" />
-      <source>Add aliased file...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="8480" />
       <source>Add localized resource...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8483" />
+      <location filename="../QScintilla/Editor.py" line="8481" />
       <source>Add resource frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8503" />
+      <location filename="../QScintilla/Editor.py" line="8501" />
       <source>Add file resource</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8517" />
+      <location filename="../QScintilla/Editor.py" line="8515" />
       <source>Add file resources</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8541" />
-      <location filename="../QScintilla/Editor.py" line="8535" />
+      <location filename="../QScintilla/Editor.py" line="8539" />
+      <location filename="../QScintilla/Editor.py" line="8533" />
       <source>Add aliased file resource</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8542" />
+      <location filename="../QScintilla/Editor.py" line="8540" />
       <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8617" />
+      <location filename="../QScintilla/Editor.py" line="8615" />
       <source>Package Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8618" />
+      <location filename="../QScintilla/Editor.py" line="8616" />
       <source>Include class attributes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8638" />
+      <location filename="../QScintilla/Editor.py" line="8636" />
       <source>Imports Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8639" />
+      <location filename="../QScintilla/Editor.py" line="8637" />
       <source>Include imports from external modules?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8658" />
+      <location filename="../QScintilla/Editor.py" line="8656" />
       <source>Application Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8659" />
+      <location filename="../QScintilla/Editor.py" line="8657" />
       <source>Include module names?</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="9028" />
+      <source>Add to dictionary</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="9030" />
-      <source>Add to dictionary</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="9032" />
       <source>Ignore All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9479" />
+      <location filename="../QScintilla/Editor.py" line="9477" />
       <source>Sort Lines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9480" />
+      <location filename="../QScintilla/Editor.py" line="9478" />
       <source>The selection contains illegal data for a numerical sort.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9573" />
+      <location filename="../QScintilla/Editor.py" line="9571" />
       <source>Register Mouse Click Handler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9574" />
+      <location filename="../QScintilla/Editor.py" line="9572" />
       <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9667" />
+      <location filename="../QScintilla/Editor.py" line="9665" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9673" />
+      <location filename="../QScintilla/Editor.py" line="9671" />
       <source>{0:4d}    {1}
     =&gt;  {2}</source>
       <comment>line number, source code, file name</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9742" />
+      <location filename="../QScintilla/Editor.py" line="9740" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9743" />
+      <location filename="../QScintilla/Editor.py" line="9741" />
       <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -18518,12 +18518,12 @@
   <context>
     <name>EricApplication</name>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="227" />
+      <location filename="../EricWidgets/EricApplication.py" line="226" />
       <source>Loading Style Sheet</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="230" />
+      <location filename="../EricWidgets/EricApplication.py" line="229" />
       <source>&lt;p&gt;The Qt Style Sheet file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -18669,12 +18669,12 @@
   <context>
     <name>EricJsonServer</name>
     <message>
-      <location filename="../EricNetwork/EricJsonServer.py" line="185" />
+      <location filename="../EricNetwork/EricJsonServer.py" line="199" />
       <source>JSON Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricNetwork/EricJsonServer.py" line="186" />
+      <location filename="../EricNetwork/EricJsonServer.py" line="200" />
       <source>&lt;p&gt;The response received from the client could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -19145,39 +19145,39 @@
   <context>
     <name>EricPathPickerBase</name>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="178" />
-      <location filename="../EricWidgets/EricPathPicker.py" line="107" />
-      <location filename="../EricWidgets/EricPathPicker.py" line="100" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="177" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="106" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="99" />
       <source>Enter Path Name</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="175" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="174" />
       <source>Enter Path Names separated by ';'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="520" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="519" />
       <source>Choose a file to open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="522" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="521" />
       <source>Choose files to open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="524" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="523" />
       <source>Choose files and directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="530" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="529" />
       <source>Choose a file to save</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="532" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="531" />
       <source>Choose a directory</source>
       <translation type="unfinished" />
     </message>
@@ -19955,12 +19955,12 @@
   <context>
     <name>EricTldExtractor</name>
     <message>
-      <location filename="../EricNetwork/EricTldExtractor.py" line="294" />
+      <location filename="../EricNetwork/EricTldExtractor.py" line="293" />
       <source>TLD Data File not found</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricNetwork/EricTldExtractor.py" line="295" />
+      <location filename="../EricNetwork/EricTldExtractor.py" line="294" />
       <source>&lt;p&gt;The file 'effective_tld_names.dat' was not found!&lt;br/&gt;You can download it from '&lt;a href="{0}"&gt;&lt;b&gt;here&lt;/b&gt;&lt;/a&gt;' to one of the following paths:&lt;/p&gt;&lt;ul&gt;{1}&lt;/ul&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -31836,77 +31836,77 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="573" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="575" />
       <source>Backward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="578" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="580" />
       <source>Forward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="583" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="585" />
       <source>Reload</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="595" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="597" />
       <source>Copy Page URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="601" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="603" />
       <source>Bookmark Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="609" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="611" />
       <source>Zoom in</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="614" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="616" />
       <source>Zoom out</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="619" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="621" />
       <source>Zoom reset</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="625" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="627" />
       <source>Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="631" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="633" />
       <source>Select All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="638" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="640" />
       <source>Close</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="643" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="645" />
       <source>Close Others</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="661" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="663" />
       <source>Open Link in New Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="668" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="670" />
       <source>Open Link in Background Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="676" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="678" />
       <source>Copy URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
@@ -31914,184 +31914,184 @@
   <context>
     <name>HelpViewerWidget</name>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="126" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="127" />
       <source>Open a local file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="132" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="133" />
       <source>Select action from menu</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="148" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="149" />
       <source>Move one page backward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="153" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="154" />
       <source>Move one page forward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="165" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="166" />
       <source>Reload the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="176" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="177" />
       <source>Zoom in on the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="182" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="183" />
       <source>Zoom out on the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="189" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="190" />
       <source>Reset the zoom level of the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="201" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="202" />
       <source>Add a new empty page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="207" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="208" />
       <source>Close the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="218" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="219" />
       <source>Show or hide the search pane</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="294" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="295" />
       <source>Show list of open pages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="297" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="298" />
       <source>Show the table of contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="300" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="301" />
       <source>Show the help document index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="303" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="304" />
       <source>Show the help search window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="306" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="307" />
       <source>Show list of bookmarks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
-      <source>eric API Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="445" />
-      <source>Python 3 Documentation</source>
+      <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="446" />
-      <source>Qt5 Documentation</source>
+      <source>Python 3 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="447" />
-      <source>Qt6 Documentation</source>
+      <source>Qt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
-      <source>PyQt5 Documentation</source>
+      <source>Qt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
-      <source>PyQt6 Documentation</source>
+      <source>PyQt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
-      <source>PySide2 Documentation</source>
+      <source>PyQt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
+      <source>PySide2 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="452" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="508" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="509" />
       <source>Open HTML File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="510" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="511" />
       <source>HTML Files (*.htm *.html);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="697" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="698" />
       <source>Help Engine</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="721" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="722" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="732" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="733" />
       <source>eric Help Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="757" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="758" />
       <source>Manage QtHelp Documents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="760" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="761" />
       <source>Reindex Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="765" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="766" />
       <source>Configure Help Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="858" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="838" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="859" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="839" />
       <source>Clear History</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="961" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="962" />
       <source>Updating search index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1019" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1020" />
       <source>Filtered by: </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1055" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1050" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1056" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1051" />
       <source>Unfiltered</source>
       <translation type="unfinished" />
     </message>
@@ -41614,22 +41614,22 @@
   <context>
     <name>Histedit</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="76" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="75" />
       <source>Starting histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="104" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="102" />
       <source>Continue histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="131" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="129" />
       <source>Abort histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="159" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="157" />
       <source>Edit Plan</source>
       <translation type="unfinished" />
     </message>
@@ -49692,17 +49692,17 @@
   <context>
     <name>LogViewerPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="36" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="33" />
       <source>&lt;b&gt;Message Filters for Standard Output&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stdout.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="43" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="40" />
       <source>&lt;b&gt;Message Filters for Standard Error &lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stderr.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="50" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="47" />
       <source>&lt;b&gt;Message Filters for both&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stdout or stderr.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -51260,8 +51260,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="364" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="347" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="361" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="344" />
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.ui" line="0" />
       <source>Press to show the password</source>
@@ -51545,66 +51545,66 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="56" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="53" />
       <source>Automatic</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="55" />
+      <source>Light</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="58" />
-      <source>Light</source>
+      <source>Dark</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="61" />
-      <source>Dark</source>
+      <source>Blue Cerulean</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="64" />
-      <source>Blue Cerulean</source>
+      <source>Brown Sand</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="67" />
-      <source>Brown Sand</source>
+      <source>Blue NCS</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="70" />
-      <source>Blue NCS</source>
+      <source>High Contrast</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="73" />
-      <source>High Contrast</source>
+      <source>Blue Icy</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="76" />
-      <source>Blue Icy</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="79" />
       <source>Qt</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="90" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="88" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="85" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="82" />
+      <source>All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="93" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="91" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="88" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="85" />
-      <source>All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="96" />
       <source>open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="360" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="343" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="357" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="340" />
       <source>Press to hide the password</source>
       <translation type="unfinished" />
     </message>
@@ -57809,62 +57809,62 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="44" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="42" />
       <source>Enter requirements file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="47" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="45" />
       <source>Press to select the requirements file through a file selection dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="50" />
+      <source>Text Files (*.txt);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="52" />
-      <source>Text Files (*.txt);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="54" />
       <source>Enter 'pyproject.toml' file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="57" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="55" />
       <source>Press to select the 'pyproject.toml' file through a file selection dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="60" />
+      <source>TOML Files (*.toml);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="62" />
-      <source>TOML Files (*.toml);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="64" />
       <source>Enter package file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="67" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="65" />
       <source>Press to select the package file through a file selection dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="73" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="71" />
       <source>Python Wheel (*.whl);;Archive Files (*.tar.gz *.zip);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="80" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="78" />
       <source>Enter file name:</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="81" />
+      <source>Press to select a file through a file selection dialog.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="83" />
-      <source>Press to select a file through a file selection dialog.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="85" />
       <source>All Files (*)</source>
       <translation type="unfinished" />
     </message>
@@ -60289,18 +60289,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1901" />
+      <location filename="../Preferences/__init__.py" line="1907" />
       <source>Export Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1930" />
-      <location filename="../Preferences/__init__.py" line="1903" />
+      <location filename="../Preferences/__init__.py" line="1936" />
+      <location filename="../Preferences/__init__.py" line="1909" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1928" />
+      <location filename="../Preferences/__init__.py" line="1934" />
       <source>Import Preferences</source>
       <translation type="unfinished" />
     </message>
@@ -61971,9 +61971,9 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6752" />
-      <location filename="../Project/Project.py" line="6723" />
-      <location filename="../Project/Project.py" line="6677" />
+      <location filename="../Project/Project.py" line="6746" />
+      <location filename="../Project/Project.py" line="6717" />
+      <location filename="../Project/Project.py" line="6671" />
       <location filename="../Project/Project.py" line="4820" />
       <source>Execute Make</source>
       <translation type="unfinished" />
@@ -61994,7 +61994,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6729" />
+      <location filename="../Project/Project.py" line="6723" />
       <location filename="../Project/Project.py" line="4839" />
       <source>Test for Changes</source>
       <translation type="unfinished" />
@@ -62529,37 +62529,37 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6678" />
+      <location filename="../Project/Project.py" line="6672" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6724" />
+      <location filename="../Project/Project.py" line="6718" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6732" />
+      <location filename="../Project/Project.py" line="6726" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6737" />
+      <location filename="../Project/Project.py" line="6731" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6753" />
+      <location filename="../Project/Project.py" line="6747" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7172" />
+      <location filename="../Project/Project.py" line="7166" />
       <source>Interpreter Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7173" />
+      <location filename="../Project/Project.py" line="7167" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation type="unfinished" />
     </message>
@@ -73101,7 +73101,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2178" />
+      <location filename="../QScintilla/Shell.py" line="2179" />
       <location filename="../QScintilla/Shell.py" line="1907" />
       <location filename="../QScintilla/Shell.py" line="1906" />
       <location filename="../QScintilla/Shell.py" line="401" />
@@ -73230,59 +73230,59 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2329" />
+      <location filename="../QScintilla/Shell.py" line="2330" />
       <source>Drop Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2330" />
+      <location filename="../QScintilla/Shell.py" line="2331" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2576" />
-      <location filename="../QScintilla/Shell.py" line="2562" />
-      <location filename="../QScintilla/Shell.py" line="2541" />
-      <source>Save Shell Contents</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="2543" />
-      <source>Text Files (*.txt);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="2563" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/Shell.py" line="2577" />
+      <location filename="../QScintilla/Shell.py" line="2563" />
+      <location filename="../QScintilla/Shell.py" line="2542" />
+      <source>Save Shell Contents</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2544" />
+      <source>Text Files (*.txt);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2564" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2578" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2591" />
+      <location filename="../QScintilla/Shell.py" line="2592" />
       <source>&lt;tr&gt;&lt;td&gt;%restart&lt;/td&gt;&lt;td&gt;Kill the shell and start a new one.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%clear&lt;/td&gt;&lt;td&gt;Clear the display of the shell window.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%start [environment]&lt;/td&gt;&lt;td&gt;Start a shell for a virtual environment with the given name. If no name is given, a default shell is started.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%envs&lt;br/&gt;%environments&lt;/td&gt;&lt;td&gt;Show a list of known virtual environment names.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%which&lt;/td&gt;&lt;td&gt;Show the name of the active virtual environment.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%hist [n]&lt;br/&gt;%history [n]&lt;/td&gt;&lt;td&gt;Show the most recent 'n' entries of the history. If 'n' is not given, show all entries.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%shist&lt;br/&gt;%shistory&lt;br/&gt;%select_history&lt;/td&gt;&lt;td&gt;Select a command from the history.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%chist&lt;br/&gt;%chistory&lt;br/&gt;%clear_history&lt;/td&gt;&lt;td&gt;Clear the current history after confirmation.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%help&lt;/td&gt;&lt;td&gt;Show this help text.&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2613" />
+      <location filename="../QScintilla/Shell.py" line="2614" />
       <source>&lt;tr&gt;&lt;td&gt;%quit&lt;br/&gt;%quit()&lt;br/&gt;%exit&lt;br/&gt;%exit()&lt;/td&gt;&lt;td&gt;Exit the application.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;These commands are available through the window menus as well.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2621" />
+      <location filename="../QScintilla/Shell.py" line="2622" />
       <source>&lt;/table&gt;&lt;p&gt;These commands are available through the context menu as well.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2628" />
-      <source>Shell Special Commands</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/Shell.py" line="2629" />
+      <source>Shell Special Commands</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2630" />
       <source>The shell supports these special commands:</source>
       <translation type="unfinished" />
     </message>
@@ -88587,2544 +88587,2564 @@
   <context>
     <name>UserInterface</name>
     <message>
-      <location filename="../UI/UserInterface.py" line="308" />
+      <location filename="../UI/UserInterface.py" line="314" />
       <source>Initializing Basic Services...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="343" />
+      <location filename="../UI/UserInterface.py" line="349" />
       <source>Initializing Plugin Manager...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="350" />
+      <location filename="../UI/UserInterface.py" line="356" />
       <source>Generating Main User Interface...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="408" />
+      <location filename="../UI/UserInterface.py" line="414" />
       <source>Setting up signal/slot-connections...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="602" />
+      <location filename="../UI/UserInterface.py" line="607" />
       <source>Initializing Tools...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="613" />
+      <location filename="../UI/UserInterface.py" line="618" />
       <source>Registering Objects...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="647" />
+      <location filename="../UI/UserInterface.py" line="652" />
       <source>Initializing Actions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="649" />
+      <location filename="../UI/UserInterface.py" line="654" />
       <source>Initializing Menus...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="651" />
+      <location filename="../UI/UserInterface.py" line="656" />
       <source>Initializing Toolbars...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="653" />
+      <location filename="../UI/UserInterface.py" line="658" />
       <source>Initializing Statusbar...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="680" />
+      <location filename="../UI/UserInterface.py" line="685" />
       <source>Initializing Single Application Server...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="686" />
-      <source>Initializing Plugins...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="689" />
-      <source>Activating Plugins...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="691" />
-      <source>Generating Plugins Toolbars...</source>
+      <source>Initializing Plugins...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="694" />
+      <source>Activating Plugins...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="696" />
+      <source>Generating Plugins Toolbars...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="699" />
       <source>Cleaning Plugins Download Area...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="704" />
+      <location filename="../UI/UserInterface.py" line="709" />
       <source>Restoring Toolbarmanager...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="712" />
+      <location filename="../UI/UserInterface.py" line="717" />
       <source>Setting View Profile...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="725" />
-      <source>Reading Tasks...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="730" />
-      <source>Reading Templates...</source>
+      <source>Reading Tasks...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="735" />
+      <source>Reading Templates...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="740" />
       <source>Starting Debugger...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2195" />
-      <location filename="../UI/UserInterface.py" line="1086" />
+      <location filename="../UI/UserInterface.py" line="2200" />
+      <location filename="../UI/UserInterface.py" line="1091" />
       <source>Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2241" />
-      <location filename="../UI/UserInterface.py" line="1096" />
+      <location filename="../UI/UserInterface.py" line="2246" />
+      <location filename="../UI/UserInterface.py" line="1101" />
       <source>Horizontal Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2218" />
-      <location filename="../UI/UserInterface.py" line="1107" />
+      <location filename="../UI/UserInterface.py" line="2223" />
+      <location filename="../UI/UserInterface.py" line="1112" />
       <source>Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2037" />
-      <location filename="../UI/UserInterface.py" line="1301" />
-      <location filename="../UI/UserInterface.py" line="1117" />
+      <location filename="../UI/UserInterface.py" line="2042" />
+      <location filename="../UI/UserInterface.py" line="1306" />
+      <location filename="../UI/UserInterface.py" line="1122" />
       <source>Multiproject-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2015" />
-      <location filename="../UI/UserInterface.py" line="1307" />
-      <location filename="../UI/UserInterface.py" line="1123" />
+      <location filename="../UI/UserInterface.py" line="2020" />
+      <location filename="../UI/UserInterface.py" line="1312" />
+      <location filename="../UI/UserInterface.py" line="1128" />
       <source>Project-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2577" />
-      <location filename="../UI/UserInterface.py" line="2576" />
-      <location filename="../UI/UserInterface.py" line="1314" />
-      <location filename="../UI/UserInterface.py" line="1130" />
+      <location filename="../UI/UserInterface.py" line="2582" />
+      <location filename="../UI/UserInterface.py" line="2581" />
+      <location filename="../UI/UserInterface.py" line="1319" />
+      <location filename="../UI/UserInterface.py" line="1135" />
       <source>Find/Replace In Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2600" />
-      <location filename="../UI/UserInterface.py" line="2599" />
-      <location filename="../UI/UserInterface.py" line="1321" />
-      <location filename="../UI/UserInterface.py" line="1137" />
+      <location filename="../UI/UserInterface.py" line="2605" />
+      <location filename="../UI/UserInterface.py" line="2604" />
+      <location filename="../UI/UserInterface.py" line="1326" />
+      <location filename="../UI/UserInterface.py" line="1142" />
       <source>Find File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1327" />
-      <location filename="../UI/UserInterface.py" line="1143" />
+      <location filename="../UI/UserInterface.py" line="1332" />
+      <location filename="../UI/UserInterface.py" line="1148" />
       <source>VCS Status</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2170" />
-      <location filename="../UI/UserInterface.py" line="1334" />
-      <location filename="../UI/UserInterface.py" line="1150" />
+      <location filename="../UI/UserInterface.py" line="2175" />
+      <location filename="../UI/UserInterface.py" line="1339" />
+      <location filename="../UI/UserInterface.py" line="1155" />
       <source>Template-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2103" />
-      <location filename="../UI/UserInterface.py" line="1341" />
-      <location filename="../UI/UserInterface.py" line="1157" />
+      <location filename="../UI/UserInterface.py" line="2108" />
+      <location filename="../UI/UserInterface.py" line="1346" />
+      <location filename="../UI/UserInterface.py" line="1162" />
       <source>File-Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1348" />
-      <location filename="../UI/UserInterface.py" line="1164" />
+      <location filename="../UI/UserInterface.py" line="1353" />
+      <location filename="../UI/UserInterface.py" line="1169" />
       <source>Symbols</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2059" />
-      <location filename="../UI/UserInterface.py" line="1370" />
-      <location filename="../UI/UserInterface.py" line="1364" />
-      <location filename="../UI/UserInterface.py" line="1174" />
+      <location filename="../UI/UserInterface.py" line="2064" />
+      <location filename="../UI/UserInterface.py" line="1375" />
+      <location filename="../UI/UserInterface.py" line="1369" />
+      <location filename="../UI/UserInterface.py" line="1179" />
       <source>Debug-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2431" />
-      <location filename="../UI/UserInterface.py" line="2430" />
-      <location filename="../UI/UserInterface.py" line="1377" />
-      <location filename="../UI/UserInterface.py" line="1181" />
+      <location filename="../UI/UserInterface.py" line="2436" />
+      <location filename="../UI/UserInterface.py" line="2435" />
+      <location filename="../UI/UserInterface.py" line="1382" />
+      <location filename="../UI/UserInterface.py" line="1186" />
       <source>Code Documentation Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2646" />
-      <location filename="../UI/UserInterface.py" line="2645" />
-      <location filename="../UI/UserInterface.py" line="1384" />
-      <location filename="../UI/UserInterface.py" line="1188" />
+      <location filename="../UI/UserInterface.py" line="2651" />
+      <location filename="../UI/UserInterface.py" line="2650" />
+      <location filename="../UI/UserInterface.py" line="1389" />
+      <location filename="../UI/UserInterface.py" line="1193" />
       <source>Help Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3550" />
-      <location filename="../UI/UserInterface.py" line="2526" />
-      <location filename="../UI/UserInterface.py" line="2525" />
-      <location filename="../UI/UserInterface.py" line="1390" />
-      <location filename="../UI/UserInterface.py" line="1194" />
+      <location filename="../UI/UserInterface.py" line="3575" />
+      <location filename="../UI/UserInterface.py" line="2531" />
+      <location filename="../UI/UserInterface.py" line="2530" />
+      <location filename="../UI/UserInterface.py" line="1395" />
+      <location filename="../UI/UserInterface.py" line="1199" />
       <source>Plugin Repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2550" />
-      <location filename="../UI/UserInterface.py" line="2549" />
-      <location filename="../UI/UserInterface.py" line="1396" />
-      <location filename="../UI/UserInterface.py" line="1200" />
-      <source>Virtual Environments</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2458" />
-      <location filename="../UI/UserInterface.py" line="2457" />
+      <location filename="../UI/UserInterface.py" line="2555" />
+      <location filename="../UI/UserInterface.py" line="2554" />
       <location filename="../UI/UserInterface.py" line="1401" />
       <location filename="../UI/UserInterface.py" line="1205" />
+      <source>Virtual Environments</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2463" />
+      <location filename="../UI/UserInterface.py" line="2462" />
+      <location filename="../UI/UserInterface.py" line="1406" />
+      <location filename="../UI/UserInterface.py" line="1210" />
       <source>PyPI</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2480" />
-      <location filename="../UI/UserInterface.py" line="2479" />
-      <location filename="../UI/UserInterface.py" line="1408" />
-      <location filename="../UI/UserInterface.py" line="1210" />
+      <location filename="../UI/UserInterface.py" line="2485" />
+      <location filename="../UI/UserInterface.py" line="2484" />
+      <location filename="../UI/UserInterface.py" line="1413" />
+      <location filename="../UI/UserInterface.py" line="1215" />
       <source>Conda</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1415" />
-      <location filename="../UI/UserInterface.py" line="1217" />
+      <location filename="../UI/UserInterface.py" line="1420" />
+      <location filename="../UI/UserInterface.py" line="1222" />
       <source>Cooperation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2358" />
-      <location filename="../UI/UserInterface.py" line="1419" />
-      <location filename="../UI/UserInterface.py" line="1222" />
+      <location filename="../UI/UserInterface.py" line="2363" />
+      <location filename="../UI/UserInterface.py" line="1424" />
+      <location filename="../UI/UserInterface.py" line="1227" />
       <source>IRC</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2502" />
-      <location filename="../UI/UserInterface.py" line="2501" />
-      <location filename="../UI/UserInterface.py" line="1425" />
-      <location filename="../UI/UserInterface.py" line="1229" />
+      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="2506" />
+      <location filename="../UI/UserInterface.py" line="1430" />
+      <location filename="../UI/UserInterface.py" line="1234" />
       <source>MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2081" />
-      <location filename="../UI/UserInterface.py" line="1433" />
-      <location filename="../UI/UserInterface.py" line="1237" />
+      <location filename="../UI/UserInterface.py" line="2086" />
+      <location filename="../UI/UserInterface.py" line="1438" />
+      <location filename="../UI/UserInterface.py" line="1242" />
       <source>Shell</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2147" />
-      <location filename="../UI/UserInterface.py" line="1439" />
-      <location filename="../UI/UserInterface.py" line="1241" />
+      <location filename="../UI/UserInterface.py" line="2152" />
+      <location filename="../UI/UserInterface.py" line="1444" />
+      <location filename="../UI/UserInterface.py" line="1246" />
       <source>Task-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2125" />
-      <location filename="../UI/UserInterface.py" line="1445" />
-      <location filename="../UI/UserInterface.py" line="1245" />
+      <location filename="../UI/UserInterface.py" line="2130" />
+      <location filename="../UI/UserInterface.py" line="1450" />
+      <location filename="../UI/UserInterface.py" line="1250" />
       <source>Log-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1452" />
-      <location filename="../UI/UserInterface.py" line="1252" />
+      <location filename="../UI/UserInterface.py" line="1457" />
+      <location filename="../UI/UserInterface.py" line="1257" />
       <source>Numbers</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1827" />
+      <location filename="../UI/UserInterface.py" line="1832" />
       <source>{0} - Passive Mode</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1836" />
-      <location filename="../UI/UserInterface.py" line="1830" />
+      <location filename="../UI/UserInterface.py" line="1841" />
+      <location filename="../UI/UserInterface.py" line="1835" />
       <source>{0} - {1} - Passive Mode</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1842" />
+      <location filename="../UI/UserInterface.py" line="1847" />
       <source>{0} - {1} - {2} - Passive Mode</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1868" />
+      <location filename="../UI/UserInterface.py" line="1873" />
       <source>Quit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1870" />
+      <location filename="../UI/UserInterface.py" line="1875" />
       <source>&amp;Quit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1871" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1876" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1881" />
       <source>Quit the IDE</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1878" />
+      <location filename="../UI/UserInterface.py" line="1883" />
       <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1892" />
-      <location filename="../UI/UserInterface.py" line="1890" />
+      <location filename="../UI/UserInterface.py" line="1897" />
+      <location filename="../UI/UserInterface.py" line="1895" />
       <source>Restart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1893" />
-      <source>Ctrl+Shift+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1898" />
+      <source>Ctrl+Shift+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1903" />
       <source>Restart the IDE</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1900" />
+      <location filename="../UI/UserInterface.py" line="1905" />
       <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1918" />
-      <location filename="../UI/UserInterface.py" line="1911" />
+      <location filename="../UI/UserInterface.py" line="1923" />
+      <location filename="../UI/UserInterface.py" line="1916" />
       <source>Save session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1912" />
+      <location filename="../UI/UserInterface.py" line="1917" />
       <source>Save session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1920" />
+      <location filename="../UI/UserInterface.py" line="1925" />
       <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7729" />
-      <location filename="../UI/UserInterface.py" line="1937" />
-      <location filename="../UI/UserInterface.py" line="1930" />
+      <location filename="../UI/UserInterface.py" line="7767" />
+      <location filename="../UI/UserInterface.py" line="1942" />
+      <location filename="../UI/UserInterface.py" line="1935" />
       <source>Load session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1931" />
+      <location filename="../UI/UserInterface.py" line="1936" />
       <source>Load session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1939" />
+      <location filename="../UI/UserInterface.py" line="1944" />
       <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1949" />
+      <location filename="../UI/UserInterface.py" line="1954" />
       <source>New Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1951" />
+      <location filename="../UI/UserInterface.py" line="1956" />
       <source>New &amp;Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1952" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1957" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1962" />
       <source>Open a new eric instance</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1959" />
+      <location filename="../UI/UserInterface.py" line="1964" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1973" />
-      <location filename="../UI/UserInterface.py" line="1971" />
+      <location filename="../UI/UserInterface.py" line="1978" />
+      <location filename="../UI/UserInterface.py" line="1976" />
       <source>Edit Profile</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1980" />
+      <location filename="../UI/UserInterface.py" line="1985" />
       <source>Activate the edit view profile</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1982" />
+      <location filename="../UI/UserInterface.py" line="1987" />
       <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1995" />
-      <location filename="../UI/UserInterface.py" line="1993" />
+      <location filename="../UI/UserInterface.py" line="2000" />
+      <location filename="../UI/UserInterface.py" line="1998" />
       <source>Debug Profile</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2002" />
+      <location filename="../UI/UserInterface.py" line="2007" />
       <source>Activate the debug view profile</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2004" />
+      <location filename="../UI/UserInterface.py" line="2009" />
       <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2016" />
+      <location filename="../UI/UserInterface.py" line="2021" />
       <source>&amp;Project-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2017" />
+      <location filename="../UI/UserInterface.py" line="2022" />
       <source>Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2023" />
+      <location filename="../UI/UserInterface.py" line="2028" />
       <source>Switch the input focus to the Project-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2026" />
+      <location filename="../UI/UserInterface.py" line="2031" />
       <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2038" />
+      <location filename="../UI/UserInterface.py" line="2043" />
       <source>&amp;Multiproject-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2039" />
+      <location filename="../UI/UserInterface.py" line="2044" />
       <source>Alt+Shift+M</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2045" />
+      <location filename="../UI/UserInterface.py" line="2050" />
       <source>Switch the input focus to the Multiproject-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2048" />
+      <location filename="../UI/UserInterface.py" line="2053" />
       <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2060" />
+      <location filename="../UI/UserInterface.py" line="2065" />
       <source>&amp;Debug-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2061" />
+      <location filename="../UI/UserInterface.py" line="2066" />
       <source>Alt+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2067" />
+      <location filename="../UI/UserInterface.py" line="2072" />
       <source>Switch the input focus to the Debug-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2070" />
+      <location filename="../UI/UserInterface.py" line="2075" />
       <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2082" />
+      <location filename="../UI/UserInterface.py" line="2087" />
       <source>&amp;Shell</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2083" />
+      <location filename="../UI/UserInterface.py" line="2088" />
       <source>Alt+Shift+S</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2089" />
+      <location filename="../UI/UserInterface.py" line="2094" />
       <source>Switch the input focus to the Shell window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2092" />
+      <location filename="../UI/UserInterface.py" line="2097" />
       <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2104" />
+      <location filename="../UI/UserInterface.py" line="2109" />
       <source>&amp;File-Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2105" />
+      <location filename="../UI/UserInterface.py" line="2110" />
       <source>Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2111" />
+      <location filename="../UI/UserInterface.py" line="2116" />
       <source>Switch the input focus to the File-Browser window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2114" />
+      <location filename="../UI/UserInterface.py" line="2119" />
       <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2126" />
+      <location filename="../UI/UserInterface.py" line="2131" />
       <source>Lo&amp;g-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2127" />
+      <location filename="../UI/UserInterface.py" line="2132" />
       <source>Alt+Shift+G</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2133" />
+      <location filename="../UI/UserInterface.py" line="2138" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2136" />
+      <location filename="../UI/UserInterface.py" line="2141" />
       <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2148" />
+      <location filename="../UI/UserInterface.py" line="2153" />
       <source>&amp;Task-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2149" />
+      <location filename="../UI/UserInterface.py" line="2154" />
       <source>Alt+Shift+T</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2155" />
+      <location filename="../UI/UserInterface.py" line="2160" />
       <source>Switch the input focus to the Task-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2158" />
+      <location filename="../UI/UserInterface.py" line="2163" />
       <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2171" />
+      <location filename="../UI/UserInterface.py" line="2176" />
       <source>Templ&amp;ate-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2172" />
+      <location filename="../UI/UserInterface.py" line="2177" />
       <source>Alt+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2178" />
+      <location filename="../UI/UserInterface.py" line="2183" />
       <source>Switch the input focus to the Template-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2181" />
+      <location filename="../UI/UserInterface.py" line="2186" />
       <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2196" />
+      <location filename="../UI/UserInterface.py" line="2201" />
       <source>&amp;Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2203" />
+      <location filename="../UI/UserInterface.py" line="2208" />
       <source>Toggle the Left Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2205" />
+      <location filename="../UI/UserInterface.py" line="2210" />
       <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2219" />
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&amp;Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2226" />
+      <location filename="../UI/UserInterface.py" line="2231" />
       <source>Toggle the Right Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2228" />
+      <location filename="../UI/UserInterface.py" line="2233" />
       <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2242" />
+      <location filename="../UI/UserInterface.py" line="2247" />
       <source>&amp;Horizontal Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2249" />
+      <location filename="../UI/UserInterface.py" line="2254" />
       <source>Toggle the Horizontal Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2251" />
+      <location filename="../UI/UserInterface.py" line="2256" />
       <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2264" />
+      <location filename="../UI/UserInterface.py" line="2269" />
       <source>Left Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2265" />
+      <location filename="../UI/UserInterface.py" line="2270" />
       <source>&amp;Left Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2272" />
+      <location filename="../UI/UserInterface.py" line="2277" />
       <source>Toggle the left sidebar window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2274" />
+      <location filename="../UI/UserInterface.py" line="2279" />
       <source>&lt;b&gt;Toggle the left sidebar window&lt;/b&gt;&lt;p&gt;If the left sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2287" />
+      <location filename="../UI/UserInterface.py" line="2292" />
       <source>Right Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2288" />
+      <location filename="../UI/UserInterface.py" line="2293" />
       <source>&amp;Right Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2295" />
+      <location filename="../UI/UserInterface.py" line="2300" />
       <source>Toggle the right sidebar window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2297" />
+      <location filename="../UI/UserInterface.py" line="2302" />
       <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2310" />
+      <location filename="../UI/UserInterface.py" line="2315" />
       <source>Bottom Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2311" />
+      <location filename="../UI/UserInterface.py" line="2316" />
       <source>&amp;Bottom Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2318" />
+      <location filename="../UI/UserInterface.py" line="2323" />
       <source>Toggle the bottom sidebar window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2320" />
+      <location filename="../UI/UserInterface.py" line="2325" />
       <source>&lt;b&gt;Toggle the bottom sidebar window&lt;/b&gt;&lt;p&gt;If the bottom sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2333" />
+      <location filename="../UI/UserInterface.py" line="2338" />
       <source>Cooperation-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2334" />
+      <location filename="../UI/UserInterface.py" line="2339" />
       <source>Co&amp;operation-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2335" />
+      <location filename="../UI/UserInterface.py" line="2340" />
       <source>Alt+Shift+O</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2341" />
+      <location filename="../UI/UserInterface.py" line="2346" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2344" />
+      <location filename="../UI/UserInterface.py" line="2349" />
       <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2359" />
+      <location filename="../UI/UserInterface.py" line="2364" />
       <source>&amp;IRC</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2360" />
+      <location filename="../UI/UserInterface.py" line="2365" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2366" />
+      <location filename="../UI/UserInterface.py" line="2371" />
       <source>Switch the input focus to the IRC window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2369" />
+      <location filename="../UI/UserInterface.py" line="2374" />
       <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2380" />
+      <location filename="../UI/UserInterface.py" line="2385" />
       <source>Symbols-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2381" />
+      <location filename="../UI/UserInterface.py" line="2386" />
       <source>S&amp;ymbols-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2382" />
+      <location filename="../UI/UserInterface.py" line="2387" />
       <source>Alt+Shift+Y</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2388" />
+      <location filename="../UI/UserInterface.py" line="2393" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2391" />
+      <location filename="../UI/UserInterface.py" line="2396" />
       <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2405" />
+      <location filename="../UI/UserInterface.py" line="2410" />
       <source>Numbers-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2406" />
+      <location filename="../UI/UserInterface.py" line="2411" />
       <source>Num&amp;bers-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2407" />
+      <location filename="../UI/UserInterface.py" line="2412" />
       <source>Alt+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2413" />
+      <location filename="../UI/UserInterface.py" line="2418" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2416" />
+      <location filename="../UI/UserInterface.py" line="2421" />
       <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2432" />
+      <location filename="../UI/UserInterface.py" line="2437" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2438" />
-      <source>Switch the input focus to the Code Documentation Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2443" />
+      <source>Switch the input focus to the Code Documentation Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2448" />
       <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2459" />
+      <location filename="../UI/UserInterface.py" line="2464" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2465" />
+      <location filename="../UI/UserInterface.py" line="2470" />
       <source>Switch the input focus to the PyPI window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2468" />
+      <location filename="../UI/UserInterface.py" line="2473" />
       <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2481" />
+      <location filename="../UI/UserInterface.py" line="2486" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2487" />
+      <location filename="../UI/UserInterface.py" line="2492" />
       <source>Switch the input focus to the Conda window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2490" />
+      <location filename="../UI/UserInterface.py" line="2495" />
       <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2503" />
+      <location filename="../UI/UserInterface.py" line="2508" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2509" />
+      <location filename="../UI/UserInterface.py" line="2514" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2512" />
+      <location filename="../UI/UserInterface.py" line="2517" />
       <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2527" />
+      <location filename="../UI/UserInterface.py" line="2532" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2533" />
+      <location filename="../UI/UserInterface.py" line="2538" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2536" />
+      <location filename="../UI/UserInterface.py" line="2541" />
       <source>&lt;b&gt;Plugin Repository&lt;/b&gt;&lt;p&gt;This switches the input focus to the Plugin Repository window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2551" />
+      <location filename="../UI/UserInterface.py" line="2556" />
       <source>Ctrl+Alt+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2557" />
-      <source>Switch the input focus to the Virtual Environments Manager window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2562" />
+      <source>Switch the input focus to the Virtual Environments Manager window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2567" />
       <source>&lt;b&gt;Virtual Environments&lt;/b&gt;&lt;p&gt;This switches the input focus to the Virtual Environments Manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2578" />
+      <location filename="../UI/UserInterface.py" line="2583" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2584" />
+      <location filename="../UI/UserInterface.py" line="2589" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2587" />
+      <location filename="../UI/UserInterface.py" line="2592" />
       <source>&lt;b&gt;Find/Replace In Files&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find/Replace In Files window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2601" />
+      <location filename="../UI/UserInterface.py" line="2606" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2607" />
+      <location filename="../UI/UserInterface.py" line="2612" />
       <source>Switch the input focus to the Find File window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2610" />
+      <location filename="../UI/UserInterface.py" line="2615" />
       <source>&lt;b&gt;Find File&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find File window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2624" />
-      <location filename="../UI/UserInterface.py" line="2623" />
+      <location filename="../UI/UserInterface.py" line="2629" />
+      <location filename="../UI/UserInterface.py" line="2628" />
       <source>VCS Status List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2625" />
+      <location filename="../UI/UserInterface.py" line="2630" />
       <source>Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2631" />
+      <location filename="../UI/UserInterface.py" line="2636" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2634" />
+      <location filename="../UI/UserInterface.py" line="2639" />
       <source>&lt;b&gt;VCS Status List&lt;/b&gt;&lt;p&gt;This switches the input focus to the VCS Status List window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2647" />
+      <location filename="../UI/UserInterface.py" line="2652" />
       <source>Alt+Shift+H</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2653" />
+      <location filename="../UI/UserInterface.py" line="2658" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2656" />
+      <location filename="../UI/UserInterface.py" line="2661" />
       <source>&lt;b&gt;Help Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2669" />
+      <location filename="../UI/UserInterface.py" line="2674" />
       <source>What's This?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2671" />
+      <location filename="../UI/UserInterface.py" line="2676" />
       <source>&amp;What's This?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2672" />
-      <source>Shift+F1</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2677" />
+      <source>Shift+F1</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2682" />
       <source>Context sensitive help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2679" />
+      <location filename="../UI/UserInterface.py" line="2684" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2692" />
+      <location filename="../UI/UserInterface.py" line="2697" />
       <source>Helpviewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2694" />
+      <location filename="../UI/UserInterface.py" line="2699" />
       <source>&amp;Helpviewer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2695" />
-      <source>F1</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2700" />
+      <source>F1</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2705" />
       <source>Open the helpviewer window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2702" />
+      <location filename="../UI/UserInterface.py" line="2707" />
       <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2722" />
+      <location filename="../UI/UserInterface.py" line="2727" />
       <source>Show Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2723" />
+      <location filename="../UI/UserInterface.py" line="2728" />
       <source>Show &amp;Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2729" />
+      <location filename="../UI/UserInterface.py" line="2734" />
       <source>Display version information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2731" />
+      <location filename="../UI/UserInterface.py" line="2736" />
       <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2744" />
-      <location filename="../UI/UserInterface.py" line="2737" />
+      <location filename="../UI/UserInterface.py" line="2742" />
+      <source>Copy Versions</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2743" />
+      <source>&amp;Copy Versions</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2750" />
+      <source>Copy version information to the clipboard</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2753" />
+      <source>&lt;b&gt;Copy Versions&lt;/b&gt;&lt;p&gt;This generates version information and copies it to the clipboard.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2769" />
+      <location filename="../UI/UserInterface.py" line="2762" />
       <source>Show Error Log</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2738" />
+      <location filename="../UI/UserInterface.py" line="2763" />
       <source>Show Error &amp;Log...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2746" />
+      <location filename="../UI/UserInterface.py" line="2771" />
       <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2755" />
+      <location filename="../UI/UserInterface.py" line="2780" />
       <source>Show Install Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2756" />
+      <location filename="../UI/UserInterface.py" line="2781" />
       <source>Show Install &amp;Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2762" />
+      <location filename="../UI/UserInterface.py" line="2787" />
       <source>Show Installation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2764" />
+      <location filename="../UI/UserInterface.py" line="2789" />
       <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4634" />
-      <location filename="../UI/UserInterface.py" line="2774" />
+      <location filename="../UI/UserInterface.py" line="4672" />
+      <location filename="../UI/UserInterface.py" line="2799" />
       <source>Report Bug</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2774" />
+      <location filename="../UI/UserInterface.py" line="2799" />
       <source>Report &amp;Bug...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2776" />
+      <location filename="../UI/UserInterface.py" line="2801" />
       <source>Report a bug</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2778" />
+      <location filename="../UI/UserInterface.py" line="2803" />
       <source>&lt;b&gt;Report Bug...&lt;/b&gt;&lt;p&gt;Opens a dialog to report a bug.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2784" />
+      <location filename="../UI/UserInterface.py" line="2809" />
       <source>Request Feature</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2785" />
+      <location filename="../UI/UserInterface.py" line="2810" />
       <source>Request &amp;Feature...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2791" />
+      <location filename="../UI/UserInterface.py" line="2816" />
       <source>Send a feature request</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2818" />
       <source>&lt;b&gt;Request Feature...&lt;/b&gt;&lt;p&gt;Opens a dialog to send a feature request.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4094" />
-      <location filename="../UI/UserInterface.py" line="2804" />
+      <location filename="../UI/UserInterface.py" line="4120" />
+      <location filename="../UI/UserInterface.py" line="2829" />
       <source>Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2806" />
+      <location filename="../UI/UserInterface.py" line="2831" />
       <source>&amp;Testing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2812" />
+      <location filename="../UI/UserInterface.py" line="2837" />
       <source>Start the testing dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2814" />
+      <location filename="../UI/UserInterface.py" line="2839" />
       <source>&lt;b&gt;Testing&lt;/b&gt;&lt;p&gt;Perform test runs. The dialog gives the ability to select and run a test suite or auto discover them.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2825" />
+      <location filename="../UI/UserInterface.py" line="2850" />
       <source>Restart Last Test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2827" />
+      <location filename="../UI/UserInterface.py" line="2852" />
       <source>&amp;Restart Last Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2833" />
+      <location filename="../UI/UserInterface.py" line="2858" />
       <source>Restarts the last test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2835" />
+      <location filename="../UI/UserInterface.py" line="2860" />
       <source>&lt;b&gt;Restart Last Test&lt;/b&gt;&lt;p&gt;Restarts the test performed last.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2845" />
+      <location filename="../UI/UserInterface.py" line="2870" />
       <source>Rerun Failed Tests</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2847" />
+      <location filename="../UI/UserInterface.py" line="2872" />
       <source>Rerun Failed Tests...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2854" />
+      <location filename="../UI/UserInterface.py" line="2879" />
       <source>Rerun failed tests of the last run</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2857" />
+      <location filename="../UI/UserInterface.py" line="2882" />
       <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last test run.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2867" />
-      <source>Test Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2869" />
-      <source>Test &amp;Script...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2875" />
-      <source>Run tests of the current script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2877" />
-      <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2884" />
-      <source>Test Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2886" />
-      <source>Test &amp;Project...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2892" />
-      <source>Run tests of the current project</source>
+      <source>Test Script</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2894" />
-      <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2903" />
-      <source>Qt-Designer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2905" />
-      <source>Qt-&amp;Designer...</source>
+      <source>Test &amp;Script...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2900" />
+      <source>Run tests of the current script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2902" />
+      <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2909" />
+      <source>Test Project</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2911" />
-      <source>Start Qt-Designer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2913" />
-      <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2922" />
-      <source>Qt-Linguist</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2924" />
-      <source>Qt-&amp;Linguist...</source>
+      <source>Test &amp;Project...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2917" />
+      <source>Run tests of the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2919" />
+      <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2928" />
+      <source>Qt-Designer</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2930" />
+      <source>Qt-&amp;Designer...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2936" />
+      <source>Start Qt-Designer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2938" />
+      <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2947" />
+      <source>Qt-Linguist</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2949" />
+      <source>Qt-&amp;Linguist...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2955" />
       <source>Start Qt-Linguist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2932" />
+      <location filename="../UI/UserInterface.py" line="2957" />
       <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2940" />
+      <location filename="../UI/UserInterface.py" line="2965" />
       <source>UI Previewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2942" />
+      <location filename="../UI/UserInterface.py" line="2967" />
       <source>&amp;UI Previewer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2948" />
+      <location filename="../UI/UserInterface.py" line="2973" />
       <source>Start the UI Previewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2950" />
-      <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2956" />
-      <source>Translations Previewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2958" />
-      <source>&amp;Translations Previewer...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2964" />
-      <source>Start the Translations Previewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2966" />
-      <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2975" />
+      <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2981" />
+      <source>Translations Previewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2983" />
+      <source>&amp;Translations Previewer...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2989" />
+      <source>Start the Translations Previewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2991" />
+      <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3000" />
       <source>Compare Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
-      <source>&amp;Compare Files...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3002" />
-      <location filename="../UI/UserInterface.py" line="2983" />
+      <source>&amp;Compare Files...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3027" />
+      <location filename="../UI/UserInterface.py" line="3008" />
       <source>Compare two files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2985" />
+      <location filename="../UI/UserInterface.py" line="3010" />
       <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2994" />
+      <location filename="../UI/UserInterface.py" line="3019" />
       <source>Compare Files side by side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2996" />
+      <location filename="../UI/UserInterface.py" line="3021" />
       <source>Compare &amp;Files side by side...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3004" />
+      <location filename="../UI/UserInterface.py" line="3029" />
       <source>&lt;b&gt;Compare Files side by side&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files and show the result side by side.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3014" />
+      <location filename="../UI/UserInterface.py" line="3039" />
       <source>SQL Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3016" />
+      <location filename="../UI/UserInterface.py" line="3041" />
       <source>SQL &amp;Browser...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3022" />
+      <location filename="../UI/UserInterface.py" line="3047" />
       <source>Browse a SQL database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3024" />
-      <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3038" />
-      <location filename="../UI/UserInterface.py" line="3030" />
-      <source>Mini Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3032" />
-      <source>Mini &amp;Editor...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3040" />
-      <source>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Open a dialog with a simplified editor.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3049" />
-      <source>Hex Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3051" />
-      <source>&amp;Hex Editor...</source>
+      <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3063" />
+      <location filename="../UI/UserInterface.py" line="3055" />
+      <source>Mini Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3057" />
+      <source>Mini &amp;Editor...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3065" />
+      <source>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Open a dialog with a simplified editor.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3074" />
+      <source>Hex Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3076" />
+      <source>&amp;Hex Editor...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3082" />
       <source>Start the eric Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3059" />
+      <location filename="../UI/UserInterface.py" line="3084" />
       <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3069" />
+      <location filename="../UI/UserInterface.py" line="3094" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3071" />
-      <source>eric &amp;Web Browser...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3077" />
-      <source>Start the eric Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3079" />
-      <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3088" />
-      <source>Icon Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3090" />
-      <source>&amp;Icon Editor...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3096" />
+      <source>eric &amp;Web Browser...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3102" />
+      <source>Start the eric Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3104" />
+      <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3113" />
+      <source>Icon Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3115" />
+      <source>&amp;Icon Editor...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3121" />
       <source>Start the eric Icon Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3098" />
+      <location filename="../UI/UserInterface.py" line="3123" />
       <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6494" />
-      <location filename="../UI/UserInterface.py" line="3110" />
+      <location filename="../UI/UserInterface.py" line="6532" />
+      <location filename="../UI/UserInterface.py" line="3135" />
       <source>Snapshot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3112" />
+      <location filename="../UI/UserInterface.py" line="3137" />
       <source>&amp;Snapshot...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3118" />
+      <location filename="../UI/UserInterface.py" line="3143" />
       <source>Take snapshots of a screen region</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3120" />
+      <location filename="../UI/UserInterface.py" line="3145" />
       <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3130" />
+      <location filename="../UI/UserInterface.py" line="3155" />
       <source>eric PDF Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3132" />
-      <source>eric PDF &amp;Viewer...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3138" />
-      <source>Start the eric PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3140" />
-      <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3149" />
-      <source>Preferences</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3151" />
-      <source>&amp;Preferences...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3157" />
+      <source>eric PDF &amp;Viewer...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3163" />
+      <source>Start the eric PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3165" />
+      <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3174" />
+      <source>Preferences</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3176" />
+      <source>&amp;Preferences...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3182" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3159" />
+      <location filename="../UI/UserInterface.py" line="3184" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3170" />
+      <location filename="../UI/UserInterface.py" line="3195" />
       <source>Export Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3172" />
+      <location filename="../UI/UserInterface.py" line="3197" />
       <source>E&amp;xport Preferences...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3178" />
+      <location filename="../UI/UserInterface.py" line="3203" />
       <source>Export the current configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3180" />
+      <location filename="../UI/UserInterface.py" line="3205" />
       <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3189" />
+      <location filename="../UI/UserInterface.py" line="3214" />
       <source>Import Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3191" />
+      <location filename="../UI/UserInterface.py" line="3216" />
       <source>I&amp;mport Preferences...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3198" />
+      <location filename="../UI/UserInterface.py" line="3223" />
       <source>Import a previously exported configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3201" />
+      <location filename="../UI/UserInterface.py" line="3226" />
       <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3210" />
+      <location filename="../UI/UserInterface.py" line="3235" />
       <source>Export Theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3212" />
-      <source>Export Theme...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3218" />
-      <source>Export the current theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3220" />
-      <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3229" />
-      <source>Import Theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3231" />
-      <source>Import Theme...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3237" />
+      <source>Export Theme...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3243" />
+      <source>Export the current theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3245" />
+      <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3254" />
+      <source>Import Theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3256" />
+      <source>Import Theme...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3262" />
       <source>Import a previously exported theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
+      <location filename="../UI/UserInterface.py" line="3264" />
       <source>&lt;b&gt;Import Theme&lt;/b&gt;&lt;p&gt;Import a previously exported theme.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3248" />
+      <location filename="../UI/UserInterface.py" line="3273" />
       <source>Reload APIs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3248" />
+      <location filename="../UI/UserInterface.py" line="3273" />
       <source>Reload &amp;APIs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3250" />
+      <location filename="../UI/UserInterface.py" line="3275" />
       <source>Reload the API information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3252" />
+      <location filename="../UI/UserInterface.py" line="3277" />
       <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3266" />
-      <location filename="../UI/UserInterface.py" line="3258" />
+      <location filename="../UI/UserInterface.py" line="3291" />
+      <location filename="../UI/UserInterface.py" line="3283" />
       <source>Show external tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3260" />
+      <location filename="../UI/UserInterface.py" line="3285" />
       <source>Show external &amp;tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3268" />
+      <location filename="../UI/UserInterface.py" line="3293" />
       <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3278" />
+      <location filename="../UI/UserInterface.py" line="3303" />
       <source>View Profiles</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3280" />
+      <location filename="../UI/UserInterface.py" line="3305" />
       <source>&amp;View Profiles...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3286" />
+      <location filename="../UI/UserInterface.py" line="3311" />
       <source>Configure view profiles</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3288" />
+      <location filename="../UI/UserInterface.py" line="3313" />
       <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3299" />
+      <location filename="../UI/UserInterface.py" line="3324" />
       <source>Toolbars</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3301" />
+      <location filename="../UI/UserInterface.py" line="3326" />
       <source>Tool&amp;bars...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3307" />
+      <location filename="../UI/UserInterface.py" line="3332" />
       <source>Configure toolbars</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
+      <location filename="../UI/UserInterface.py" line="3334" />
       <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3320" />
+      <location filename="../UI/UserInterface.py" line="3345" />
       <source>Keyboard Shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3322" />
+      <location filename="../UI/UserInterface.py" line="3347" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3328" />
+      <location filename="../UI/UserInterface.py" line="3353" />
       <source>Set the keyboard shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3330" />
+      <location filename="../UI/UserInterface.py" line="3355" />
       <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7453" />
-      <location filename="../UI/UserInterface.py" line="7434" />
-      <location filename="../UI/UserInterface.py" line="3340" />
+      <location filename="../UI/UserInterface.py" line="7491" />
+      <location filename="../UI/UserInterface.py" line="7472" />
+      <location filename="../UI/UserInterface.py" line="3365" />
       <source>Export Keyboard Shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3342" />
-      <source>&amp;Export Keyboard Shortcuts...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3348" />
-      <source>Export the keyboard shortcuts</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3350" />
-      <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7472" />
-      <location filename="../UI/UserInterface.py" line="3359" />
-      <source>Import Keyboard Shortcuts</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3361" />
-      <source>&amp;Import Keyboard Shortcuts...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3367" />
+      <source>&amp;Export Keyboard Shortcuts...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3373" />
+      <source>Export the keyboard shortcuts</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3375" />
+      <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="7510" />
+      <location filename="../UI/UserInterface.py" line="3384" />
+      <source>Import Keyboard Shortcuts</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3386" />
+      <source>&amp;Import Keyboard Shortcuts...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3392" />
       <source>Import the keyboard shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3369" />
+      <location filename="../UI/UserInterface.py" line="3394" />
       <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3379" />
+      <location filename="../UI/UserInterface.py" line="3404" />
       <source>Manage SSL Certificates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3381" />
+      <location filename="../UI/UserInterface.py" line="3406" />
       <source>Manage SSL Certificates...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3388" />
-      <source>Manage the saved SSL certificates</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3391" />
-      <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3401" />
-      <source>Edit Message Filters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3403" />
-      <source>Edit Message Filters...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3410" />
-      <source>Edit the message filters used to suppress unwanted messages</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3413" />
-      <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3432" />
+      <source>Manage the saved SSL certificates</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3416" />
+      <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3426" />
-      <location filename="../UI/UserInterface.py" line="3424" />
-      <source>Clear private data</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3434" />
-      <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3445" />
-      <location filename="../UI/UserInterface.py" line="3444" />
-      <source>Activate current editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3446" />
-      <source>Alt+Shift+E</source>
+      <source>Edit Message Filters</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3428" />
+      <source>Edit Message Filters...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3435" />
+      <source>Edit the message filters used to suppress unwanted messages</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3438" />
+      <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3457" />
-      <location filename="../UI/UserInterface.py" line="3456" />
-      <source>Show next</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3458" />
-      <source>Ctrl+Alt+Tab</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3469" />
-      <location filename="../UI/UserInterface.py" line="3468" />
-      <source>Show previous</source>
+      <location filename="../UI/UserInterface.py" line="3451" />
+      <location filename="../UI/UserInterface.py" line="3449" />
+      <source>Clear private data</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3459" />
+      <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3470" />
-      <source>Shift+Ctrl+Alt+Tab</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3481" />
-      <location filename="../UI/UserInterface.py" line="3480" />
-      <source>Switch between tabs</source>
+      <location filename="../UI/UserInterface.py" line="3469" />
+      <source>Activate current editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3471" />
+      <source>Alt+Shift+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3482" />
-      <source>Ctrl+1</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3492" />
-      <source>Plugin Infos</source>
+      <location filename="../UI/UserInterface.py" line="3481" />
+      <source>Show next</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3483" />
+      <source>Ctrl+Alt+Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3494" />
+      <location filename="../UI/UserInterface.py" line="3493" />
+      <source>Show previous</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3495" />
+      <source>Shift+Ctrl+Alt+Tab</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3506" />
+      <location filename="../UI/UserInterface.py" line="3505" />
+      <source>Switch between tabs</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3507" />
+      <source>Ctrl+1</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3517" />
+      <source>Plugin Infos</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3519" />
       <source>&amp;Plugin Infos...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3500" />
+      <location filename="../UI/UserInterface.py" line="3525" />
       <source>Show Plugin Infos</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3502" />
+      <location filename="../UI/UserInterface.py" line="3527" />
       <source>&lt;b&gt;Plugin Infos...&lt;/b&gt;&lt;p&gt;This opens a dialog, that show some information about loaded plugins.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3520" />
-      <location filename="../UI/UserInterface.py" line="3512" />
+      <location filename="../UI/UserInterface.py" line="3545" />
+      <location filename="../UI/UserInterface.py" line="3537" />
       <source>Install Plugins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3514" />
-      <source>&amp;Install Plugins...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3522" />
-      <source>&lt;b&gt;Install Plugins...&lt;/b&gt;&lt;p&gt;This opens a dialog to install or update plugins.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3539" />
-      <location filename="../UI/UserInterface.py" line="3531" />
+      <source>&amp;Install Plugins...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3547" />
+      <source>&lt;b&gt;Install Plugins...&lt;/b&gt;&lt;p&gt;This opens a dialog to install or update plugins.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3564" />
+      <location filename="../UI/UserInterface.py" line="3556" />
       <source>Uninstall Plugin</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3533" />
-      <source>&amp;Uninstall Plugin...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3541" />
-      <source>&lt;b&gt;Uninstall Plugin...&lt;/b&gt;&lt;p&gt;This opens a dialog to uninstall a plugin.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3552" />
-      <source>Plugin &amp;Repository...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3558" />
+      <source>&amp;Uninstall Plugin...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3566" />
+      <source>&lt;b&gt;Uninstall Plugin...&lt;/b&gt;&lt;p&gt;This opens a dialog to uninstall a plugin.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3577" />
+      <source>Plugin &amp;Repository...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3583" />
       <source>Show Plugins available for download</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3560" />
+      <location filename="../UI/UserInterface.py" line="3585" />
       <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3587" />
-      <location filename="../UI/UserInterface.py" line="3586" />
+      <location filename="../UI/UserInterface.py" line="3612" />
+      <location filename="../UI/UserInterface.py" line="3611" />
       <source>Qt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3593" />
+      <location filename="../UI/UserInterface.py" line="3618" />
       <source>Open Qt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3595" />
+      <location filename="../UI/UserInterface.py" line="3620" />
       <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3608" />
-      <location filename="../UI/UserInterface.py" line="3607" />
+      <location filename="../UI/UserInterface.py" line="3633" />
+      <location filename="../UI/UserInterface.py" line="3632" />
       <source>Qt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3614" />
+      <location filename="../UI/UserInterface.py" line="3639" />
       <source>Open Qt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3616" />
+      <location filename="../UI/UserInterface.py" line="3641" />
       <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3629" />
-      <location filename="../UI/UserInterface.py" line="3628" />
+      <location filename="../UI/UserInterface.py" line="3654" />
+      <location filename="../UI/UserInterface.py" line="3653" />
       <source>PyQt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3635" />
+      <location filename="../UI/UserInterface.py" line="3660" />
       <source>Open PyQt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3637" />
+      <location filename="../UI/UserInterface.py" line="3662" />
       <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3650" />
-      <location filename="../UI/UserInterface.py" line="3649" />
+      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3674" />
       <source>PyQt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3656" />
+      <location filename="../UI/UserInterface.py" line="3681" />
       <source>Open PyQt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3658" />
+      <location filename="../UI/UserInterface.py" line="3683" />
       <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3676" />
-      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3701" />
+      <location filename="../UI/UserInterface.py" line="3700" />
       <source>Python 3 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3682" />
+      <location filename="../UI/UserInterface.py" line="3707" />
       <source>Open Python 3 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3684" />
-      <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3703" />
-      <location filename="../UI/UserInterface.py" line="3702" />
-      <source>eric API Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3709" />
+      <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3728" />
+      <location filename="../UI/UserInterface.py" line="3727" />
+      <source>eric API Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3734" />
       <source>Open eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3711" />
+      <location filename="../UI/UserInterface.py" line="3736" />
       <source>&lt;b&gt;eric API Documentation&lt;/b&gt;&lt;p&gt;Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3729" />
-      <location filename="../UI/UserInterface.py" line="3728" />
+      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3753" />
       <source>PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3735" />
+      <location filename="../UI/UserInterface.py" line="3760" />
       <source>Open PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3737" />
+      <location filename="../UI/UserInterface.py" line="3762" />
       <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3755" />
-      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3780" />
+      <location filename="../UI/UserInterface.py" line="3779" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3761" />
+      <location filename="../UI/UserInterface.py" line="3786" />
       <source>Open PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3763" />
+      <location filename="../UI/UserInterface.py" line="3788" />
       <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3865" />
+      <location filename="../UI/UserInterface.py" line="3890" />
       <source>E&amp;xtras</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3875" />
+      <location filename="../UI/UserInterface.py" line="3900" />
       <source>Wi&amp;zards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3893" />
+      <location filename="../UI/UserInterface.py" line="3918" />
       <source>P&amp;lugins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3902" />
+      <location filename="../UI/UserInterface.py" line="3927" />
       <source>Configure...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3911" />
+      <location filename="../UI/UserInterface.py" line="3936" />
       <source>&amp;Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3928" />
+      <location filename="../UI/UserInterface.py" line="3953" />
       <source>Select Tool Group</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3939" />
+      <location filename="../UI/UserInterface.py" line="3964" />
       <source>Se&amp;ttings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3972" />
+      <location filename="../UI/UserInterface.py" line="3997" />
       <source>&amp;Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3981" />
+      <location filename="../UI/UserInterface.py" line="4006" />
       <source>&amp;Windows</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3985" />
+      <location filename="../UI/UserInterface.py" line="4010" />
       <source>Central Park</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3989" />
+      <location filename="../UI/UserInterface.py" line="4014" />
       <source>Left Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4008" />
+      <location filename="../UI/UserInterface.py" line="4033" />
       <source>Right Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4027" />
+      <location filename="../UI/UserInterface.py" line="4052" />
       <source>Bottom Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4035" />
+      <location filename="../UI/UserInterface.py" line="4060" />
       <source>Plug-ins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4041" />
+      <location filename="../UI/UserInterface.py" line="4066" />
       <source>&amp;Toolbars</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4054" />
+      <location filename="../UI/UserInterface.py" line="4079" />
       <source>&amp;Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4109" />
-      <location filename="../UI/UserInterface.py" line="4093" />
+      <location filename="../UI/UserInterface.py" line="4135" />
+      <location filename="../UI/UserInterface.py" line="4119" />
       <source>Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4111" />
-      <location filename="../UI/UserInterface.py" line="4097" />
+      <location filename="../UI/UserInterface.py" line="4137" />
+      <location filename="../UI/UserInterface.py" line="4123" />
       <source>Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6222" />
-      <location filename="../UI/UserInterface.py" line="4112" />
-      <location filename="../UI/UserInterface.py" line="4098" />
+      <location filename="../UI/UserInterface.py" line="6260" />
+      <location filename="../UI/UserInterface.py" line="4138" />
+      <location filename="../UI/UserInterface.py" line="4124" />
       <source>Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4113" />
-      <location filename="../UI/UserInterface.py" line="4099" />
+      <location filename="../UI/UserInterface.py" line="4139" />
+      <location filename="../UI/UserInterface.py" line="4125" />
       <source>Profiles</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
-      <location filename="../UI/UserInterface.py" line="4100" />
+      <location filename="../UI/UserInterface.py" line="4140" />
+      <location filename="../UI/UserInterface.py" line="4126" />
       <source>Plugins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4110" />
+      <location filename="../UI/UserInterface.py" line="4136" />
       <source>Unittest</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4284" />
+      <location filename="../UI/UserInterface.py" line="4310" />
       <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4293" />
+      <location filename="../UI/UserInterface.py" line="4319" />
       <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4302" />
+      <location filename="../UI/UserInterface.py" line="4328" />
       <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4311" />
+      <location filename="../UI/UserInterface.py" line="4337" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4320" />
+      <location filename="../UI/UserInterface.py" line="4346" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4329" />
+      <location filename="../UI/UserInterface.py" line="4355" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4343" />
+      <location filename="../UI/UserInterface.py" line="4369" />
       <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4414" />
-      <location filename="../UI/UserInterface.py" line="4373" />
+      <location filename="../UI/UserInterface.py" line="4440" />
+      <location filename="../UI/UserInterface.py" line="4399" />
       <source>External Tools/{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4522" />
+      <location filename="../UI/UserInterface.py" line="4548" />
       <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4571" />
+      <location filename="../UI/UserInterface.py" line="4597" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Security)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4588" />
+      <location filename="../UI/UserInterface.py" line="4614" />
       <source>Desktop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4592" />
+      <location filename="../UI/UserInterface.py" line="4618" />
       <source>Session Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4595" />
+      <location filename="../UI/UserInterface.py" line="4621" />
       <source>&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4635" />
+      <location filename="../UI/UserInterface.py" line="4673" />
       <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4970" />
+      <location filename="../UI/UserInterface.py" line="5008" />
       <source>Restart application</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4971" />
+      <location filename="../UI/UserInterface.py" line="5009" />
       <source>The application needs to be restarted. Do it now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4995" />
+      <location filename="../UI/UserInterface.py" line="5033" />
       <source>Upgrade PyQt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4996" />
+      <location filename="../UI/UserInterface.py" line="5034" />
       <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5046" />
-      <location filename="../UI/UserInterface.py" line="5020" />
+      <location filename="../UI/UserInterface.py" line="5084" />
+      <location filename="../UI/UserInterface.py" line="5058" />
       <source>Upgrade Eric</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5021" />
+      <location filename="../UI/UserInterface.py" line="5059" />
       <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5047" />
+      <location filename="../UI/UserInterface.py" line="5085" />
       <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
  Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5105" />
+      <location filename="../UI/UserInterface.py" line="5143" />
       <source>&amp;Builtin Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5124" />
+      <location filename="../UI/UserInterface.py" line="5162" />
       <source>&amp;Plugin Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5127" />
+      <location filename="../UI/UserInterface.py" line="5165" />
       <source>&amp;User Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5153" />
+      <location filename="../UI/UserInterface.py" line="5191" />
       <source>Configure Tool Groups ...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5157" />
+      <location filename="../UI/UserInterface.py" line="5195" />
       <source>Configure current Tool Group ...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5196" />
-      <location filename="../UI/UserInterface.py" line="5176" />
+      <location filename="../UI/UserInterface.py" line="5234" />
+      <location filename="../UI/UserInterface.py" line="5214" />
       <source>No User Tools Configured</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5272" />
+      <location filename="../UI/UserInterface.py" line="5310" />
       <source>&amp;Show all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5274" />
+      <location filename="../UI/UserInterface.py" line="5312" />
       <source>&amp;Hide all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6359" />
-      <location filename="../UI/UserInterface.py" line="6348" />
-      <location filename="../UI/UserInterface.py" line="6300" />
-      <location filename="../UI/UserInterface.py" line="6290" />
-      <location filename="../UI/UserInterface.py" line="6121" />
-      <location filename="../UI/UserInterface.py" line="6111" />
-      <location filename="../UI/UserInterface.py" line="6053" />
-      <location filename="../UI/UserInterface.py" line="6043" />
+      <location filename="../UI/UserInterface.py" line="6397" />
+      <location filename="../UI/UserInterface.py" line="6386" />
+      <location filename="../UI/UserInterface.py" line="6338" />
+      <location filename="../UI/UserInterface.py" line="6328" />
+      <location filename="../UI/UserInterface.py" line="6159" />
+      <location filename="../UI/UserInterface.py" line="6149" />
+      <location filename="../UI/UserInterface.py" line="6091" />
+      <location filename="../UI/UserInterface.py" line="6081" />
       <source>Problem</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6360" />
-      <location filename="../UI/UserInterface.py" line="6349" />
-      <location filename="../UI/UserInterface.py" line="6301" />
-      <location filename="../UI/UserInterface.py" line="6291" />
-      <location filename="../UI/UserInterface.py" line="6122" />
-      <location filename="../UI/UserInterface.py" line="6112" />
-      <location filename="../UI/UserInterface.py" line="6054" />
-      <location filename="../UI/UserInterface.py" line="6044" />
+      <location filename="../UI/UserInterface.py" line="6398" />
+      <location filename="../UI/UserInterface.py" line="6387" />
+      <location filename="../UI/UserInterface.py" line="6339" />
+      <location filename="../UI/UserInterface.py" line="6329" />
+      <location filename="../UI/UserInterface.py" line="6160" />
+      <location filename="../UI/UserInterface.py" line="6150" />
+      <location filename="../UI/UserInterface.py" line="6092" />
+      <location filename="../UI/UserInterface.py" line="6082" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6603" />
-      <location filename="../UI/UserInterface.py" line="6514" />
-      <location filename="../UI/UserInterface.py" line="6395" />
-      <location filename="../UI/UserInterface.py" line="6372" />
-      <location filename="../UI/UserInterface.py" line="6313" />
-      <location filename="../UI/UserInterface.py" line="6260" />
-      <location filename="../UI/UserInterface.py" line="6238" />
-      <location filename="../UI/UserInterface.py" line="6197" />
-      <location filename="../UI/UserInterface.py" line="6188" />
-      <location filename="../UI/UserInterface.py" line="6153" />
-      <location filename="../UI/UserInterface.py" line="6144" />
-      <location filename="../UI/UserInterface.py" line="6085" />
-      <location filename="../UI/UserInterface.py" line="6076" />
+      <location filename="../UI/UserInterface.py" line="6641" />
+      <location filename="../UI/UserInterface.py" line="6552" />
+      <location filename="../UI/UserInterface.py" line="6433" />
+      <location filename="../UI/UserInterface.py" line="6410" />
+      <location filename="../UI/UserInterface.py" line="6351" />
+      <location filename="../UI/UserInterface.py" line="6298" />
+      <location filename="../UI/UserInterface.py" line="6276" />
+      <location filename="../UI/UserInterface.py" line="6235" />
+      <location filename="../UI/UserInterface.py" line="6226" />
+      <location filename="../UI/UserInterface.py" line="6191" />
+      <location filename="../UI/UserInterface.py" line="6182" />
+      <location filename="../UI/UserInterface.py" line="6123" />
+      <location filename="../UI/UserInterface.py" line="6114" />
       <source>Process Generation Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6077" />
+      <location filename="../UI/UserInterface.py" line="6115" />
       <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6086" />
+      <location filename="../UI/UserInterface.py" line="6124" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6145" />
+      <location filename="../UI/UserInterface.py" line="6183" />
       <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6154" />
+      <location filename="../UI/UserInterface.py" line="6192" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6189" />
+      <location filename="../UI/UserInterface.py" line="6227" />
       <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6198" />
+      <location filename="../UI/UserInterface.py" line="6236" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6223" />
-      <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6239" />
-      <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="6261" />
+      <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6277" />
+      <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6299" />
       <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6314" />
+      <location filename="../UI/UserInterface.py" line="6352" />
       <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6373" />
+      <location filename="../UI/UserInterface.py" line="6411" />
       <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6396" />
+      <location filename="../UI/UserInterface.py" line="6434" />
       <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6495" />
+      <location filename="../UI/UserInterface.py" line="6533" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6515" />
+      <location filename="../UI/UserInterface.py" line="6553" />
       <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6548" />
-      <location filename="../UI/UserInterface.py" line="6538" />
-      <source>External Tools</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6539" />
-      <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6549" />
-      <source>No toolgroup entry '{0}' found.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="6586" />
+      <location filename="../UI/UserInterface.py" line="6576" />
+      <source>External Tools</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6577" />
+      <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6587" />
+      <source>No toolgroup entry '{0}' found.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6624" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6604" />
+      <location filename="../UI/UserInterface.py" line="6642" />
       <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6683" />
+      <location filename="../UI/UserInterface.py" line="6721" />
       <source>Process '{0}' has exited.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6970" />
-      <location filename="../UI/UserInterface.py" line="6908" />
-      <location filename="../UI/UserInterface.py" line="6864" />
-      <location filename="../UI/UserInterface.py" line="6790" />
-      <location filename="../UI/UserInterface.py" line="6726" />
+      <location filename="../UI/UserInterface.py" line="7008" />
+      <location filename="../UI/UserInterface.py" line="6946" />
+      <location filename="../UI/UserInterface.py" line="6902" />
+      <location filename="../UI/UserInterface.py" line="6828" />
+      <location filename="../UI/UserInterface.py" line="6764" />
       <source>Documentation Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6971" />
-      <location filename="../UI/UserInterface.py" line="6909" />
-      <location filename="../UI/UserInterface.py" line="6865" />
-      <location filename="../UI/UserInterface.py" line="6791" />
-      <location filename="../UI/UserInterface.py" line="6727" />
+      <location filename="../UI/UserInterface.py" line="7009" />
+      <location filename="../UI/UserInterface.py" line="6947" />
+      <location filename="../UI/UserInterface.py" line="6903" />
+      <location filename="../UI/UserInterface.py" line="6829" />
+      <location filename="../UI/UserInterface.py" line="6765" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6952" />
-      <location filename="../UI/UserInterface.py" line="6834" />
+      <location filename="../UI/UserInterface.py" line="6990" />
+      <location filename="../UI/UserInterface.py" line="6872" />
       <source>Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6835" />
+      <location filename="../UI/UserInterface.py" line="6873" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6953" />
+      <location filename="../UI/UserInterface.py" line="6991" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7132" />
-      <location filename="../UI/UserInterface.py" line="7068" />
+      <location filename="../UI/UserInterface.py" line="7170" />
+      <location filename="../UI/UserInterface.py" line="7106" />
       <source>Start Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7069" />
+      <location filename="../UI/UserInterface.py" line="7107" />
       <source>The eric web browser could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7133" />
+      <location filename="../UI/UserInterface.py" line="7171" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7179" />
+      <location filename="../UI/UserInterface.py" line="7217" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7179" />
+      <location filename="../UI/UserInterface.py" line="7217" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7512" />
       <location filename="../UI/UserInterface.py" line="7474" />
-      <location filename="../UI/UserInterface.py" line="7436" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7454" />
+      <location filename="../UI/UserInterface.py" line="7492" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7682" />
+      <location filename="../UI/UserInterface.py" line="7720" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7683" />
+      <location filename="../UI/UserInterface.py" line="7721" />
       <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7706" />
+      <location filename="../UI/UserInterface.py" line="7744" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7731" />
-      <location filename="../UI/UserInterface.py" line="7708" />
+      <location filename="../UI/UserInterface.py" line="7769" />
+      <location filename="../UI/UserInterface.py" line="7746" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7776" />
+      <location filename="../UI/UserInterface.py" line="7814" />
       <source>Crash Session found!</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7777" />
+      <location filename="../UI/UserInterface.py" line="7815" />
       <source>A session file of a crashed session was found. Shall this session be restored?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8154" />
+      <location filename="../UI/UserInterface.py" line="8192" />
       <source>Drop Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8155" />
+      <location filename="../UI/UserInterface.py" line="8193" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8341" />
+      <location filename="../UI/UserInterface.py" line="8379" />
       <source>Upgrade available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8342" />
+      <location filename="../UI/UserInterface.py" line="8380" />
       <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8387" />
+      <location filename="../UI/UserInterface.py" line="8425" />
       <source>First time usage</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8388" />
+      <location filename="../UI/UserInterface.py" line="8426" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8410" />
+      <location filename="../UI/UserInterface.py" line="8448" />
       <source>Select Workspace Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8575" />
+      <location filename="../UI/UserInterface.py" line="8616" />
       <source>Unsaved Data Detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8576" />
+      <location filename="../UI/UserInterface.py" line="8617" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -91552,40 +91572,40 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1055" />
+      <location filename="../Debugger/VariablesViewer.py" line="1056" />
       <source>Show Details...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1057" />
-      <source>Expand</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1058" />
-      <source>Collapse</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Debugger/VariablesViewer.py" line="1059" />
+      <source>Expand Subitems</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/VariablesViewer.py" line="1062" />
+      <source>Collapse Subitems</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/VariablesViewer.py" line="1064" />
       <source>Collapse All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1067" />
-      <location filename="../Debugger/VariablesViewer.py" line="1061" />
+      <location filename="../Debugger/VariablesViewer.py" line="1072" />
+      <location filename="../Debugger/VariablesViewer.py" line="1066" />
       <source>Refresh</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1069" />
-      <location filename="../Debugger/VariablesViewer.py" line="1063" />
+      <location filename="../Debugger/VariablesViewer.py" line="1074" />
+      <location filename="../Debugger/VariablesViewer.py" line="1068" />
       <source>Configure...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1071" />
-      <location filename="../Debugger/VariablesViewer.py" line="1064" />
+      <location filename="../Debugger/VariablesViewer.py" line="1076" />
+      <location filename="../Debugger/VariablesViewer.py" line="1069" />
       <source>Variables Type Filter...</source>
       <translation type="unfinished" />
     </message>
@@ -96173,91 +96193,91 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5972" />
+      <location filename="../ViewManager/ViewManager.py" line="5969" />
       <source>Line: {0:5}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5978" />
+      <location filename="../ViewManager/ViewManager.py" line="5975" />
       <source>Pos: {0:5}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5998" />
+      <location filename="../ViewManager/ViewManager.py" line="5995" />
       <source>Language: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6007" />
+      <location filename="../ViewManager/ViewManager.py" line="6004" />
       <source>EOL Mode: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6503" />
-      <location filename="../ViewManager/ViewManager.py" line="6460" />
+      <location filename="../ViewManager/ViewManager.py" line="6500" />
+      <location filename="../ViewManager/ViewManager.py" line="6457" />
       <source>&amp;Clear</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../ViewManager/ViewManager.py" line="6494" />
+      <source>&amp;Add</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../ViewManager/ViewManager.py" line="6497" />
-      <source>&amp;Add</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="6500" />
       <source>&amp;Edit...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../ViewManager/ViewManager.py" line="7567" />
+      <location filename="../ViewManager/ViewManager.py" line="7553" />
+      <location filename="../ViewManager/ViewManager.py" line="7521" />
+      <source>Edit Spelling Dictionary</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7524" />
+      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7540" />
+      <source>Editing {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7556" />
+      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../ViewManager/ViewManager.py" line="7570" />
-      <location filename="../ViewManager/ViewManager.py" line="7556" />
-      <location filename="../ViewManager/ViewManager.py" line="7524" />
-      <source>Edit Spelling Dictionary</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7527" />
-      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7543" />
-      <source>Editing {0}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7559" />
-      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7573" />
       <source>The spelling dictionary was saved successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6682" />
+      <location filename="../ViewManager/ViewManager.py" line="6679" />
       <source>Clear Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6683" />
+      <location filename="../ViewManager/ViewManager.py" line="6680" />
       <source>Do you really want to delete all text of the current editor?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="8103" />
-      <location filename="../ViewManager/ViewManager.py" line="8086" />
+      <location filename="../ViewManager/ViewManager.py" line="8100" />
+      <location filename="../ViewManager/ViewManager.py" line="8083" />
       <source>File System Watcher Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="8087" />
+      <location filename="../ViewManager/ViewManager.py" line="8084" />
       <source>&lt;p&gt;The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should &lt;ul&gt;&lt;li&gt;sudo nano /etc/sysctl.conf&lt;/li&gt;&lt;li&gt;add to the bottom "fs.inotify.max_user_instances = 1024"&lt;/li&gt;&lt;li&gt;save and close the editor&lt;/li&gt;&lt;li&gt;sudo sysctl -p&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Error Message: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="8104" />
+      <location filename="../ViewManager/ViewManager.py" line="8101" />
       <source>The file system watcher reported an error with code &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -98109,16 +98129,6 @@
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
-      <source>Select to delete all web databases</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
-      <source>Web &amp;Databases</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
       <source>Select to delete all remembered zoom settings</source>
       <translation type="unfinished" />
     </message>
@@ -98380,6 +98390,16 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
+      <source>Select to render all web contents using a dark theme.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
+      <source>Force Dark Mode</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
       <source>Startup</source>
       <translation type="unfinished" />
     </message>
@@ -99315,355 +99335,355 @@
   <context>
     <name>WebBrowserView</name>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="366" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="353" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="341" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="329" />
-      <source>eric Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="330" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="367" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="354" />
       <location filename="../WebBrowser/WebBrowserView.py" line="342" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="330" />
+      <source>eric Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="331" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="368" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="343" />
       <source>&lt;p&gt;Could not start a viewer for file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="354" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="355" />
       <source>&lt;p&gt;Could not start an application for URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="608" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="609" />
       <source>Match {0} of {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="634" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="635" />
       <source>Inspect Element...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="666" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="667" />
       <source>No suggestions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="723" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="724" />
       <source>Open Link in New Tab	Ctrl+LMB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="728" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="729" />
       <source>Open Link in New Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="734" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="735" />
       <source>Open Link in New Private Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="741" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="742" />
       <source>Save Lin&amp;k</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="745" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="746" />
       <source>Bookmark this Link</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="751" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="752" />
       <source>Copy URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="755" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="756" />
       <source>Send URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="764" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="765" />
       <source>Scan Link with VirusTotal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="782" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="783" />
       <source>Open Image in New Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="789" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="790" />
       <source>Save Image</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="792" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="793" />
       <source>Copy Image to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="794" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="795" />
       <source>Copy Image URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="799" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="800" />
       <source>Send Image URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="818" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="810" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="819" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="811" />
       <source>Search image in {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="814" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="815" />
       <source>Search image with...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="825" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="826" />
       <source>Block Image</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="835" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="836" />
       <source>Scan Image with VirusTotal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="855" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="856" />
       <source>Play</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="861" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="862" />
       <source>Pause</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="867" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="868" />
       <source>Unmute</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="873" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="874" />
       <source>Mute</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="878" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="879" />
       <source>Copy Media URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="883" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="884" />
       <source>Send Media URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="889" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="890" />
       <source>Save Media</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="910" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="911" />
       <source>Send Text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="917" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="918" />
       <source>Search with '{0}'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="921" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="922" />
       <source>Search with...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1078" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="947" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1079" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="948" />
       <source>Google Translate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="957" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="958" />
       <source>Dictionary</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="965" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="966" />
       <source>Go to web address</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="994" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="995" />
       <source>Add New Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="999" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1000" />
       <source>Configure Speed Dial</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1005" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1006" />
       <source>Reload All Dials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1009" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1010" />
       <source>Reset to Default Dials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1014" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1015" />
       <source>Bookmark this Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1018" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1019" />
       <source>Copy Page URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1023" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1024" />
       <source>Send Page URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1029" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1030" />
       <source>User Agent</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1057" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1058" />
       <source>Validate Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1120" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1121" />
       <source>Add to web search toolbar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1804" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1805" />
       <source>Empty Page</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="1869" />
       <location filename="../WebBrowser/WebBrowserView.py" line="1868" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="1867" />
       <source>Render Process terminated abnormally</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1873" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1874" />
       <source>The render process crashed while loading this page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1878" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1879" />
       <source>The render process was killed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1880" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1881" />
       <source>The render process terminated while loading this page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1884" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1885" />
       <source>Try reloading the page or closing some tabs to make more memory available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2012" />
-      <source>Web Archive (*.mhtml *.mht)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2013" />
-      <source>HTML File (*.html *.htm)</source>
+      <source>Web Archive (*.mhtml *.mht)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2014" />
+      <source>HTML File (*.html *.htm)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2015" />
       <source>HTML File with all resources (*.html *.htm)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2036" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2037" />
       <source>Save Web Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2428" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2429" />
       <source>eric7 {0} ({1})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2439" />
-      <source>Print Page</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2440" />
+      <source>Print Page</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2441" />
       <source>There is already a print job in progress. Printing is temporarily disabled until the current job is finished.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2555" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="2485" />
-      <source>Print to PDF</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2486" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2556" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2486" />
+      <source>Print to PDF</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2487" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2557" />
       <source>&lt;p&gt;The PDF file &lt;b&gt;{0}&lt;/b&gt; could not be generated.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2590" />
-      <source>Quota Request</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2591" />
+      <source>Quota Request</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2592" />
       <source>&lt;p&gt; Allow the website at &lt;b&gt;{0}&lt;/b&gt; to use &lt;b&gt;{1}&lt;/b&gt; of persistent storage?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2634" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2635" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Read&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2642" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2643" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Write&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2647" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2648" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Read and Write&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2654" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2655" />
       <source>File System Access Request</source>
       <translation type="unfinished" />
     </message>
@@ -99777,10 +99797,10 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4099" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3007" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2991" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2976" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4105" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3013" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2997" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2982" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="207" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
@@ -99791,2074 +99811,2074 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1758" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1758" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1764" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1764" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="306" />
       <source>Index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1769" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1768" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1774" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="318" />
       <source>Search</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2115" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2114" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2121" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2120" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="325" />
       <source>JavaScript Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="737" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="743" />
       <source>New Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="739" />
-      <source>&amp;New Tab</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="740" />
-      <source>Ctrl+T</source>
-      <comment>File|New Tab</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="745" />
+      <source>&amp;New Tab</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="746" />
+      <source>Ctrl+T</source>
+      <comment>File|New Tab</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="751" />
       <source>Open a new web browser tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="747" />
-      <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="753" />
+      <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="759" />
       <source>New Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="755" />
-      <source>New &amp;Window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="756" />
-      <source>Ctrl+N</source>
-      <comment>File|New Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="761" />
+      <source>New &amp;Window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="762" />
+      <source>Ctrl+N</source>
+      <comment>File|New Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="767" />
       <source>Open a new web browser window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="763" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="769" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new web browser window in the current privacy mode.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2889" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="773" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2895" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="779" />
       <source>New Private Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="781" />
       <source>New &amp;Private Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="776" />
-      <source>Ctrl+Shift+P</source>
-      <comment>File|New Private Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="782" />
+      <source>Ctrl+Shift+P</source>
+      <comment>File|New Private Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="788" />
       <source>Open a new private web browser window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="785" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="791" />
       <source>&lt;b&gt;New Private Window&lt;/b&gt;&lt;p&gt;This opens a new private web browser window by starting a new web browser instance in private mode.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2927" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2904" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="795" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2933" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2910" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="801" />
       <source>Open File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="797" />
-      <source>&amp;Open File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="798" />
-      <source>Ctrl+O</source>
-      <comment>File|Open</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="803" />
+      <source>&amp;Open File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="804" />
+      <source>Ctrl+O</source>
+      <comment>File|Open</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="809" />
       <source>Open a file for display</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="805" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="811" />
       <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new file for display. It pops up a file selection dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="815" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="821" />
       <source>Open File in New Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="817" />
-      <source>Open File in New &amp;Tab</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="818" />
-      <source>Shift+Ctrl+O</source>
-      <comment>File|Open in new tab</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="823" />
+      <source>Open File in New &amp;Tab</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="824" />
+      <source>Shift+Ctrl+O</source>
+      <comment>File|Open in new tab</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="829" />
       <source>Open a file for display in a new tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="825" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="831" />
       <source>&lt;b&gt;Open File in New Tab&lt;/b&gt;&lt;p&gt;This opens a new file for display in a new tab. It pops up a file selection dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="836" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="842" />
       <source>Save As</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="838" />
-      <source>&amp;Save As...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="839" />
-      <source>Shift+Ctrl+S</source>
-      <comment>File|Save As</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="844" />
+      <source>&amp;Save As...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="845" />
+      <source>Shift+Ctrl+S</source>
+      <comment>File|Save As</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="850" />
       <source>Save the current page to disk</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="846" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="852" />
       <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current page to disk.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="854" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="860" />
       <source>Save Page Screen</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="856" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="862" />
       <source>Save Page Screen...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="863" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="869" />
       <source>Save the visible part of the current page as a screen shot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="866" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="872" />
       <source>&lt;b&gt;Save Page Screen...&lt;/b&gt;&lt;p&gt;Saves the visible part of the current page as a screen shot.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="877" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="883" />
       <source>Import Bookmarks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="878" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="884" />
       <source>&amp;Import Bookmarks...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="885" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="891" />
       <source>Import bookmarks from other browsers</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="888" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="894" />
       <source>&lt;b&gt;Import Bookmarks&lt;/b&gt;&lt;p&gt;Import bookmarks from other browsers.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="897" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="903" />
       <source>Export Bookmarks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="898" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="904" />
       <source>&amp;Export Bookmarks...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="905" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="911" />
       <source>Export the bookmarks into a file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="908" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="914" />
       <source>&lt;b&gt;Export Bookmarks&lt;/b&gt;&lt;p&gt;Export the bookmarks into a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2537" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="917" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2543" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="923" />
       <source>Print</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="919" />
-      <source>&amp;Print</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="920" />
-      <source>Ctrl+P</source>
-      <comment>File|Print</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="925" />
+      <source>&amp;Print</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="926" />
+      <source>Ctrl+P</source>
+      <comment>File|Print</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="931" />
       <source>Print the displayed help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="927" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="933" />
       <source>&lt;b&gt;Print&lt;/b&gt;&lt;p&gt;Print the displayed help text.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="935" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="933" />
-      <source>Print as PDF</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="941" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="939" />
+      <source>Print as PDF</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="947" />
       <source>Print the displayed help as PDF</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="943" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="949" />
       <source>&lt;b&gt;Print as PDF&lt;/b&gt;&lt;p&gt;Print the displayed help text as a PDF file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="954" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="952" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="960" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="958" />
       <source>Print Preview</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="961" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="967" />
       <source>Print preview of the displayed help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="964" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="970" />
       <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the displayed help text.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="975" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="973" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="981" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="979" />
       <source>Send Page Link</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="982" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="988" />
       <source>Send the link of the current page via email</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="985" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="991" />
       <source>&lt;b&gt;Send Page Link&lt;/b&gt;&lt;p&gt;Send the link of the current page via email.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="994" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1000" />
       <source>Close</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="996" />
-      <source>&amp;Close</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="997" />
-      <source>Ctrl+W</source>
-      <comment>File|Close</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1002" />
+      <source>&amp;Close</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1003" />
+      <source>Ctrl+W</source>
+      <comment>File|Close</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1008" />
       <source>Close the current help window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1004" />
-      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1010" />
+      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1016" />
       <source>Close All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1011" />
-      <source>Close &amp;All</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1017" />
+      <source>Close &amp;All</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1023" />
       <source>Close all help windows</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1019" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1025" />
       <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all web browser windows except the first one.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1028" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1034" />
       <source>Quit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3319" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1030" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3325" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1036" />
       <source>&amp;Quit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1031" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1037" />
       <source>Ctrl+Q</source>
       <comment>File|Quit</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1036" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1042" />
       <source>Quit the eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1038" />
-      <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1044" />
+      <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1050" />
       <source>Backward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1046" />
-      <source>&amp;Backward</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1047" />
-      <source>Alt+Left</source>
-      <comment>Go|Backward</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1052" />
+      <source>&amp;Backward</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1053" />
+      <source>Alt+Left</source>
+      <comment>Go|Backward</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1058" />
       <source>Move one screen backward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1054" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1060" />
       <source>&lt;b&gt;Backward&lt;/b&gt;&lt;p&gt;Moves one screen backward. If none is available, this action is disabled.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1064" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1070" />
       <source>Forward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1066" />
-      <source>&amp;Forward</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1067" />
-      <source>Alt+Right</source>
-      <comment>Go|Forward</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1072" />
+      <source>&amp;Forward</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1073" />
+      <source>Alt+Right</source>
+      <comment>Go|Forward</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1078" />
       <source>Move one screen forward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1074" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1080" />
       <source>&lt;b&gt;Forward&lt;/b&gt;&lt;p&gt;Moves one screen forward. If none is available, this action is disabled.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1084" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1090" />
       <source>Home</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1086" />
-      <source>&amp;Home</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1087" />
-      <source>Ctrl+Home</source>
-      <comment>Go|Home</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1092" />
+      <source>&amp;Home</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1093" />
+      <source>Ctrl+Home</source>
+      <comment>Go|Home</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1098" />
       <source>Move to the initial screen</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1094" />
-      <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1100" />
+      <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1106" />
       <source>Reload</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1102" />
-      <source>&amp;Reload</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1103" />
-      <source>Ctrl+R</source>
-      <comment>Go|Reload</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1104" />
-      <source>F5</source>
-      <comment>Go|Reload</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1108" />
-      <source>Reload the current screen</source>
+      <source>&amp;Reload</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1109" />
+      <source>Ctrl+R</source>
+      <comment>Go|Reload</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1110" />
-      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
+      <source>F5</source>
+      <comment>Go|Reload</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1114" />
+      <source>Reload the current screen</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1116" />
+      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1122" />
       <source>Stop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1118" />
-      <source>&amp;Stop</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1119" />
-      <source>Ctrl+.</source>
-      <comment>Go|Stop</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1120" />
-      <source>Esc</source>
-      <comment>Go|Stop</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1124" />
-      <source>Stop loading</source>
+      <source>&amp;Stop</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1125" />
+      <source>Ctrl+.</source>
+      <comment>Go|Stop</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1126" />
-      <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
+      <source>Esc</source>
+      <comment>Go|Stop</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1130" />
+      <source>Stop loading</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1132" />
+      <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1138" />
       <source>Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1134" />
-      <source>&amp;Copy</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1135" />
-      <source>Ctrl+C</source>
-      <comment>Edit|Copy</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1140" />
+      <source>&amp;Copy</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1141" />
+      <source>Ctrl+C</source>
+      <comment>Edit|Copy</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1146" />
       <source>Copy the selected text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1142" />
-      <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" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1148" />
+      <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" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1154" />
       <source>Cut</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1150" />
-      <source>Cu&amp;t</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1151" />
-      <source>Ctrl+X</source>
-      <comment>Edit|Cut</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1156" />
+      <source>Cu&amp;t</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1157" />
+      <source>Ctrl+X</source>
+      <comment>Edit|Cut</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1162" />
       <source>Cut the selected text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1158" />
-      <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" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1164" />
+      <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" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1170" />
       <source>Paste</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1166" />
-      <source>&amp;Paste</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1167" />
-      <source>Ctrl+V</source>
-      <comment>Edit|Paste</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1172" />
+      <source>&amp;Paste</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1173" />
+      <source>Ctrl+V</source>
+      <comment>Edit|Paste</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1178" />
       <source>Paste text from the clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1174" />
-      <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1180" />
+      <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1186" />
       <source>Undo</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1182" />
-      <source>&amp;Undo</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1183" />
-      <source>Ctrl+Z</source>
-      <comment>Edit|Undo</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1188" />
+      <source>&amp;Undo</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1189" />
+      <source>Ctrl+Z</source>
+      <comment>Edit|Undo</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1194" />
       <source>Undo the last edit action</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1190" />
-      <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1196" />
+      <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1202" />
       <source>Redo</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1198" />
-      <source>&amp;Redo</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1199" />
-      <source>Ctrl+Shift+Z</source>
-      <comment>Edit|Redo</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1204" />
+      <source>&amp;Redo</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1205" />
+      <source>Ctrl+Shift+Z</source>
+      <comment>Edit|Redo</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1210" />
       <source>Redo the last edit action</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1206" />
-      <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1212" />
+      <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1218" />
       <source>Select All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1214" />
-      <source>&amp;Select All</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1215" />
-      <source>Ctrl+A</source>
-      <comment>Edit|Select All</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1220" />
+      <source>&amp;Select All</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1221" />
+      <source>Ctrl+A</source>
+      <comment>Edit|Select All</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1226" />
       <source>Select all text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1222" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1228" />
       <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current browser.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1232" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1231" />
-      <source>Unselect</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1233" />
-      <source>Alt+Ctrl+A</source>
-      <comment>Edit|Unselect</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1238" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1237" />
+      <source>Unselect</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1239" />
+      <source>Alt+Ctrl+A</source>
+      <comment>Edit|Unselect</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1244" />
       <source>Clear current selection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1240" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1246" />
       <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1249" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1255" />
       <source>Find...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1251" />
-      <source>&amp;Find...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1252" />
-      <source>Ctrl+F</source>
-      <comment>Edit|Find</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1257" />
+      <source>&amp;Find...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1258" />
+      <source>Ctrl+F</source>
+      <comment>Edit|Find</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1263" />
       <source>Find text in page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1259" />
-      <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1265" />
+      <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1271" />
       <source>Find next</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1267" />
-      <source>Find &amp;next</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1268" />
-      <source>F3</source>
-      <comment>Edit|Find next</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1273" />
+      <source>Find &amp;next</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1274" />
+      <source>F3</source>
+      <comment>Edit|Find next</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1279" />
       <source>Find next occurrence of text in page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1275" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1281" />
       <source>&lt;b&gt;Find next&lt;/b&gt;&lt;p&gt;Find the next occurrence of text in the current page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1284" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1290" />
       <source>Find previous</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1286" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1292" />
       <source>Find &amp;previous</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1287" />
-      <source>Shift+F3</source>
-      <comment>Edit|Find previous</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1293" />
+      <source>Shift+F3</source>
+      <comment>Edit|Find previous</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1299" />
       <source>Find previous occurrence of text in page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1296" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1302" />
       <source>&lt;b&gt;Find previous&lt;/b&gt;&lt;p&gt;Find the previous occurrence of text in the current page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1306" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1312" />
       <source>Manage Bookmarks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1307" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1313" />
       <source>&amp;Manage Bookmarks...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1308" />
-      <source>Ctrl+Shift+B</source>
-      <comment>Help|Manage bookmarks</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1314" />
+      <source>Ctrl+Shift+B</source>
+      <comment>Help|Manage bookmarks</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1320" />
       <source>Open a dialog to manage the bookmarks.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1317" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1323" />
       <source>&lt;b&gt;Manage Bookmarks...&lt;/b&gt;&lt;p&gt;Open a dialog to manage the bookmarks.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1326" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1332" />
       <source>Add Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1328" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1334" />
       <source>Add &amp;Bookmark...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1329" />
-      <source>Ctrl+D</source>
-      <comment>Help|Add bookmark</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1335" />
+      <source>Ctrl+D</source>
+      <comment>Help|Add bookmark</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1341" />
       <source>Open a dialog to add a bookmark.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1337" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1343" />
       <source>&lt;b&gt;Add Bookmark&lt;/b&gt;&lt;p&gt;Open a dialog to add the current URL as a bookmark.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1346" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1352" />
       <source>Add Folder</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1347" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1353" />
       <source>Add &amp;Folder...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1354" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1360" />
       <source>Open a dialog to add a new bookmarks folder.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1357" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1363" />
       <source>&lt;b&gt;Add Folder...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1366" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1372" />
       <source>Bookmark All Tabs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1367" />
-      <source>Bookmark All Tabs...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1373" />
+      <source>Bookmark All Tabs...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1379" />
       <source>Bookmark all open tabs.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1375" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1381" />
       <source>&lt;b&gt;Bookmark All Tabs...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder for all open tabs.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1385" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1391" />
       <source>What's This?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1387" />
-      <source>&amp;What's This?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1388" />
-      <source>Shift+F1</source>
-      <comment>Help|What's This?'</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1393" />
+      <source>&amp;What's This?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1394" />
+      <source>Shift+F1</source>
+      <comment>Help|What's This?'</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1399" />
       <source>Context sensitive help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1395" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1401" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1408" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1414" />
       <source>About</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1408" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1414" />
       <source>&amp;About</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1410" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1416" />
       <source>Display information about this software</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1412" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1418" />
       <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1421" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1427" />
       <source>About Qt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1422" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1428" />
       <source>About &amp;Qt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1429" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1435" />
       <source>Display information about the Qt toolkit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1432" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1438" />
       <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" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1441" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1447" />
       <source>Zoom in</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1443" />
-      <source>Zoom &amp;in</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1444" />
-      <source>Ctrl++</source>
-      <comment>View|Zoom in</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1445" />
-      <source>Zoom In</source>
-      <comment>View|Zoom in</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1449" />
-      <source>Zoom in on the web page</source>
+      <source>Zoom &amp;in</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1450" />
+      <source>Ctrl++</source>
+      <comment>View|Zoom in</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1451" />
+      <source>Zoom In</source>
+      <comment>View|Zoom in</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1455" />
+      <source>Zoom in on the web page</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1457" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the web page. This makes the web page bigger.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1461" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1467" />
       <source>Zoom out</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1463" />
-      <source>Zoom &amp;out</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1464" />
-      <source>Ctrl+-</source>
-      <comment>View|Zoom out</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1465" />
-      <source>Zoom Out</source>
-      <comment>View|Zoom out</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1469" />
-      <source>Zoom out on the web page</source>
+      <source>Zoom &amp;out</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1470" />
+      <source>Ctrl+-</source>
+      <comment>View|Zoom out</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1471" />
+      <source>Zoom Out</source>
+      <comment>View|Zoom out</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1475" />
+      <source>Zoom out on the web page</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1477" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the web page. This makes the web page smaller.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1481" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1487" />
       <source>Zoom reset</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1483" />
-      <source>Zoom &amp;reset</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1484" />
-      <source>Ctrl+0</source>
-      <comment>View|Zoom reset</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1489" />
+      <source>Zoom &amp;reset</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1490" />
+      <source>Ctrl+0</source>
+      <comment>View|Zoom reset</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1495" />
       <source>Reset the zoom of the web page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1491" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1497" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the web page. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1502" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1501" />
-      <source>Show page source</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1503" />
-      <source>Ctrl+U</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1508" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1507" />
+      <source>Show page source</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1509" />
+      <source>Ctrl+U</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1514" />
       <source>Show the page source in an editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1510" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1516" />
       <source>&lt;b&gt;Show page source&lt;/b&gt;&lt;p&gt;Show the page source in an editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1520" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1526" />
       <source>Full Screen</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1522" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1528" />
       <source>&amp;Full Screen</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1529" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1535" />
       <source>Meta+Ctrl+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1531" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1537" />
       <source>F11</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1538" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1537" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1544" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1543" />
       <source>Show next tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1539" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1545" />
       <source>Ctrl+Alt+Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1550" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1549" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1556" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1555" />
       <source>Show previous tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1551" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1557" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1562" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1561" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1568" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1567" />
       <source>Switch between tabs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1563" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1569" />
       <source>Ctrl+1</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1573" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1579" />
       <source>Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1575" />
-      <source>&amp;Preferences...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1581" />
+      <source>&amp;Preferences...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1587" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1583" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1589" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1593" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1599" />
       <source>Languages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1595" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1601" />
       <source>&amp;Languages...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1602" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1608" />
       <source>Configure the accepted languages for web pages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1605" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1611" />
       <source>&lt;b&gt;Languages&lt;/b&gt;&lt;p&gt;Configure the accepted languages for web pages.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1614" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1620" />
       <source>Cookies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1616" />
-      <source>C&amp;ookies...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1622" />
+      <source>C&amp;ookies...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1628" />
       <source>Configure cookies handling</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1624" />
-      <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1630" />
+      <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1636" />
       <source>Personal Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1632" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1638" />
       <source>Personal Information...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1639" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1645" />
       <source>Configure personal information for completing form fields</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1642" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1648" />
       <source>&lt;b&gt;Personal Information...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the personal information used for completing form fields.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1652" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1658" />
       <source>GreaseMonkey Scripts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1654" />
-      <source>GreaseMonkey Scripts...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1660" />
+      <source>GreaseMonkey Scripts...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1666" />
       <source>Configure the GreaseMonkey Scripts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1662" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1668" />
       <source>&lt;b&gt;GreaseMonkey Scripts...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available GreaseMonkey Scripts.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1672" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1678" />
       <source>Edit Message Filters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1674" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1680" />
       <source>Edit Message Filters...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1681" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1687" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1684" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1690" />
       <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1695" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1701" />
       <source>Edit HTML5 Feature Permissions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1697" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1703" />
       <source>Edit HTML5 Feature Permissions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1704" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1710" />
       <source>Edit the remembered HTML5 feature permissions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1707" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1713" />
       <source>&lt;b&gt;Edit HTML5 Feature Permissions&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the remembered HTML5 feature permissions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1720" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1718" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1726" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1724" />
       <source>Sync with Table of Contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1733" />
       <source>Synchronizes the table of contents with current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1730" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1736" />
       <source>&lt;b&gt;Sync with Table of Contents&lt;/b&gt;&lt;p&gt;Synchronizes the table of contents with current page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1741" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1740" />
-      <source>Table of Contents</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1747" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1746" />
+      <source>Table of Contents</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1753" />
       <source>Shows the table of contents window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1749" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1755" />
       <source>&lt;b&gt;Table of Contents&lt;/b&gt;&lt;p&gt;Shows the table of contents window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1760" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1766" />
       <source>Shows the index window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1762" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1768" />
       <source>&lt;b&gt;Index&lt;/b&gt;&lt;p&gt;Shows the index window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1781" />
       <source>Shows the search window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1777" />
-      <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1783" />
+      <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1789" />
       <source>Manage QtHelp Documents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1784" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1790" />
       <source>Manage QtHelp &amp;Documents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1791" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1797" />
       <source>Shows a dialog to manage the QtHelp documentation set</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1794" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1800" />
       <source>&lt;b&gt;Manage QtHelp Documents&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the QtHelp documentation set.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1804" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1810" />
       <source>Reindex Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1805" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1811" />
       <source>&amp;Reindex Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1812" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1818" />
       <source>Reindexes the documentation set</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1815" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1821" />
       <source>&lt;b&gt;Reindex Documentation&lt;/b&gt;&lt;p&gt;Reindexes the documentation set.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1840" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1834" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1828" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1826" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1832" />
       <source>Clear private data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1836" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1842" />
       <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like browsing history, search history or the favicons database.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1846" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1852" />
       <source>Clear icons database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1847" />
-      <source>Clear &amp;icons database</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1853" />
+      <source>Clear &amp;icons database</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1859" />
       <source>Clear the database of favicons</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1855" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1861" />
       <source>&lt;b&gt;Clear icons database&lt;/b&gt;&lt;p&gt;Clears the database of favicons of previously visited URLs.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1867" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1865" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1873" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1871" />
       <source>Manage Saved Favicons</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1874" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1880" />
       <source>Show a dialog to manage the saved favicons</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1877" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1883" />
       <source>&lt;b&gt;Manage Saved Favicons&lt;/b&gt;&lt;p&gt;This shows a dialog to manage the saved favicons of previously visited URLs.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1887" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1893" />
       <source>Configure Search Engines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1888" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1894" />
       <source>Configure Search &amp;Engines...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1895" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1901" />
       <source>Configure the available search engines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1898" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1904" />
       <source>&lt;b&gt;Configure Search Engines...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available search engines.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1908" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1914" />
       <source>Manage Saved Passwords</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1910" />
-      <source>Manage Saved Passwords...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1916" />
+      <source>Manage Saved Passwords...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1922" />
       <source>Manage the saved passwords</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1918" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1924" />
       <source>&lt;b&gt;Manage Saved Passwords...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved passwords.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1927" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1933" />
       <source>Ad Block</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1929" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1935" />
       <source>&amp;Ad Block...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1936" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1942" />
       <source>Configure AdBlock subscriptions and rules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1939" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1945" />
       <source>&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure AdBlock subscriptions and rules.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1949" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1955" />
       <source>Manage SSL Certificate Errors</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1951" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1957" />
       <source>Manage SSL Certificate Errors...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1958" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1964" />
       <source>Manage the accepted SSL certificate Errors</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1961" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1967" />
       <source>&lt;b&gt;Manage SSL Certificate Errors...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the accepted SSL certificate errors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1971" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1977" />
       <source>Manage Safe Browsing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1973" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1979" />
       <source>Manage Safe Browsing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1980" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1986" />
       <source>Configure Safe Browsing and manage local cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1983" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1989" />
       <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1994" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1993" />
-      <source>Downloads</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2000" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1999" />
+      <source>Downloads</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2006" />
       <source>Shows the downloads window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2002" />
-      <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2008" />
+      <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2014" />
       <source>RSS Feeds Dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2010" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2016" />
       <source>&amp;RSS Feeds Dialog...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2011" />
-      <source>Ctrl+Shift+F</source>
-      <comment>Help|RSS Feeds Dialog</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2017" />
+      <source>Ctrl+Shift+F</source>
+      <comment>Help|RSS Feeds Dialog</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2023" />
       <source>Open a dialog showing the configured RSS feeds.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2020" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2026" />
       <source>&lt;b&gt;RSS Feeds Dialog...&lt;/b&gt;&lt;p&gt;Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2031" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2037" />
       <source>Siteinfo Dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2033" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2039" />
       <source>&amp;Siteinfo Dialog...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2034" />
-      <source>Ctrl+Shift+I</source>
-      <comment>Help|Siteinfo Dialog</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2040" />
+      <source>Ctrl+Shift+I</source>
+      <comment>Help|Siteinfo Dialog</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2046" />
       <source>Open a dialog showing some information about the current site.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2043" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2049" />
       <source>&lt;b&gt;Siteinfo Dialog...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the current site.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2053" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2059" />
       <source>Manage User Agent Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2054" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2060" />
       <source>Manage &amp;User Agent Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2061" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2067" />
       <source>Shows a dialog to manage the User Agent settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2064" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2070" />
       <source>&lt;b&gt;Manage User Agent Settings&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the User Agent settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2073" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2079" />
       <source>Synchronize data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2075" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2081" />
       <source>&amp;Synchronize Data...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2082" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2088" />
       <source>Shows a dialog to synchronize data via the network</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2085" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2091" />
       <source>&lt;b&gt;Synchronize Data...&lt;/b&gt;&lt;p&gt;This shows a dialog to synchronize data via the network.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2095" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2101" />
       <source>Manage Saved Zoom Values</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2097" />
-      <source>Manage Saved Zoom Values...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2103" />
+      <source>Manage Saved Zoom Values...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2109" />
       <source>Manage the saved zoom values</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2105" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2111" />
       <source>&lt;b&gt;Manage Saved Zoom Values...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved zoom values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2122" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2128" />
       <source>Toggle the JavaScript console window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2125" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2131" />
       <source>&lt;b&gt;JavaScript Console&lt;/b&gt;&lt;p&gt;This toggles the JavaScript console window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2135" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2134" />
-      <source>Tab Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2141" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2140" />
+      <source>Tab Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2147" />
       <source>Shows the tab manager window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2143" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2149" />
       <source>&lt;b&gt;Tab Manager&lt;/b&gt;&lt;p&gt;Shows the tab manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2151" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2157" />
       <source>Session Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2152" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2158" />
       <source>Session Manager...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2159" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2165" />
       <source>Shows the session manager window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2162" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2168" />
       <source>&lt;b&gt;Session Manager&lt;/b&gt;&lt;p&gt;Shows the session manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2173" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2171" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2179" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2177" />
       <source>Scan current site</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5180" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5170" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2187" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2185" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5185" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5175" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2193" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2191" />
       <source>IP Address Report</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5194" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2199" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2197" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5199" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2205" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2203" />
       <source>Domain Report</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2217" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2223" />
       <source>Keyboard Shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2219" />
-      <source>Keyboard &amp;Shortcuts...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2225" />
+      <source>Keyboard &amp;Shortcuts...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2231" />
       <source>Set the keyboard shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2227" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2233" />
       <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5600" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5581" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2237" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5605" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5586" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2243" />
       <source>Export Keyboard Shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2239" />
-      <source>&amp;Export Keyboard Shortcuts...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2245" />
+      <source>&amp;Export Keyboard Shortcuts...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2251" />
       <source>Export the keyboard shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2247" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2253" />
       <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5620" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2256" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5625" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2262" />
       <source>Import Keyboard Shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2258" />
-      <source>&amp;Import Keyboard Shortcuts...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2264" />
+      <source>&amp;Import Keyboard Shortcuts...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2270" />
       <source>Import the keyboard shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2266" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2272" />
       <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2275" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2281" />
       <source>Protocol Handler Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2276" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2282" />
       <source>Protocol Handler Manager...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2283" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2289" />
       <source>Shows the protocol handler manager window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2286" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2292" />
       <source>&lt;b&gt;Protocol Handler Manager&lt;/b&gt;&lt;p&gt;Shows the protocol handler manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2330" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2336" />
       <source>&amp;File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2524" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2338" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2530" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2344" />
       <source>Sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2362" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2368" />
       <source>&amp;Edit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2596" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2378" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2602" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2384" />
       <source>&amp;View</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2389" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2395" />
       <source>Text Encoding</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2398" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2404" />
       <source>H&amp;istory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2414" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2420" />
       <source>&amp;Bookmarks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2430" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2436" />
       <source>&amp;Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2460" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2466" />
       <source>Global User Agent</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2627" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2472" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2633" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2478" />
       <source>&amp;Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2634" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2479" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2640" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2485" />
       <source>&amp;VirusTotal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2598" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2485" />
-      <source>&amp;Windows</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2604" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2491" />
+      <source>&amp;Windows</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2610" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2497" />
       <source>QtHelp</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2496" />
-      <source>&amp;Toolbars</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2502" />
+      <source>&amp;Toolbars</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2508" />
       <source>&amp;Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2531" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2537" />
       <source>Save</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2551" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2557" />
       <source>Show All History...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2721" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2558" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2564" />
       <source>Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2652" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2658" />
       <source>File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2676" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2682" />
       <source>Edit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2688" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2694" />
       <source>View</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2697" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2703" />
       <source>Find</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2705" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2711" />
       <source>Filter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2712" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2718" />
       <source>Filtered by: </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2732" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2738" />
       <source>Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2740" />
-      <source>Help</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2746" />
+      <source>Help</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2752" />
       <source>VirusTotal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2890" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2896" />
       <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2894" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2900" />
       <source>OK</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2929" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2906" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2935" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2912" />
       <source>HTML Files (*.html *.htm *.mhtml *.mht);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2977" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2983" />
       <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chromium {2} with Security Patches {3}.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2992" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2998" />
       <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chromium {2}.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3127" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3133" />
       <source>Saved Tabs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3310" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3316" />
       <source>Are you sure you want to close the web browser?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3311" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3317" />
       <source>Are you sure you want to close the web browser?
 You have {0} windows with {1} tabs open.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3910" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3916" />
       <source>Could not find any associated content.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3956" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3962" />
       <source>Unfiltered</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4012" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4018" />
       <source>Updating search index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4088" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4094" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4121" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4127" />
       <source>Help Engine</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4717" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4722" />
       <source>System</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4721" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4726" />
       <source>ISO</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4724" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4729" />
       <source>Unicode</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4732" />
       <source>Windows</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4730" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4735" />
       <source>IBM</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4733" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4738" />
       <source>Apple</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4736" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4741" />
       <source>Other</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4763" />
-      <source>Menu Bar</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="4768" />
-      <source>Bookmarks</source>
+      <source>Menu Bar</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="4773" />
+      <source>Bookmarks</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4778" />
       <source>Status Bar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4788" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4793" />
       <source>&amp;Show all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4790" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4795" />
       <source>&amp;Hide all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5136" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5141" />
       <source>VirusTotal Scan</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5137" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5142" />
       <source>&lt;p&gt;The VirusTotal scan could not be scheduled.&lt;p&gt;
 &lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5171" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5176" />
       <source>Enter a valid IPv4 address in dotted quad notation:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5181" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5186" />
       <source>The given IP address is not in dotted quad notation.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5195" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5200" />
       <source>Enter a valid domain name:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5622" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5583" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5627" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5588" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5601" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5606" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
--- a/src/eric7/i18n/eric7_en.ts	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/i18n/eric7_en.ts	Sun Jun 02 09:51:20 2024 +0200
@@ -1721,42 +1721,42 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="217" />
+      <location filename="../Utilities/BackgroundService.py" line="230" />
       <source>Initialization of Background Service</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="218" />
-      <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="231" />
+      <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="244" />
       <source>Restart background client?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="232" />
+      <location filename="../Utilities/BackgroundService.py" line="245" />
       <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It's used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Yes'&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Retry'&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'No'&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="261" />
+      <location filename="../Utilities/BackgroundService.py" line="274" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="502" />
+      <location filename="../Utilities/BackgroundService.py" line="515" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="511" />
+      <location filename="../Utilities/BackgroundService.py" line="524" />
       <source>Background client disconnected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="512" />
+      <location filename="../Utilities/BackgroundService.py" line="525" />
       <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
       <translation type="unfinished" />
     </message>
@@ -9192,665 +9192,665 @@
   <context>
     <name>DebugUI</name>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="210" />
+      <location filename="../Debugger/DebugUI.py" line="207" />
       <source>Notification</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2342" />
-      <location filename="../Debugger/DebugUI.py" line="237" />
+      <location filename="../Debugger/DebugUI.py" line="2339" />
+      <location filename="../Debugger/DebugUI.py" line="234" />
       <source>Run Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="239" />
+      <location filename="../Debugger/DebugUI.py" line="236" />
       <source>&amp;Run Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="245" />
+      <location filename="../Debugger/DebugUI.py" line="242" />
       <source>Run the current Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="247" />
+      <location filename="../Debugger/DebugUI.py" line="244" />
       <source>&lt;b&gt;Run Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2348" />
-      <location filename="../Debugger/DebugUI.py" line="2342" />
-      <location filename="../Debugger/DebugUI.py" line="258" />
+      <location filename="../Debugger/DebugUI.py" line="2345" />
+      <location filename="../Debugger/DebugUI.py" line="2339" />
+      <location filename="../Debugger/DebugUI.py" line="255" />
       <source>Run Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="260" />
+      <location filename="../Debugger/DebugUI.py" line="257" />
       <source>Run &amp;Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="266" />
+      <location filename="../Debugger/DebugUI.py" line="263" />
       <source>Run the current Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="268" />
+      <location filename="../Debugger/DebugUI.py" line="265" />
       <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="280" />
+      <location filename="../Debugger/DebugUI.py" line="277" />
       <source>Coverage run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="282" />
+      <location filename="../Debugger/DebugUI.py" line="279" />
       <source>Coverage run of Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="286" />
+      <source>Perform a coverage run of the current Script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="289" />
-      <source>Perform a coverage run of the current Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="292" />
       <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="303" />
+      <location filename="../Debugger/DebugUI.py" line="300" />
       <source>Coverage run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="305" />
+      <location filename="../Debugger/DebugUI.py" line="302" />
       <source>Coverage run of Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="309" />
+      <source>Perform a coverage run of the current Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="312" />
-      <source>Perform a coverage run of the current Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="315" />
       <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="327" />
+      <location filename="../Debugger/DebugUI.py" line="324" />
       <source>Profile Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="329" />
+      <location filename="../Debugger/DebugUI.py" line="326" />
       <source>Profile Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="335" />
+      <location filename="../Debugger/DebugUI.py" line="332" />
       <source>Profile the current Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="337" />
+      <location filename="../Debugger/DebugUI.py" line="334" />
       <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="347" />
+      <location filename="../Debugger/DebugUI.py" line="344" />
       <source>Profile Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="349" />
+      <location filename="../Debugger/DebugUI.py" line="346" />
       <source>Profile Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="355" />
+      <location filename="../Debugger/DebugUI.py" line="352" />
       <source>Profile the current Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="357" />
+      <location filename="../Debugger/DebugUI.py" line="354" />
       <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2528" />
-      <location filename="../Debugger/DebugUI.py" line="368" />
+      <location filename="../Debugger/DebugUI.py" line="2525" />
+      <location filename="../Debugger/DebugUI.py" line="365" />
       <source>Debug Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="370" />
+      <location filename="../Debugger/DebugUI.py" line="367" />
       <source>&amp;Debug Script...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="376" />
+      <location filename="../Debugger/DebugUI.py" line="373" />
       <source>Debug the current Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="378" />
+      <location filename="../Debugger/DebugUI.py" line="375" />
       <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2534" />
-      <location filename="../Debugger/DebugUI.py" line="2528" />
-      <location filename="../Debugger/DebugUI.py" line="390" />
+      <location filename="../Debugger/DebugUI.py" line="2531" />
+      <location filename="../Debugger/DebugUI.py" line="2525" />
+      <location filename="../Debugger/DebugUI.py" line="387" />
       <source>Debug Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="392" />
+      <location filename="../Debugger/DebugUI.py" line="389" />
       <source>Debug &amp;Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="398" />
+      <location filename="../Debugger/DebugUI.py" line="395" />
       <source>Debug the current Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="400" />
+      <location filename="../Debugger/DebugUI.py" line="397" />
       <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="414" />
-      <location filename="../Debugger/DebugUI.py" line="412" />
+      <location filename="../Debugger/DebugUI.py" line="411" />
+      <location filename="../Debugger/DebugUI.py" line="409" />
       <source>Restart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="420" />
+      <location filename="../Debugger/DebugUI.py" line="417" />
       <source>Restart the last debugged script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="422" />
+      <location filename="../Debugger/DebugUI.py" line="419" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="631" />
-      <location filename="../Debugger/DebugUI.py" line="436" />
-      <location filename="../Debugger/DebugUI.py" line="434" />
+      <location filename="../Debugger/DebugUI.py" line="628" />
+      <location filename="../Debugger/DebugUI.py" line="433" />
+      <location filename="../Debugger/DebugUI.py" line="431" />
       <source>Stop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="442" />
+      <location filename="../Debugger/DebugUI.py" line="439" />
       <source>Stop the running script.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="444" />
+      <location filename="../Debugger/DebugUI.py" line="441" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="455" />
+      <location filename="../Debugger/DebugUI.py" line="452" />
       <source>Continue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="457" />
+      <location filename="../Debugger/DebugUI.py" line="454" />
       <source>&amp;Continue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="463" />
+      <location filename="../Debugger/DebugUI.py" line="460" />
       <source>Continue running the program from the current line</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="465" />
+      <location filename="../Debugger/DebugUI.py" line="462" />
       <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="476" />
+      <location filename="../Debugger/DebugUI.py" line="473" />
       <source>Continue to Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="478" />
+      <location filename="../Debugger/DebugUI.py" line="475" />
       <source>Continue &amp;To Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="485" />
+      <location filename="../Debugger/DebugUI.py" line="482" />
       <source>Continue running the program from the current line to the current cursor position</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="491" />
+      <location filename="../Debugger/DebugUI.py" line="488" />
       <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="501" />
+      <location filename="../Debugger/DebugUI.py" line="498" />
       <source>Continue Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="503" />
+      <location filename="../Debugger/DebugUI.py" line="500" />
       <source>Continue &amp;Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="510" />
+      <location filename="../Debugger/DebugUI.py" line="507" />
       <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="516" />
+      <location filename="../Debugger/DebugUI.py" line="513" />
       <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="527" />
+      <location filename="../Debugger/DebugUI.py" line="524" />
       <source>Move Instruction Pointer to Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="529" />
+      <location filename="../Debugger/DebugUI.py" line="526" />
       <source>&amp;Jump To Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="536" />
+      <location filename="../Debugger/DebugUI.py" line="533" />
       <source>Skip the code from the current line to the current cursor position</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="542" />
+      <location filename="../Debugger/DebugUI.py" line="539" />
       <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="556" />
+      <location filename="../Debugger/DebugUI.py" line="553" />
       <source>Single Step</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="558" />
+      <location filename="../Debugger/DebugUI.py" line="555" />
       <source>Sin&amp;gle Step</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="564" />
+      <location filename="../Debugger/DebugUI.py" line="561" />
       <source>Execute a single Python statement</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="566" />
+      <location filename="../Debugger/DebugUI.py" line="563" />
       <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="578" />
+      <location filename="../Debugger/DebugUI.py" line="575" />
       <source>Step Over</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="580" />
+      <location filename="../Debugger/DebugUI.py" line="577" />
       <source>Step &amp;Over</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="587" />
+      <location filename="../Debugger/DebugUI.py" line="584" />
       <source>Execute a single Python statement staying in the current frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="593" />
+      <location filename="../Debugger/DebugUI.py" line="590" />
       <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="606" />
+      <location filename="../Debugger/DebugUI.py" line="603" />
       <source>Step Out</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="608" />
+      <location filename="../Debugger/DebugUI.py" line="605" />
       <source>Step Ou&amp;t</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="612" />
+      <source>Execute Python statements until leaving the current frame</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="615" />
-      <source>Execute Python statements until leaving the current frame</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="618" />
       <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="633" />
+      <location filename="../Debugger/DebugUI.py" line="630" />
       <source>&amp;Stop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="639" />
+      <location filename="../Debugger/DebugUI.py" line="636" />
       <source>Stop debugging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="641" />
+      <location filename="../Debugger/DebugUI.py" line="638" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="647" />
+      <location filename="../Debugger/DebugUI.py" line="644" />
       <source>Variables Type Filter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="648" />
+      <location filename="../Debugger/DebugUI.py" line="645" />
       <source>Varia&amp;bles Type Filter...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="654" />
+      <location filename="../Debugger/DebugUI.py" line="651" />
       <source>Configure variables type filter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="656" />
+      <location filename="../Debugger/DebugUI.py" line="653" />
       <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="667" />
+      <location filename="../Debugger/DebugUI.py" line="664" />
       <source>Exceptions Filter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="668" />
+      <location filename="../Debugger/DebugUI.py" line="665" />
       <source>&amp;Exceptions Filter...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="674" />
+      <location filename="../Debugger/DebugUI.py" line="671" />
       <source>Configure exceptions filter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="676" />
+      <location filename="../Debugger/DebugUI.py" line="673" />
       <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="688" />
+      <location filename="../Debugger/DebugUI.py" line="685" />
       <source>Ignored Exceptions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="689" />
+      <location filename="../Debugger/DebugUI.py" line="686" />
       <source>&amp;Ignored Exceptions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="695" />
+      <location filename="../Debugger/DebugUI.py" line="692" />
       <source>Configure ignored exceptions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="697" />
+      <location filename="../Debugger/DebugUI.py" line="694" />
       <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="719" />
-      <location filename="../Debugger/DebugUI.py" line="713" />
-      <location filename="../Debugger/DebugUI.py" line="711" />
+      <location filename="../Debugger/DebugUI.py" line="716" />
+      <location filename="../Debugger/DebugUI.py" line="710" />
+      <location filename="../Debugger/DebugUI.py" line="708" />
       <source>Toggle Breakpoint</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="714" />
+      <location filename="../Debugger/DebugUI.py" line="711" />
       <source>Shift+F11</source>
       <comment>Debug|Toggle Breakpoint</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="721" />
+      <location filename="../Debugger/DebugUI.py" line="718" />
       <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="739" />
-      <location filename="../Debugger/DebugUI.py" line="731" />
+      <location filename="../Debugger/DebugUI.py" line="736" />
+      <location filename="../Debugger/DebugUI.py" line="728" />
       <source>Edit Breakpoint</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="733" />
+      <location filename="../Debugger/DebugUI.py" line="730" />
       <source>Edit Breakpoint...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="734" />
+      <location filename="../Debugger/DebugUI.py" line="731" />
       <source>Shift+F12</source>
       <comment>Debug|Edit Breakpoint</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="741" />
+      <location filename="../Debugger/DebugUI.py" line="738" />
       <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="759" />
-      <location filename="../Debugger/DebugUI.py" line="753" />
-      <location filename="../Debugger/DebugUI.py" line="751" />
+      <location filename="../Debugger/DebugUI.py" line="756" />
+      <location filename="../Debugger/DebugUI.py" line="750" />
+      <location filename="../Debugger/DebugUI.py" line="748" />
       <source>Next Breakpoint</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="754" />
+      <location filename="../Debugger/DebugUI.py" line="751" />
       <source>Ctrl+Shift+PgDown</source>
       <comment>Debug|Next Breakpoint</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="761" />
+      <location filename="../Debugger/DebugUI.py" line="758" />
       <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="778" />
-      <location filename="../Debugger/DebugUI.py" line="772" />
-      <location filename="../Debugger/DebugUI.py" line="770" />
+      <location filename="../Debugger/DebugUI.py" line="775" />
+      <location filename="../Debugger/DebugUI.py" line="769" />
+      <location filename="../Debugger/DebugUI.py" line="767" />
       <source>Previous Breakpoint</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="773" />
+      <location filename="../Debugger/DebugUI.py" line="770" />
       <source>Ctrl+Shift+PgUp</source>
       <comment>Debug|Previous Breakpoint</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="780" />
+      <location filename="../Debugger/DebugUI.py" line="777" />
       <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="796" />
-      <location filename="../Debugger/DebugUI.py" line="790" />
-      <location filename="../Debugger/DebugUI.py" line="789" />
+      <location filename="../Debugger/DebugUI.py" line="793" />
+      <location filename="../Debugger/DebugUI.py" line="787" />
+      <location filename="../Debugger/DebugUI.py" line="786" />
       <source>Clear Breakpoints</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="798" />
+      <location filename="../Debugger/DebugUI.py" line="795" />
       <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="822" />
+      <location filename="../Debugger/DebugUI.py" line="819" />
       <source>&amp;Debug</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="824" />
+      <location filename="../Debugger/DebugUI.py" line="821" />
       <source>Sta&amp;rt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="826" />
+      <location filename="../Debugger/DebugUI.py" line="823" />
       <source>&amp;Breakpoints</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="869" />
-      <location filename="../Debugger/DebugUI.py" line="867" />
+      <location filename="../Debugger/DebugUI.py" line="866" />
+      <location filename="../Debugger/DebugUI.py" line="864" />
       <source>Start</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="882" />
-      <location filename="../Debugger/DebugUI.py" line="880" />
+      <location filename="../Debugger/DebugUI.py" line="879" />
+      <location filename="../Debugger/DebugUI.py" line="877" />
       <source>Debug</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1345" />
+      <location filename="../Debugger/DebugUI.py" line="1342" />
       <source>Message: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1349" />
+      <location filename="../Debugger/DebugUI.py" line="1346" />
       <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1354" />
+      <location filename="../Debugger/DebugUI.py" line="1351" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1366" />
+      <location filename="../Debugger/DebugUI.py" line="1363" />
       <source>Program terminated</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1402" />
+      <location filename="../Debugger/DebugUI.py" line="1399" />
       <source>The program being debugged contains an unspecified syntax error.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1422" />
+      <location filename="../Debugger/DebugUI.py" line="1419" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1450" />
+      <location filename="../Debugger/DebugUI.py" line="1447" />
       <source>An unhandled exception occured. See the shell window for details.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1497" />
+      <location filename="../Debugger/DebugUI.py" line="1494" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1515" />
+      <location filename="../Debugger/DebugUI.py" line="1512" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1573" />
+      <location filename="../Debugger/DebugUI.py" line="1570" />
       <source>&lt;p&gt;The program generate the signal "{0}".&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1591" />
+      <location filename="../Debugger/DebugUI.py" line="1588" />
       <source>The program being debugged has terminated unexpectedly.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1652" />
+      <location filename="../Debugger/DebugUI.py" line="1649" />
       <source>No locals available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1699" />
+      <location filename="../Debugger/DebugUI.py" line="1696" />
       <source>Breakpoint Condition Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1700" />
+      <location filename="../Debugger/DebugUI.py" line="1697" />
       <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1757" />
+      <location filename="../Debugger/DebugUI.py" line="1754" />
       <source>Watch Expression Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1758" />
+      <location filename="../Debugger/DebugUI.py" line="1755" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1786" />
+      <location filename="../Debugger/DebugUI.py" line="1783" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1791" />
+      <location filename="../Debugger/DebugUI.py" line="1788" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1797" />
+      <location filename="../Debugger/DebugUI.py" line="1794" />
       <source>Watch expression already exists</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1962" />
-      <location filename="../Debugger/DebugUI.py" line="1953" />
+      <location filename="../Debugger/DebugUI.py" line="1959" />
+      <location filename="../Debugger/DebugUI.py" line="1950" />
       <source>Coverage Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1955" />
+      <location filename="../Debugger/DebugUI.py" line="1952" />
       <source>Coverage Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2349" />
-      <location filename="../Debugger/DebugUI.py" line="2158" />
-      <location filename="../Debugger/DebugUI.py" line="1963" />
+      <location filename="../Debugger/DebugUI.py" line="2346" />
+      <location filename="../Debugger/DebugUI.py" line="2155" />
+      <location filename="../Debugger/DebugUI.py" line="1960" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2157" />
-      <location filename="../Debugger/DebugUI.py" line="2148" />
+      <location filename="../Debugger/DebugUI.py" line="2154" />
+      <location filename="../Debugger/DebugUI.py" line="2145" />
       <source>Profile Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2150" />
+      <location filename="../Debugger/DebugUI.py" line="2147" />
       <source>Profile Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2535" />
+      <location filename="../Debugger/DebugUI.py" line="2532" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation type="unfinished" />
     </message>
@@ -10523,12 +10523,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1451" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1458" />
       <source>Debug Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1452" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1459" />
       <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -12348,7 +12348,7 @@
   <context>
     <name>Editor</name>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3527" />
+      <location filename="../QScintilla/Editor.py" line="3525" />
       <location filename="../QScintilla/Editor.py" line="470" />
       <location filename="../QScintilla/Editor.py" line="455" />
       <source>Open File</source>
@@ -12420,7 +12420,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9939" />
+      <location filename="../QScintilla/Editor.py" line="9937" />
       <location filename="../QScintilla/Editor.py" line="969" />
       <source>Generate Docstring</source>
       <translation type="unfinished" />
@@ -12698,7 +12698,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9026" />
+      <location filename="../QScintilla/Editor.py" line="9024" />
       <location filename="../QScintilla/Editor.py" line="1367" />
       <source>Check spelling...</source>
       <translation type="unfinished" />
@@ -12759,7 +12759,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6498" />
+      <location filename="../QScintilla/Editor.py" line="6496" />
       <location filename="../QScintilla/Editor.py" line="1452" />
       <source>Enable breakpoint</source>
       <translation type="unfinished" />
@@ -12921,444 +12921,444 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="2701" />
+      <location filename="../QScintilla/Editor.py" line="2699" />
       <source>Add Breakpoint</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="2702" />
+      <location filename="../QScintilla/Editor.py" line="2700" />
       <source>No Python byte code will be created for the selected line. No break point will be set!</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3056" />
+      <location filename="../QScintilla/Editor.py" line="3054" />
       <source>Printing...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="3071" />
+      <source>Printing completed</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="3073" />
-      <source>Printing completed</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="3075" />
       <source>Error while printing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3078" />
+      <location filename="../QScintilla/Editor.py" line="3076" />
       <source>Printing aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3460" />
+      <location filename="../QScintilla/Editor.py" line="3458" />
       <source>File Modified</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3461" />
+      <location filename="../QScintilla/Editor.py" line="3459" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3528" />
+      <location filename="../QScintilla/Editor.py" line="3526" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3719" />
-      <location filename="../QScintilla/Editor.py" line="3700" />
-      <location filename="../QScintilla/Editor.py" line="3660" />
+      <location filename="../QScintilla/Editor.py" line="3717" />
+      <location filename="../QScintilla/Editor.py" line="3698" />
+      <location filename="../QScintilla/Editor.py" line="3658" />
       <source>Save File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3661" />
+      <location filename="../QScintilla/Editor.py" line="3659" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3720" />
+      <location filename="../QScintilla/Editor.py" line="3718" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3864" />
+      <location filename="../QScintilla/Editor.py" line="3862" />
       <source>Save File to Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3865" />
+      <location filename="../QScintilla/Editor.py" line="3863" />
       <source>Enter the complete device file path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5653" />
+      <location filename="../QScintilla/Editor.py" line="5651" />
       <source>Autocompletion</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5654" />
+      <location filename="../QScintilla/Editor.py" line="5652" />
       <source>Autocompletion is not available because there is no autocompletion source set.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5788" />
+      <location filename="../QScintilla/Editor.py" line="5786" />
       <source>Auto-Completion Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5789" />
+      <location filename="../QScintilla/Editor.py" line="5787" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6085" />
+      <location filename="../QScintilla/Editor.py" line="6083" />
       <source>Call-Tips Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6086" />
+      <location filename="../QScintilla/Editor.py" line="6084" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6502" />
+      <location filename="../QScintilla/Editor.py" line="6500" />
       <source>Disable breakpoint</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6917" />
+      <location filename="../QScintilla/Editor.py" line="6915" />
       <source>Code Coverage</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6918" />
+      <location filename="../QScintilla/Editor.py" line="6916" />
       <source>Please select a coverage file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6993" />
-      <location filename="../QScintilla/Editor.py" line="6985" />
+      <location filename="../QScintilla/Editor.py" line="6991" />
+      <location filename="../QScintilla/Editor.py" line="6983" />
       <source>Show Code Coverage Annotations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6986" />
+      <location filename="../QScintilla/Editor.py" line="6984" />
       <source>All lines have been covered.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6994" />
+      <location filename="../QScintilla/Editor.py" line="6992" />
       <source>There is no coverage file available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7102" />
+      <location filename="../QScintilla/Editor.py" line="7100" />
       <source>Profile Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7103" />
+      <location filename="../QScintilla/Editor.py" line="7101" />
       <source>Please select a profile file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7265" />
-      <location filename="../QScintilla/Editor.py" line="7259" />
+      <location filename="../QScintilla/Editor.py" line="7263" />
+      <location filename="../QScintilla/Editor.py" line="7257" />
       <source>Syntax Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7266" />
+      <location filename="../QScintilla/Editor.py" line="7264" />
       <source>No syntax error message available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7513" />
-      <location filename="../QScintilla/Editor.py" line="7507" />
+      <location filename="../QScintilla/Editor.py" line="7511" />
+      <location filename="../QScintilla/Editor.py" line="7505" />
       <source>Warning</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7513" />
+      <location filename="../QScintilla/Editor.py" line="7511" />
       <source>No warning messages available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7592" />
+      <location filename="../QScintilla/Editor.py" line="7590" />
       <source>Info: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7608" />
-      <location filename="../QScintilla/Editor.py" line="7594" />
+      <location filename="../QScintilla/Editor.py" line="7606" />
+      <location filename="../QScintilla/Editor.py" line="7592" />
       <source>Error: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7596" />
+      <location filename="../QScintilla/Editor.py" line="7594" />
       <source>Style: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7601" />
+      <location filename="../QScintilla/Editor.py" line="7599" />
       <source>Warning: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7729" />
       <source>Macro Name</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7729" />
       <source>Select a macro name:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7757" />
+      <location filename="../QScintilla/Editor.py" line="7755" />
       <source>Load macro file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7803" />
-      <location filename="../QScintilla/Editor.py" line="7759" />
-      <source>Macro files (*.macro)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7781" />
-      <location filename="../QScintilla/Editor.py" line="7771" />
-      <source>Error loading macro</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7772" />
-      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7782" />
-      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="7801" />
+      <location filename="../QScintilla/Editor.py" line="7757" />
+      <source>Macro files (*.macro)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7779" />
+      <location filename="../QScintilla/Editor.py" line="7769" />
+      <source>Error loading macro</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7770" />
+      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7780" />
+      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7799" />
       <source>Save macro file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7819" />
+      <location filename="../QScintilla/Editor.py" line="7817" />
       <source>Save macro</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7820" />
+      <location filename="../QScintilla/Editor.py" line="7818" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7835" />
+      <location filename="../QScintilla/Editor.py" line="7833" />
       <source>Error saving macro</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7836" />
+      <location filename="../QScintilla/Editor.py" line="7834" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7849" />
+      <location filename="../QScintilla/Editor.py" line="7847" />
       <source>Start Macro Recording</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7850" />
+      <location filename="../QScintilla/Editor.py" line="7848" />
       <source>Macro recording is already active. Start new?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7876" />
+      <location filename="../QScintilla/Editor.py" line="7874" />
       <source>Macro Recording</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7877" />
+      <location filename="../QScintilla/Editor.py" line="7875" />
       <source>Enter name of the macro:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8060" />
+      <location filename="../QScintilla/Editor.py" line="8058" />
       <source>{0} (ro)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8245" />
+      <location filename="../QScintilla/Editor.py" line="8243" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8251" />
+      <location filename="../QScintilla/Editor.py" line="8249" />
       <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8258" />
+      <location filename="../QScintilla/Editor.py" line="8256" />
       <source>File changed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8351" />
+      <location filename="../QScintilla/Editor.py" line="8349" />
       <source>Reload File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8352" />
+      <location filename="../QScintilla/Editor.py" line="8350" />
       <source>&lt;p&gt;The editor contains unsaved modifications.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reloading it.&lt;/p&gt;&lt;p&gt;Shall the editor really be reloaded?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8452" />
+      <location filename="../QScintilla/Editor.py" line="8450" />
       <source>Drop Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8453" />
+      <location filename="../QScintilla/Editor.py" line="8451" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="8472" />
+      <source>Resources</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="8474" />
-      <source>Resources</source>
+      <source>Add file...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="8475" />
+      <source>Add files...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="8476" />
-      <source>Add file...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="8477" />
-      <source>Add files...</source>
+      <source>Add aliased file...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="8478" />
-      <source>Add aliased file...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="8480" />
       <source>Add localized resource...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8483" />
+      <location filename="../QScintilla/Editor.py" line="8481" />
       <source>Add resource frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8503" />
+      <location filename="../QScintilla/Editor.py" line="8501" />
       <source>Add file resource</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8517" />
+      <location filename="../QScintilla/Editor.py" line="8515" />
       <source>Add file resources</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8541" />
-      <location filename="../QScintilla/Editor.py" line="8535" />
+      <location filename="../QScintilla/Editor.py" line="8539" />
+      <location filename="../QScintilla/Editor.py" line="8533" />
       <source>Add aliased file resource</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8542" />
+      <location filename="../QScintilla/Editor.py" line="8540" />
       <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8617" />
+      <location filename="../QScintilla/Editor.py" line="8615" />
       <source>Package Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8618" />
+      <location filename="../QScintilla/Editor.py" line="8616" />
       <source>Include class attributes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8638" />
+      <location filename="../QScintilla/Editor.py" line="8636" />
       <source>Imports Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8639" />
+      <location filename="../QScintilla/Editor.py" line="8637" />
       <source>Include imports from external modules?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8658" />
+      <location filename="../QScintilla/Editor.py" line="8656" />
       <source>Application Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8659" />
+      <location filename="../QScintilla/Editor.py" line="8657" />
       <source>Include module names?</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="9028" />
+      <source>Add to dictionary</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="9030" />
-      <source>Add to dictionary</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="9032" />
       <source>Ignore All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9479" />
+      <location filename="../QScintilla/Editor.py" line="9477" />
       <source>Sort Lines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9480" />
+      <location filename="../QScintilla/Editor.py" line="9478" />
       <source>The selection contains illegal data for a numerical sort.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9573" />
+      <location filename="../QScintilla/Editor.py" line="9571" />
       <source>Register Mouse Click Handler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9574" />
+      <location filename="../QScintilla/Editor.py" line="9572" />
       <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9667" />
+      <location filename="../QScintilla/Editor.py" line="9665" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9673" />
+      <location filename="../QScintilla/Editor.py" line="9671" />
       <source>{0:4d}    {1}
     =&gt;  {2}</source>
       <comment>line number, source code, file name</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9742" />
+      <location filename="../QScintilla/Editor.py" line="9740" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9743" />
+      <location filename="../QScintilla/Editor.py" line="9741" />
       <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -18534,12 +18534,12 @@
   <context>
     <name>EricApplication</name>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="227" />
+      <location filename="../EricWidgets/EricApplication.py" line="226" />
       <source>Loading Style Sheet</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="230" />
+      <location filename="../EricWidgets/EricApplication.py" line="229" />
       <source>&lt;p&gt;The Qt Style Sheet file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -18685,12 +18685,12 @@
   <context>
     <name>EricJsonServer</name>
     <message>
-      <location filename="../EricNetwork/EricJsonServer.py" line="185" />
+      <location filename="../EricNetwork/EricJsonServer.py" line="199" />
       <source>JSON Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricNetwork/EricJsonServer.py" line="186" />
+      <location filename="../EricNetwork/EricJsonServer.py" line="200" />
       <source>&lt;p&gt;The response received from the client could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -19161,39 +19161,39 @@
   <context>
     <name>EricPathPickerBase</name>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="178" />
-      <location filename="../EricWidgets/EricPathPicker.py" line="107" />
-      <location filename="../EricWidgets/EricPathPicker.py" line="100" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="177" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="106" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="99" />
       <source>Enter Path Name</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="175" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="174" />
       <source>Enter Path Names separated by ';'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="520" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="519" />
       <source>Choose a file to open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="522" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="521" />
       <source>Choose files to open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="524" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="523" />
       <source>Choose files and directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="530" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="529" />
       <source>Choose a file to save</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="532" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="531" />
       <source>Choose a directory</source>
       <translation type="unfinished" />
     </message>
@@ -19971,12 +19971,12 @@
   <context>
     <name>EricTldExtractor</name>
     <message>
-      <location filename="../EricNetwork/EricTldExtractor.py" line="294" />
+      <location filename="../EricNetwork/EricTldExtractor.py" line="293" />
       <source>TLD Data File not found</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricNetwork/EricTldExtractor.py" line="295" />
+      <location filename="../EricNetwork/EricTldExtractor.py" line="294" />
       <source>&lt;p&gt;The file 'effective_tld_names.dat' was not found!&lt;br/&gt;You can download it from '&lt;a href="{0}"&gt;&lt;b&gt;here&lt;/b&gt;&lt;/a&gt;' to one of the following paths:&lt;/p&gt;&lt;ul&gt;{1}&lt;/ul&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -31858,77 +31858,77 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="573" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="575" />
       <source>Backward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="578" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="580" />
       <source>Forward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="583" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="585" />
       <source>Reload</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="595" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="597" />
       <source>Copy Page URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="601" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="603" />
       <source>Bookmark Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="609" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="611" />
       <source>Zoom in</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="614" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="616" />
       <source>Zoom out</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="619" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="621" />
       <source>Zoom reset</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="625" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="627" />
       <source>Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="631" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="633" />
       <source>Select All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="638" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="640" />
       <source>Close</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="643" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="645" />
       <source>Close Others</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="661" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="663" />
       <source>Open Link in New Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="668" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="670" />
       <source>Open Link in Background Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="676" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="678" />
       <source>Copy URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
@@ -31936,184 +31936,184 @@
   <context>
     <name>HelpViewerWidget</name>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="126" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="127" />
       <source>Open a local file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="132" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="133" />
       <source>Select action from menu</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="148" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="149" />
       <source>Move one page backward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="153" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="154" />
       <source>Move one page forward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="165" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="166" />
       <source>Reload the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="176" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="177" />
       <source>Zoom in on the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="182" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="183" />
       <source>Zoom out on the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="189" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="190" />
       <source>Reset the zoom level of the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="201" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="202" />
       <source>Add a new empty page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="207" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="208" />
       <source>Close the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="218" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="219" />
       <source>Show or hide the search pane</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="294" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="295" />
       <source>Show list of open pages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="297" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="298" />
       <source>Show the table of contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="300" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="301" />
       <source>Show the help document index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="303" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="304" />
       <source>Show the help search window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="306" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="307" />
       <source>Show list of bookmarks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
-      <source>eric API Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="445" />
-      <source>Python 3 Documentation</source>
+      <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="446" />
-      <source>Qt5 Documentation</source>
+      <source>Python 3 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="447" />
-      <source>Qt6 Documentation</source>
+      <source>Qt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
-      <source>PyQt5 Documentation</source>
+      <source>Qt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
-      <source>PyQt6 Documentation</source>
+      <source>PyQt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
-      <source>PySide2 Documentation</source>
+      <source>PyQt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
+      <source>PySide2 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="452" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="508" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="509" />
       <source>Open HTML File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="510" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="511" />
       <source>HTML Files (*.htm *.html);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="697" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="698" />
       <source>Help Engine</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="721" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="722" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="732" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="733" />
       <source>eric Help Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="757" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="758" />
       <source>Manage QtHelp Documents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="760" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="761" />
       <source>Reindex Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="765" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="766" />
       <source>Configure Help Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="858" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="838" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="859" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="839" />
       <source>Clear History</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="961" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="962" />
       <source>Updating search index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1019" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1020" />
       <source>Filtered by: </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1055" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1050" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1056" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1051" />
       <source>Unfiltered</source>
       <translation type="unfinished" />
     </message>
@@ -41648,22 +41648,22 @@
   <context>
     <name>Histedit</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="76" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="75" />
       <source>Starting histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="104" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="102" />
       <source>Continue histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="131" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="129" />
       <source>Abort histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="159" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="157" />
       <source>Edit Plan</source>
       <translation type="unfinished" />
     </message>
@@ -49734,17 +49734,17 @@
   <context>
     <name>LogViewerPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="36" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="33" />
       <source>&lt;b&gt;Message Filters for Standard Output&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stdout.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="43" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="40" />
       <source>&lt;b&gt;Message Filters for Standard Error &lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stderr.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="50" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="47" />
       <source>&lt;b&gt;Message Filters for both&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stdout or stderr.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -51302,8 +51302,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="364" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="347" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="361" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="344" />
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.ui" line="0" />
       <source>Press to show the password</source>
@@ -51587,66 +51587,66 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="56" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="53" />
       <source>Automatic</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="55" />
+      <source>Light</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="58" />
-      <source>Light</source>
+      <source>Dark</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="61" />
-      <source>Dark</source>
+      <source>Blue Cerulean</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="64" />
-      <source>Blue Cerulean</source>
+      <source>Brown Sand</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="67" />
-      <source>Brown Sand</source>
+      <source>Blue NCS</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="70" />
-      <source>Blue NCS</source>
+      <source>High Contrast</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="73" />
-      <source>High Contrast</source>
+      <source>Blue Icy</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="76" />
-      <source>Blue Icy</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="79" />
       <source>Qt</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="90" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="88" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="85" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="82" />
+      <source>All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="93" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="91" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="88" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="85" />
-      <source>All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="96" />
       <source>open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="360" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="343" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="357" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="340" />
       <source>Press to hide the password</source>
       <translation type="unfinished" />
     </message>
@@ -57860,62 +57860,62 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="44" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="42" />
       <source>Enter requirements file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="47" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="45" />
       <source>Press to select the requirements file through a file selection dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="50" />
+      <source>Text Files (*.txt);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="52" />
-      <source>Text Files (*.txt);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="54" />
       <source>Enter 'pyproject.toml' file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="57" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="55" />
       <source>Press to select the 'pyproject.toml' file through a file selection dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="60" />
+      <source>TOML Files (*.toml);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="62" />
-      <source>TOML Files (*.toml);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="64" />
       <source>Enter package file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="67" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="65" />
       <source>Press to select the package file through a file selection dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="73" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="71" />
       <source>Python Wheel (*.whl);;Archive Files (*.tar.gz *.zip);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="80" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="78" />
       <source>Enter file name:</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="81" />
+      <source>Press to select a file through a file selection dialog.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="83" />
-      <source>Press to select a file through a file selection dialog.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="85" />
       <source>All Files (*)</source>
       <translation type="unfinished" />
     </message>
@@ -60341,18 +60341,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1901" />
+      <location filename="../Preferences/__init__.py" line="1907" />
       <source>Export Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1930" />
-      <location filename="../Preferences/__init__.py" line="1903" />
+      <location filename="../Preferences/__init__.py" line="1936" />
+      <location filename="../Preferences/__init__.py" line="1909" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1928" />
+      <location filename="../Preferences/__init__.py" line="1934" />
       <source>Import Preferences</source>
       <translation type="unfinished" />
     </message>
@@ -62024,9 +62024,9 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6752" />
-      <location filename="../Project/Project.py" line="6723" />
-      <location filename="../Project/Project.py" line="6677" />
+      <location filename="../Project/Project.py" line="6746" />
+      <location filename="../Project/Project.py" line="6717" />
+      <location filename="../Project/Project.py" line="6671" />
       <location filename="../Project/Project.py" line="4820" />
       <source>Execute Make</source>
       <translation type="unfinished" />
@@ -62047,7 +62047,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6729" />
+      <location filename="../Project/Project.py" line="6723" />
       <location filename="../Project/Project.py" line="4839" />
       <source>Test for Changes</source>
       <translation type="unfinished" />
@@ -62582,37 +62582,37 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6678" />
+      <location filename="../Project/Project.py" line="6672" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6724" />
+      <location filename="../Project/Project.py" line="6718" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6732" />
+      <location filename="../Project/Project.py" line="6726" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6737" />
+      <location filename="../Project/Project.py" line="6731" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6753" />
+      <location filename="../Project/Project.py" line="6747" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7172" />
+      <location filename="../Project/Project.py" line="7166" />
       <source>Interpreter Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7173" />
+      <location filename="../Project/Project.py" line="7167" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation type="unfinished" />
     </message>
@@ -73155,7 +73155,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2178" />
+      <location filename="../QScintilla/Shell.py" line="2179" />
       <location filename="../QScintilla/Shell.py" line="1907" />
       <location filename="../QScintilla/Shell.py" line="1906" />
       <location filename="../QScintilla/Shell.py" line="401" />
@@ -73284,59 +73284,59 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2329" />
+      <location filename="../QScintilla/Shell.py" line="2330" />
       <source>Drop Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2330" />
+      <location filename="../QScintilla/Shell.py" line="2331" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2576" />
-      <location filename="../QScintilla/Shell.py" line="2562" />
-      <location filename="../QScintilla/Shell.py" line="2541" />
-      <source>Save Shell Contents</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="2543" />
-      <source>Text Files (*.txt);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="2563" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/Shell.py" line="2577" />
+      <location filename="../QScintilla/Shell.py" line="2563" />
+      <location filename="../QScintilla/Shell.py" line="2542" />
+      <source>Save Shell Contents</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2544" />
+      <source>Text Files (*.txt);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2564" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2578" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2591" />
+      <location filename="../QScintilla/Shell.py" line="2592" />
       <source>&lt;tr&gt;&lt;td&gt;%restart&lt;/td&gt;&lt;td&gt;Kill the shell and start a new one.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%clear&lt;/td&gt;&lt;td&gt;Clear the display of the shell window.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%start [environment]&lt;/td&gt;&lt;td&gt;Start a shell for a virtual environment with the given name. If no name is given, a default shell is started.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%envs&lt;br/&gt;%environments&lt;/td&gt;&lt;td&gt;Show a list of known virtual environment names.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%which&lt;/td&gt;&lt;td&gt;Show the name of the active virtual environment.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%hist [n]&lt;br/&gt;%history [n]&lt;/td&gt;&lt;td&gt;Show the most recent 'n' entries of the history. If 'n' is not given, show all entries.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%shist&lt;br/&gt;%shistory&lt;br/&gt;%select_history&lt;/td&gt;&lt;td&gt;Select a command from the history.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%chist&lt;br/&gt;%chistory&lt;br/&gt;%clear_history&lt;/td&gt;&lt;td&gt;Clear the current history after confirmation.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%help&lt;/td&gt;&lt;td&gt;Show this help text.&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2613" />
+      <location filename="../QScintilla/Shell.py" line="2614" />
       <source>&lt;tr&gt;&lt;td&gt;%quit&lt;br/&gt;%quit()&lt;br/&gt;%exit&lt;br/&gt;%exit()&lt;/td&gt;&lt;td&gt;Exit the application.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;These commands are available through the window menus as well.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2621" />
+      <location filename="../QScintilla/Shell.py" line="2622" />
       <source>&lt;/table&gt;&lt;p&gt;These commands are available through the context menu as well.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2628" />
-      <source>Shell Special Commands</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/Shell.py" line="2629" />
+      <source>Shell Special Commands</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2630" />
       <source>The shell supports these special commands:</source>
       <translation type="unfinished" />
     </message>
@@ -88647,2544 +88647,2564 @@
   <context>
     <name>UserInterface</name>
     <message>
-      <location filename="../UI/UserInterface.py" line="308" />
+      <location filename="../UI/UserInterface.py" line="314" />
       <source>Initializing Basic Services...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="343" />
+      <location filename="../UI/UserInterface.py" line="349" />
       <source>Initializing Plugin Manager...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="350" />
+      <location filename="../UI/UserInterface.py" line="356" />
       <source>Generating Main User Interface...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="408" />
+      <location filename="../UI/UserInterface.py" line="414" />
       <source>Setting up signal/slot-connections...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="602" />
+      <location filename="../UI/UserInterface.py" line="607" />
       <source>Initializing Tools...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="613" />
+      <location filename="../UI/UserInterface.py" line="618" />
       <source>Registering Objects...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="647" />
+      <location filename="../UI/UserInterface.py" line="652" />
       <source>Initializing Actions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="649" />
+      <location filename="../UI/UserInterface.py" line="654" />
       <source>Initializing Menus...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="651" />
+      <location filename="../UI/UserInterface.py" line="656" />
       <source>Initializing Toolbars...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="653" />
+      <location filename="../UI/UserInterface.py" line="658" />
       <source>Initializing Statusbar...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="680" />
+      <location filename="../UI/UserInterface.py" line="685" />
       <source>Initializing Single Application Server...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="686" />
-      <source>Initializing Plugins...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="689" />
-      <source>Activating Plugins...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="691" />
-      <source>Generating Plugins Toolbars...</source>
+      <source>Initializing Plugins...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="694" />
+      <source>Activating Plugins...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="696" />
+      <source>Generating Plugins Toolbars...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="699" />
       <source>Cleaning Plugins Download Area...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="704" />
+      <location filename="../UI/UserInterface.py" line="709" />
       <source>Restoring Toolbarmanager...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="712" />
+      <location filename="../UI/UserInterface.py" line="717" />
       <source>Setting View Profile...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="725" />
-      <source>Reading Tasks...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="730" />
-      <source>Reading Templates...</source>
+      <source>Reading Tasks...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="735" />
+      <source>Reading Templates...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="740" />
       <source>Starting Debugger...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2195" />
-      <location filename="../UI/UserInterface.py" line="1086" />
+      <location filename="../UI/UserInterface.py" line="2200" />
+      <location filename="../UI/UserInterface.py" line="1091" />
       <source>Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2241" />
-      <location filename="../UI/UserInterface.py" line="1096" />
+      <location filename="../UI/UserInterface.py" line="2246" />
+      <location filename="../UI/UserInterface.py" line="1101" />
       <source>Horizontal Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2218" />
-      <location filename="../UI/UserInterface.py" line="1107" />
+      <location filename="../UI/UserInterface.py" line="2223" />
+      <location filename="../UI/UserInterface.py" line="1112" />
       <source>Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2037" />
-      <location filename="../UI/UserInterface.py" line="1301" />
-      <location filename="../UI/UserInterface.py" line="1117" />
+      <location filename="../UI/UserInterface.py" line="2042" />
+      <location filename="../UI/UserInterface.py" line="1306" />
+      <location filename="../UI/UserInterface.py" line="1122" />
       <source>Multiproject-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2015" />
-      <location filename="../UI/UserInterface.py" line="1307" />
-      <location filename="../UI/UserInterface.py" line="1123" />
+      <location filename="../UI/UserInterface.py" line="2020" />
+      <location filename="../UI/UserInterface.py" line="1312" />
+      <location filename="../UI/UserInterface.py" line="1128" />
       <source>Project-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2577" />
-      <location filename="../UI/UserInterface.py" line="2576" />
-      <location filename="../UI/UserInterface.py" line="1314" />
-      <location filename="../UI/UserInterface.py" line="1130" />
+      <location filename="../UI/UserInterface.py" line="2582" />
+      <location filename="../UI/UserInterface.py" line="2581" />
+      <location filename="../UI/UserInterface.py" line="1319" />
+      <location filename="../UI/UserInterface.py" line="1135" />
       <source>Find/Replace In Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2600" />
-      <location filename="../UI/UserInterface.py" line="2599" />
-      <location filename="../UI/UserInterface.py" line="1321" />
-      <location filename="../UI/UserInterface.py" line="1137" />
+      <location filename="../UI/UserInterface.py" line="2605" />
+      <location filename="../UI/UserInterface.py" line="2604" />
+      <location filename="../UI/UserInterface.py" line="1326" />
+      <location filename="../UI/UserInterface.py" line="1142" />
       <source>Find File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1327" />
-      <location filename="../UI/UserInterface.py" line="1143" />
+      <location filename="../UI/UserInterface.py" line="1332" />
+      <location filename="../UI/UserInterface.py" line="1148" />
       <source>VCS Status</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2170" />
-      <location filename="../UI/UserInterface.py" line="1334" />
-      <location filename="../UI/UserInterface.py" line="1150" />
+      <location filename="../UI/UserInterface.py" line="2175" />
+      <location filename="../UI/UserInterface.py" line="1339" />
+      <location filename="../UI/UserInterface.py" line="1155" />
       <source>Template-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2103" />
-      <location filename="../UI/UserInterface.py" line="1341" />
-      <location filename="../UI/UserInterface.py" line="1157" />
+      <location filename="../UI/UserInterface.py" line="2108" />
+      <location filename="../UI/UserInterface.py" line="1346" />
+      <location filename="../UI/UserInterface.py" line="1162" />
       <source>File-Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1348" />
-      <location filename="../UI/UserInterface.py" line="1164" />
+      <location filename="../UI/UserInterface.py" line="1353" />
+      <location filename="../UI/UserInterface.py" line="1169" />
       <source>Symbols</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2059" />
-      <location filename="../UI/UserInterface.py" line="1370" />
-      <location filename="../UI/UserInterface.py" line="1364" />
-      <location filename="../UI/UserInterface.py" line="1174" />
+      <location filename="../UI/UserInterface.py" line="2064" />
+      <location filename="../UI/UserInterface.py" line="1375" />
+      <location filename="../UI/UserInterface.py" line="1369" />
+      <location filename="../UI/UserInterface.py" line="1179" />
       <source>Debug-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2431" />
-      <location filename="../UI/UserInterface.py" line="2430" />
-      <location filename="../UI/UserInterface.py" line="1377" />
-      <location filename="../UI/UserInterface.py" line="1181" />
+      <location filename="../UI/UserInterface.py" line="2436" />
+      <location filename="../UI/UserInterface.py" line="2435" />
+      <location filename="../UI/UserInterface.py" line="1382" />
+      <location filename="../UI/UserInterface.py" line="1186" />
       <source>Code Documentation Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2646" />
-      <location filename="../UI/UserInterface.py" line="2645" />
-      <location filename="../UI/UserInterface.py" line="1384" />
-      <location filename="../UI/UserInterface.py" line="1188" />
+      <location filename="../UI/UserInterface.py" line="2651" />
+      <location filename="../UI/UserInterface.py" line="2650" />
+      <location filename="../UI/UserInterface.py" line="1389" />
+      <location filename="../UI/UserInterface.py" line="1193" />
       <source>Help Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3550" />
-      <location filename="../UI/UserInterface.py" line="2526" />
-      <location filename="../UI/UserInterface.py" line="2525" />
-      <location filename="../UI/UserInterface.py" line="1390" />
-      <location filename="../UI/UserInterface.py" line="1194" />
+      <location filename="../UI/UserInterface.py" line="3575" />
+      <location filename="../UI/UserInterface.py" line="2531" />
+      <location filename="../UI/UserInterface.py" line="2530" />
+      <location filename="../UI/UserInterface.py" line="1395" />
+      <location filename="../UI/UserInterface.py" line="1199" />
       <source>Plugin Repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2550" />
-      <location filename="../UI/UserInterface.py" line="2549" />
-      <location filename="../UI/UserInterface.py" line="1396" />
-      <location filename="../UI/UserInterface.py" line="1200" />
-      <source>Virtual Environments</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2458" />
-      <location filename="../UI/UserInterface.py" line="2457" />
+      <location filename="../UI/UserInterface.py" line="2555" />
+      <location filename="../UI/UserInterface.py" line="2554" />
       <location filename="../UI/UserInterface.py" line="1401" />
       <location filename="../UI/UserInterface.py" line="1205" />
+      <source>Virtual Environments</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2463" />
+      <location filename="../UI/UserInterface.py" line="2462" />
+      <location filename="../UI/UserInterface.py" line="1406" />
+      <location filename="../UI/UserInterface.py" line="1210" />
       <source>PyPI</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2480" />
-      <location filename="../UI/UserInterface.py" line="2479" />
-      <location filename="../UI/UserInterface.py" line="1408" />
-      <location filename="../UI/UserInterface.py" line="1210" />
+      <location filename="../UI/UserInterface.py" line="2485" />
+      <location filename="../UI/UserInterface.py" line="2484" />
+      <location filename="../UI/UserInterface.py" line="1413" />
+      <location filename="../UI/UserInterface.py" line="1215" />
       <source>Conda</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1415" />
-      <location filename="../UI/UserInterface.py" line="1217" />
+      <location filename="../UI/UserInterface.py" line="1420" />
+      <location filename="../UI/UserInterface.py" line="1222" />
       <source>Cooperation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2358" />
-      <location filename="../UI/UserInterface.py" line="1419" />
-      <location filename="../UI/UserInterface.py" line="1222" />
+      <location filename="../UI/UserInterface.py" line="2363" />
+      <location filename="../UI/UserInterface.py" line="1424" />
+      <location filename="../UI/UserInterface.py" line="1227" />
       <source>IRC</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2502" />
-      <location filename="../UI/UserInterface.py" line="2501" />
-      <location filename="../UI/UserInterface.py" line="1425" />
-      <location filename="../UI/UserInterface.py" line="1229" />
+      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="2506" />
+      <location filename="../UI/UserInterface.py" line="1430" />
+      <location filename="../UI/UserInterface.py" line="1234" />
       <source>MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2081" />
-      <location filename="../UI/UserInterface.py" line="1433" />
-      <location filename="../UI/UserInterface.py" line="1237" />
+      <location filename="../UI/UserInterface.py" line="2086" />
+      <location filename="../UI/UserInterface.py" line="1438" />
+      <location filename="../UI/UserInterface.py" line="1242" />
       <source>Shell</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2147" />
-      <location filename="../UI/UserInterface.py" line="1439" />
-      <location filename="../UI/UserInterface.py" line="1241" />
+      <location filename="../UI/UserInterface.py" line="2152" />
+      <location filename="../UI/UserInterface.py" line="1444" />
+      <location filename="../UI/UserInterface.py" line="1246" />
       <source>Task-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2125" />
-      <location filename="../UI/UserInterface.py" line="1445" />
-      <location filename="../UI/UserInterface.py" line="1245" />
+      <location filename="../UI/UserInterface.py" line="2130" />
+      <location filename="../UI/UserInterface.py" line="1450" />
+      <location filename="../UI/UserInterface.py" line="1250" />
       <source>Log-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1452" />
-      <location filename="../UI/UserInterface.py" line="1252" />
+      <location filename="../UI/UserInterface.py" line="1457" />
+      <location filename="../UI/UserInterface.py" line="1257" />
       <source>Numbers</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1827" />
+      <location filename="../UI/UserInterface.py" line="1832" />
       <source>{0} - Passive Mode</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1836" />
-      <location filename="../UI/UserInterface.py" line="1830" />
+      <location filename="../UI/UserInterface.py" line="1841" />
+      <location filename="../UI/UserInterface.py" line="1835" />
       <source>{0} - {1} - Passive Mode</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1842" />
+      <location filename="../UI/UserInterface.py" line="1847" />
       <source>{0} - {1} - {2} - Passive Mode</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1868" />
+      <location filename="../UI/UserInterface.py" line="1873" />
       <source>Quit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1870" />
+      <location filename="../UI/UserInterface.py" line="1875" />
       <source>&amp;Quit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1871" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1876" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1881" />
       <source>Quit the IDE</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1878" />
+      <location filename="../UI/UserInterface.py" line="1883" />
       <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1892" />
-      <location filename="../UI/UserInterface.py" line="1890" />
+      <location filename="../UI/UserInterface.py" line="1897" />
+      <location filename="../UI/UserInterface.py" line="1895" />
       <source>Restart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1893" />
-      <source>Ctrl+Shift+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1898" />
+      <source>Ctrl+Shift+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1903" />
       <source>Restart the IDE</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1900" />
+      <location filename="../UI/UserInterface.py" line="1905" />
       <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1918" />
-      <location filename="../UI/UserInterface.py" line="1911" />
+      <location filename="../UI/UserInterface.py" line="1923" />
+      <location filename="../UI/UserInterface.py" line="1916" />
       <source>Save session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1912" />
+      <location filename="../UI/UserInterface.py" line="1917" />
       <source>Save session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1920" />
+      <location filename="../UI/UserInterface.py" line="1925" />
       <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7729" />
-      <location filename="../UI/UserInterface.py" line="1937" />
-      <location filename="../UI/UserInterface.py" line="1930" />
+      <location filename="../UI/UserInterface.py" line="7767" />
+      <location filename="../UI/UserInterface.py" line="1942" />
+      <location filename="../UI/UserInterface.py" line="1935" />
       <source>Load session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1931" />
+      <location filename="../UI/UserInterface.py" line="1936" />
       <source>Load session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1939" />
+      <location filename="../UI/UserInterface.py" line="1944" />
       <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1949" />
+      <location filename="../UI/UserInterface.py" line="1954" />
       <source>New Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1951" />
+      <location filename="../UI/UserInterface.py" line="1956" />
       <source>New &amp;Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1952" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1957" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1962" />
       <source>Open a new eric instance</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1959" />
+      <location filename="../UI/UserInterface.py" line="1964" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1973" />
-      <location filename="../UI/UserInterface.py" line="1971" />
+      <location filename="../UI/UserInterface.py" line="1978" />
+      <location filename="../UI/UserInterface.py" line="1976" />
       <source>Edit Profile</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1980" />
+      <location filename="../UI/UserInterface.py" line="1985" />
       <source>Activate the edit view profile</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1982" />
+      <location filename="../UI/UserInterface.py" line="1987" />
       <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1995" />
-      <location filename="../UI/UserInterface.py" line="1993" />
+      <location filename="../UI/UserInterface.py" line="2000" />
+      <location filename="../UI/UserInterface.py" line="1998" />
       <source>Debug Profile</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2002" />
+      <location filename="../UI/UserInterface.py" line="2007" />
       <source>Activate the debug view profile</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2004" />
+      <location filename="../UI/UserInterface.py" line="2009" />
       <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2016" />
+      <location filename="../UI/UserInterface.py" line="2021" />
       <source>&amp;Project-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2017" />
+      <location filename="../UI/UserInterface.py" line="2022" />
       <source>Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2023" />
+      <location filename="../UI/UserInterface.py" line="2028" />
       <source>Switch the input focus to the Project-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2026" />
+      <location filename="../UI/UserInterface.py" line="2031" />
       <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2038" />
+      <location filename="../UI/UserInterface.py" line="2043" />
       <source>&amp;Multiproject-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2039" />
+      <location filename="../UI/UserInterface.py" line="2044" />
       <source>Alt+Shift+M</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2045" />
+      <location filename="../UI/UserInterface.py" line="2050" />
       <source>Switch the input focus to the Multiproject-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2048" />
+      <location filename="../UI/UserInterface.py" line="2053" />
       <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2060" />
+      <location filename="../UI/UserInterface.py" line="2065" />
       <source>&amp;Debug-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2061" />
+      <location filename="../UI/UserInterface.py" line="2066" />
       <source>Alt+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2067" />
+      <location filename="../UI/UserInterface.py" line="2072" />
       <source>Switch the input focus to the Debug-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2070" />
+      <location filename="../UI/UserInterface.py" line="2075" />
       <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2082" />
+      <location filename="../UI/UserInterface.py" line="2087" />
       <source>&amp;Shell</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2083" />
+      <location filename="../UI/UserInterface.py" line="2088" />
       <source>Alt+Shift+S</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2089" />
+      <location filename="../UI/UserInterface.py" line="2094" />
       <source>Switch the input focus to the Shell window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2092" />
+      <location filename="../UI/UserInterface.py" line="2097" />
       <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2104" />
+      <location filename="../UI/UserInterface.py" line="2109" />
       <source>&amp;File-Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2105" />
+      <location filename="../UI/UserInterface.py" line="2110" />
       <source>Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2111" />
+      <location filename="../UI/UserInterface.py" line="2116" />
       <source>Switch the input focus to the File-Browser window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2114" />
+      <location filename="../UI/UserInterface.py" line="2119" />
       <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2126" />
+      <location filename="../UI/UserInterface.py" line="2131" />
       <source>Lo&amp;g-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2127" />
+      <location filename="../UI/UserInterface.py" line="2132" />
       <source>Alt+Shift+G</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2133" />
+      <location filename="../UI/UserInterface.py" line="2138" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2136" />
+      <location filename="../UI/UserInterface.py" line="2141" />
       <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2148" />
+      <location filename="../UI/UserInterface.py" line="2153" />
       <source>&amp;Task-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2149" />
+      <location filename="../UI/UserInterface.py" line="2154" />
       <source>Alt+Shift+T</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2155" />
+      <location filename="../UI/UserInterface.py" line="2160" />
       <source>Switch the input focus to the Task-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2158" />
+      <location filename="../UI/UserInterface.py" line="2163" />
       <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2171" />
+      <location filename="../UI/UserInterface.py" line="2176" />
       <source>Templ&amp;ate-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2172" />
+      <location filename="../UI/UserInterface.py" line="2177" />
       <source>Alt+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2178" />
+      <location filename="../UI/UserInterface.py" line="2183" />
       <source>Switch the input focus to the Template-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2181" />
+      <location filename="../UI/UserInterface.py" line="2186" />
       <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2196" />
+      <location filename="../UI/UserInterface.py" line="2201" />
       <source>&amp;Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2203" />
+      <location filename="../UI/UserInterface.py" line="2208" />
       <source>Toggle the Left Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2205" />
+      <location filename="../UI/UserInterface.py" line="2210" />
       <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2219" />
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&amp;Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2226" />
+      <location filename="../UI/UserInterface.py" line="2231" />
       <source>Toggle the Right Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2228" />
+      <location filename="../UI/UserInterface.py" line="2233" />
       <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2242" />
+      <location filename="../UI/UserInterface.py" line="2247" />
       <source>&amp;Horizontal Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2249" />
+      <location filename="../UI/UserInterface.py" line="2254" />
       <source>Toggle the Horizontal Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2251" />
+      <location filename="../UI/UserInterface.py" line="2256" />
       <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2264" />
+      <location filename="../UI/UserInterface.py" line="2269" />
       <source>Left Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2265" />
+      <location filename="../UI/UserInterface.py" line="2270" />
       <source>&amp;Left Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2272" />
+      <location filename="../UI/UserInterface.py" line="2277" />
       <source>Toggle the left sidebar window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2274" />
+      <location filename="../UI/UserInterface.py" line="2279" />
       <source>&lt;b&gt;Toggle the left sidebar window&lt;/b&gt;&lt;p&gt;If the left sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2287" />
+      <location filename="../UI/UserInterface.py" line="2292" />
       <source>Right Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2288" />
+      <location filename="../UI/UserInterface.py" line="2293" />
       <source>&amp;Right Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2295" />
+      <location filename="../UI/UserInterface.py" line="2300" />
       <source>Toggle the right sidebar window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2297" />
+      <location filename="../UI/UserInterface.py" line="2302" />
       <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2310" />
+      <location filename="../UI/UserInterface.py" line="2315" />
       <source>Bottom Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2311" />
+      <location filename="../UI/UserInterface.py" line="2316" />
       <source>&amp;Bottom Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2318" />
+      <location filename="../UI/UserInterface.py" line="2323" />
       <source>Toggle the bottom sidebar window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2320" />
+      <location filename="../UI/UserInterface.py" line="2325" />
       <source>&lt;b&gt;Toggle the bottom sidebar window&lt;/b&gt;&lt;p&gt;If the bottom sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2333" />
+      <location filename="../UI/UserInterface.py" line="2338" />
       <source>Cooperation-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2334" />
+      <location filename="../UI/UserInterface.py" line="2339" />
       <source>Co&amp;operation-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2335" />
+      <location filename="../UI/UserInterface.py" line="2340" />
       <source>Alt+Shift+O</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2341" />
+      <location filename="../UI/UserInterface.py" line="2346" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2344" />
+      <location filename="../UI/UserInterface.py" line="2349" />
       <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2359" />
+      <location filename="../UI/UserInterface.py" line="2364" />
       <source>&amp;IRC</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2360" />
+      <location filename="../UI/UserInterface.py" line="2365" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2366" />
+      <location filename="../UI/UserInterface.py" line="2371" />
       <source>Switch the input focus to the IRC window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2369" />
+      <location filename="../UI/UserInterface.py" line="2374" />
       <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2380" />
+      <location filename="../UI/UserInterface.py" line="2385" />
       <source>Symbols-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2381" />
+      <location filename="../UI/UserInterface.py" line="2386" />
       <source>S&amp;ymbols-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2382" />
+      <location filename="../UI/UserInterface.py" line="2387" />
       <source>Alt+Shift+Y</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2388" />
+      <location filename="../UI/UserInterface.py" line="2393" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2391" />
+      <location filename="../UI/UserInterface.py" line="2396" />
       <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2405" />
+      <location filename="../UI/UserInterface.py" line="2410" />
       <source>Numbers-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2406" />
+      <location filename="../UI/UserInterface.py" line="2411" />
       <source>Num&amp;bers-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2407" />
+      <location filename="../UI/UserInterface.py" line="2412" />
       <source>Alt+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2413" />
+      <location filename="../UI/UserInterface.py" line="2418" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2416" />
+      <location filename="../UI/UserInterface.py" line="2421" />
       <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2432" />
+      <location filename="../UI/UserInterface.py" line="2437" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2438" />
-      <source>Switch the input focus to the Code Documentation Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2443" />
+      <source>Switch the input focus to the Code Documentation Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2448" />
       <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2459" />
+      <location filename="../UI/UserInterface.py" line="2464" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2465" />
+      <location filename="../UI/UserInterface.py" line="2470" />
       <source>Switch the input focus to the PyPI window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2468" />
+      <location filename="../UI/UserInterface.py" line="2473" />
       <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2481" />
+      <location filename="../UI/UserInterface.py" line="2486" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2487" />
+      <location filename="../UI/UserInterface.py" line="2492" />
       <source>Switch the input focus to the Conda window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2490" />
+      <location filename="../UI/UserInterface.py" line="2495" />
       <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2503" />
+      <location filename="../UI/UserInterface.py" line="2508" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2509" />
+      <location filename="../UI/UserInterface.py" line="2514" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2512" />
+      <location filename="../UI/UserInterface.py" line="2517" />
       <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2527" />
+      <location filename="../UI/UserInterface.py" line="2532" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2533" />
+      <location filename="../UI/UserInterface.py" line="2538" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2536" />
+      <location filename="../UI/UserInterface.py" line="2541" />
       <source>&lt;b&gt;Plugin Repository&lt;/b&gt;&lt;p&gt;This switches the input focus to the Plugin Repository window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2551" />
+      <location filename="../UI/UserInterface.py" line="2556" />
       <source>Ctrl+Alt+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2557" />
-      <source>Switch the input focus to the Virtual Environments Manager window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2562" />
+      <source>Switch the input focus to the Virtual Environments Manager window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2567" />
       <source>&lt;b&gt;Virtual Environments&lt;/b&gt;&lt;p&gt;This switches the input focus to the Virtual Environments Manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2578" />
+      <location filename="../UI/UserInterface.py" line="2583" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2584" />
+      <location filename="../UI/UserInterface.py" line="2589" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2587" />
+      <location filename="../UI/UserInterface.py" line="2592" />
       <source>&lt;b&gt;Find/Replace In Files&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find/Replace In Files window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2601" />
+      <location filename="../UI/UserInterface.py" line="2606" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2607" />
+      <location filename="../UI/UserInterface.py" line="2612" />
       <source>Switch the input focus to the Find File window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2610" />
+      <location filename="../UI/UserInterface.py" line="2615" />
       <source>&lt;b&gt;Find File&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find File window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2624" />
-      <location filename="../UI/UserInterface.py" line="2623" />
+      <location filename="../UI/UserInterface.py" line="2629" />
+      <location filename="../UI/UserInterface.py" line="2628" />
       <source>VCS Status List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2625" />
+      <location filename="../UI/UserInterface.py" line="2630" />
       <source>Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2631" />
+      <location filename="../UI/UserInterface.py" line="2636" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2634" />
+      <location filename="../UI/UserInterface.py" line="2639" />
       <source>&lt;b&gt;VCS Status List&lt;/b&gt;&lt;p&gt;This switches the input focus to the VCS Status List window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2647" />
+      <location filename="../UI/UserInterface.py" line="2652" />
       <source>Alt+Shift+H</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2653" />
+      <location filename="../UI/UserInterface.py" line="2658" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2656" />
+      <location filename="../UI/UserInterface.py" line="2661" />
       <source>&lt;b&gt;Help Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2669" />
+      <location filename="../UI/UserInterface.py" line="2674" />
       <source>What's This?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2671" />
+      <location filename="../UI/UserInterface.py" line="2676" />
       <source>&amp;What's This?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2672" />
-      <source>Shift+F1</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2677" />
+      <source>Shift+F1</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2682" />
       <source>Context sensitive help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2679" />
+      <location filename="../UI/UserInterface.py" line="2684" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2692" />
+      <location filename="../UI/UserInterface.py" line="2697" />
       <source>Helpviewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2694" />
+      <location filename="../UI/UserInterface.py" line="2699" />
       <source>&amp;Helpviewer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2695" />
-      <source>F1</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2700" />
+      <source>F1</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2705" />
       <source>Open the helpviewer window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2702" />
+      <location filename="../UI/UserInterface.py" line="2707" />
       <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2722" />
+      <location filename="../UI/UserInterface.py" line="2727" />
       <source>Show Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2723" />
+      <location filename="../UI/UserInterface.py" line="2728" />
       <source>Show &amp;Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2729" />
+      <location filename="../UI/UserInterface.py" line="2734" />
       <source>Display version information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2731" />
+      <location filename="../UI/UserInterface.py" line="2736" />
       <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2744" />
-      <location filename="../UI/UserInterface.py" line="2737" />
+      <location filename="../UI/UserInterface.py" line="2742" />
+      <source>Copy Versions</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2743" />
+      <source>&amp;Copy Versions</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2750" />
+      <source>Copy version information to the clipboard</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2753" />
+      <source>&lt;b&gt;Copy Versions&lt;/b&gt;&lt;p&gt;This generates version information and copies it to the clipboard.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2769" />
+      <location filename="../UI/UserInterface.py" line="2762" />
       <source>Show Error Log</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2738" />
+      <location filename="../UI/UserInterface.py" line="2763" />
       <source>Show Error &amp;Log...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2746" />
+      <location filename="../UI/UserInterface.py" line="2771" />
       <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2755" />
+      <location filename="../UI/UserInterface.py" line="2780" />
       <source>Show Install Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2756" />
+      <location filename="../UI/UserInterface.py" line="2781" />
       <source>Show Install &amp;Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2762" />
+      <location filename="../UI/UserInterface.py" line="2787" />
       <source>Show Installation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2764" />
+      <location filename="../UI/UserInterface.py" line="2789" />
       <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4634" />
-      <location filename="../UI/UserInterface.py" line="2774" />
+      <location filename="../UI/UserInterface.py" line="4672" />
+      <location filename="../UI/UserInterface.py" line="2799" />
       <source>Report Bug</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2774" />
+      <location filename="../UI/UserInterface.py" line="2799" />
       <source>Report &amp;Bug...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2776" />
+      <location filename="../UI/UserInterface.py" line="2801" />
       <source>Report a bug</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2778" />
+      <location filename="../UI/UserInterface.py" line="2803" />
       <source>&lt;b&gt;Report Bug...&lt;/b&gt;&lt;p&gt;Opens a dialog to report a bug.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2784" />
+      <location filename="../UI/UserInterface.py" line="2809" />
       <source>Request Feature</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2785" />
+      <location filename="../UI/UserInterface.py" line="2810" />
       <source>Request &amp;Feature...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2791" />
+      <location filename="../UI/UserInterface.py" line="2816" />
       <source>Send a feature request</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2818" />
       <source>&lt;b&gt;Request Feature...&lt;/b&gt;&lt;p&gt;Opens a dialog to send a feature request.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4094" />
-      <location filename="../UI/UserInterface.py" line="2804" />
+      <location filename="../UI/UserInterface.py" line="4120" />
+      <location filename="../UI/UserInterface.py" line="2829" />
       <source>Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2806" />
+      <location filename="../UI/UserInterface.py" line="2831" />
       <source>&amp;Testing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2812" />
+      <location filename="../UI/UserInterface.py" line="2837" />
       <source>Start the testing dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2814" />
+      <location filename="../UI/UserInterface.py" line="2839" />
       <source>&lt;b&gt;Testing&lt;/b&gt;&lt;p&gt;Perform test runs. The dialog gives the ability to select and run a test suite or auto discover them.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2825" />
+      <location filename="../UI/UserInterface.py" line="2850" />
       <source>Restart Last Test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2827" />
+      <location filename="../UI/UserInterface.py" line="2852" />
       <source>&amp;Restart Last Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2833" />
+      <location filename="../UI/UserInterface.py" line="2858" />
       <source>Restarts the last test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2835" />
+      <location filename="../UI/UserInterface.py" line="2860" />
       <source>&lt;b&gt;Restart Last Test&lt;/b&gt;&lt;p&gt;Restarts the test performed last.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2845" />
+      <location filename="../UI/UserInterface.py" line="2870" />
       <source>Rerun Failed Tests</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2847" />
+      <location filename="../UI/UserInterface.py" line="2872" />
       <source>Rerun Failed Tests...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2854" />
+      <location filename="../UI/UserInterface.py" line="2879" />
       <source>Rerun failed tests of the last run</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2857" />
+      <location filename="../UI/UserInterface.py" line="2882" />
       <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last test run.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2867" />
-      <source>Test Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2869" />
-      <source>Test &amp;Script...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2875" />
-      <source>Run tests of the current script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2877" />
-      <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2884" />
-      <source>Test Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2886" />
-      <source>Test &amp;Project...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2892" />
-      <source>Run tests of the current project</source>
+      <source>Test Script</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2894" />
-      <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2903" />
-      <source>Qt-Designer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2905" />
-      <source>Qt-&amp;Designer...</source>
+      <source>Test &amp;Script...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2900" />
+      <source>Run tests of the current script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2902" />
+      <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2909" />
+      <source>Test Project</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2911" />
-      <source>Start Qt-Designer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2913" />
-      <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2922" />
-      <source>Qt-Linguist</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2924" />
-      <source>Qt-&amp;Linguist...</source>
+      <source>Test &amp;Project...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2917" />
+      <source>Run tests of the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2919" />
+      <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2928" />
+      <source>Qt-Designer</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2930" />
+      <source>Qt-&amp;Designer...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2936" />
+      <source>Start Qt-Designer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2938" />
+      <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2947" />
+      <source>Qt-Linguist</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2949" />
+      <source>Qt-&amp;Linguist...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2955" />
       <source>Start Qt-Linguist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2932" />
+      <location filename="../UI/UserInterface.py" line="2957" />
       <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2940" />
+      <location filename="../UI/UserInterface.py" line="2965" />
       <source>UI Previewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2942" />
+      <location filename="../UI/UserInterface.py" line="2967" />
       <source>&amp;UI Previewer...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2948" />
+      <location filename="../UI/UserInterface.py" line="2973" />
       <source>Start the UI Previewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2950" />
-      <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2956" />
-      <source>Translations Previewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2958" />
-      <source>&amp;Translations Previewer...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2964" />
-      <source>Start the Translations Previewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2966" />
-      <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2975" />
+      <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2981" />
+      <source>Translations Previewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2983" />
+      <source>&amp;Translations Previewer...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2989" />
+      <source>Start the Translations Previewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2991" />
+      <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3000" />
       <source>Compare Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
-      <source>&amp;Compare Files...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3002" />
-      <location filename="../UI/UserInterface.py" line="2983" />
+      <source>&amp;Compare Files...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3027" />
+      <location filename="../UI/UserInterface.py" line="3008" />
       <source>Compare two files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2985" />
+      <location filename="../UI/UserInterface.py" line="3010" />
       <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2994" />
+      <location filename="../UI/UserInterface.py" line="3019" />
       <source>Compare Files side by side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2996" />
+      <location filename="../UI/UserInterface.py" line="3021" />
       <source>Compare &amp;Files side by side...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3004" />
+      <location filename="../UI/UserInterface.py" line="3029" />
       <source>&lt;b&gt;Compare Files side by side&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files and show the result side by side.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3014" />
+      <location filename="../UI/UserInterface.py" line="3039" />
       <source>SQL Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3016" />
+      <location filename="../UI/UserInterface.py" line="3041" />
       <source>SQL &amp;Browser...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3022" />
+      <location filename="../UI/UserInterface.py" line="3047" />
       <source>Browse a SQL database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3024" />
-      <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3038" />
-      <location filename="../UI/UserInterface.py" line="3030" />
-      <source>Mini Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3032" />
-      <source>Mini &amp;Editor...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3040" />
-      <source>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Open a dialog with a simplified editor.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3049" />
-      <source>Hex Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3051" />
-      <source>&amp;Hex Editor...</source>
+      <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3063" />
+      <location filename="../UI/UserInterface.py" line="3055" />
+      <source>Mini Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3057" />
+      <source>Mini &amp;Editor...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3065" />
+      <source>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Open a dialog with a simplified editor.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3074" />
+      <source>Hex Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3076" />
+      <source>&amp;Hex Editor...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3082" />
       <source>Start the eric Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3059" />
+      <location filename="../UI/UserInterface.py" line="3084" />
       <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3069" />
+      <location filename="../UI/UserInterface.py" line="3094" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3071" />
-      <source>eric &amp;Web Browser...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3077" />
-      <source>Start the eric Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3079" />
-      <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3088" />
-      <source>Icon Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3090" />
-      <source>&amp;Icon Editor...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3096" />
+      <source>eric &amp;Web Browser...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3102" />
+      <source>Start the eric Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3104" />
+      <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3113" />
+      <source>Icon Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3115" />
+      <source>&amp;Icon Editor...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3121" />
       <source>Start the eric Icon Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3098" />
+      <location filename="../UI/UserInterface.py" line="3123" />
       <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6494" />
-      <location filename="../UI/UserInterface.py" line="3110" />
+      <location filename="../UI/UserInterface.py" line="6532" />
+      <location filename="../UI/UserInterface.py" line="3135" />
       <source>Snapshot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3112" />
+      <location filename="../UI/UserInterface.py" line="3137" />
       <source>&amp;Snapshot...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3118" />
+      <location filename="../UI/UserInterface.py" line="3143" />
       <source>Take snapshots of a screen region</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3120" />
+      <location filename="../UI/UserInterface.py" line="3145" />
       <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3130" />
+      <location filename="../UI/UserInterface.py" line="3155" />
       <source>eric PDF Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3132" />
-      <source>eric PDF &amp;Viewer...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3138" />
-      <source>Start the eric PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3140" />
-      <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3149" />
-      <source>Preferences</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3151" />
-      <source>&amp;Preferences...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3157" />
+      <source>eric PDF &amp;Viewer...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3163" />
+      <source>Start the eric PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3165" />
+      <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3174" />
+      <source>Preferences</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3176" />
+      <source>&amp;Preferences...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3182" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3159" />
+      <location filename="../UI/UserInterface.py" line="3184" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3170" />
+      <location filename="../UI/UserInterface.py" line="3195" />
       <source>Export Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3172" />
+      <location filename="../UI/UserInterface.py" line="3197" />
       <source>E&amp;xport Preferences...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3178" />
+      <location filename="../UI/UserInterface.py" line="3203" />
       <source>Export the current configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3180" />
+      <location filename="../UI/UserInterface.py" line="3205" />
       <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3189" />
+      <location filename="../UI/UserInterface.py" line="3214" />
       <source>Import Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3191" />
+      <location filename="../UI/UserInterface.py" line="3216" />
       <source>I&amp;mport Preferences...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3198" />
+      <location filename="../UI/UserInterface.py" line="3223" />
       <source>Import a previously exported configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3201" />
+      <location filename="../UI/UserInterface.py" line="3226" />
       <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3210" />
+      <location filename="../UI/UserInterface.py" line="3235" />
       <source>Export Theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3212" />
-      <source>Export Theme...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3218" />
-      <source>Export the current theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3220" />
-      <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3229" />
-      <source>Import Theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3231" />
-      <source>Import Theme...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3237" />
+      <source>Export Theme...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3243" />
+      <source>Export the current theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3245" />
+      <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3254" />
+      <source>Import Theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3256" />
+      <source>Import Theme...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3262" />
       <source>Import a previously exported theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
+      <location filename="../UI/UserInterface.py" line="3264" />
       <source>&lt;b&gt;Import Theme&lt;/b&gt;&lt;p&gt;Import a previously exported theme.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3248" />
+      <location filename="../UI/UserInterface.py" line="3273" />
       <source>Reload APIs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3248" />
+      <location filename="../UI/UserInterface.py" line="3273" />
       <source>Reload &amp;APIs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3250" />
+      <location filename="../UI/UserInterface.py" line="3275" />
       <source>Reload the API information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3252" />
+      <location filename="../UI/UserInterface.py" line="3277" />
       <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3266" />
-      <location filename="../UI/UserInterface.py" line="3258" />
+      <location filename="../UI/UserInterface.py" line="3291" />
+      <location filename="../UI/UserInterface.py" line="3283" />
       <source>Show external tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3260" />
+      <location filename="../UI/UserInterface.py" line="3285" />
       <source>Show external &amp;tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3268" />
+      <location filename="../UI/UserInterface.py" line="3293" />
       <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3278" />
+      <location filename="../UI/UserInterface.py" line="3303" />
       <source>View Profiles</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3280" />
+      <location filename="../UI/UserInterface.py" line="3305" />
       <source>&amp;View Profiles...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3286" />
+      <location filename="../UI/UserInterface.py" line="3311" />
       <source>Configure view profiles</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3288" />
+      <location filename="../UI/UserInterface.py" line="3313" />
       <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3299" />
+      <location filename="../UI/UserInterface.py" line="3324" />
       <source>Toolbars</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3301" />
+      <location filename="../UI/UserInterface.py" line="3326" />
       <source>Tool&amp;bars...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3307" />
+      <location filename="../UI/UserInterface.py" line="3332" />
       <source>Configure toolbars</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
+      <location filename="../UI/UserInterface.py" line="3334" />
       <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3320" />
+      <location filename="../UI/UserInterface.py" line="3345" />
       <source>Keyboard Shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3322" />
+      <location filename="../UI/UserInterface.py" line="3347" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3328" />
+      <location filename="../UI/UserInterface.py" line="3353" />
       <source>Set the keyboard shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3330" />
+      <location filename="../UI/UserInterface.py" line="3355" />
       <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7453" />
-      <location filename="../UI/UserInterface.py" line="7434" />
-      <location filename="../UI/UserInterface.py" line="3340" />
+      <location filename="../UI/UserInterface.py" line="7491" />
+      <location filename="../UI/UserInterface.py" line="7472" />
+      <location filename="../UI/UserInterface.py" line="3365" />
       <source>Export Keyboard Shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3342" />
-      <source>&amp;Export Keyboard Shortcuts...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3348" />
-      <source>Export the keyboard shortcuts</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3350" />
-      <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7472" />
-      <location filename="../UI/UserInterface.py" line="3359" />
-      <source>Import Keyboard Shortcuts</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3361" />
-      <source>&amp;Import Keyboard Shortcuts...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3367" />
+      <source>&amp;Export Keyboard Shortcuts...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3373" />
+      <source>Export the keyboard shortcuts</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3375" />
+      <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="7510" />
+      <location filename="../UI/UserInterface.py" line="3384" />
+      <source>Import Keyboard Shortcuts</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3386" />
+      <source>&amp;Import Keyboard Shortcuts...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3392" />
       <source>Import the keyboard shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3369" />
+      <location filename="../UI/UserInterface.py" line="3394" />
       <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3379" />
+      <location filename="../UI/UserInterface.py" line="3404" />
       <source>Manage SSL Certificates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3381" />
+      <location filename="../UI/UserInterface.py" line="3406" />
       <source>Manage SSL Certificates...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3388" />
-      <source>Manage the saved SSL certificates</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3391" />
-      <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3401" />
-      <source>Edit Message Filters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3403" />
-      <source>Edit Message Filters...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3410" />
-      <source>Edit the message filters used to suppress unwanted messages</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3413" />
-      <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3432" />
+      <source>Manage the saved SSL certificates</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3416" />
+      <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3426" />
-      <location filename="../UI/UserInterface.py" line="3424" />
-      <source>Clear private data</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3434" />
-      <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3445" />
-      <location filename="../UI/UserInterface.py" line="3444" />
-      <source>Activate current editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3446" />
-      <source>Alt+Shift+E</source>
+      <source>Edit Message Filters</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3428" />
+      <source>Edit Message Filters...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3435" />
+      <source>Edit the message filters used to suppress unwanted messages</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3438" />
+      <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3457" />
-      <location filename="../UI/UserInterface.py" line="3456" />
-      <source>Show next</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3458" />
-      <source>Ctrl+Alt+Tab</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3469" />
-      <location filename="../UI/UserInterface.py" line="3468" />
-      <source>Show previous</source>
+      <location filename="../UI/UserInterface.py" line="3451" />
+      <location filename="../UI/UserInterface.py" line="3449" />
+      <source>Clear private data</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3459" />
+      <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3470" />
-      <source>Shift+Ctrl+Alt+Tab</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3481" />
-      <location filename="../UI/UserInterface.py" line="3480" />
-      <source>Switch between tabs</source>
+      <location filename="../UI/UserInterface.py" line="3469" />
+      <source>Activate current editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3471" />
+      <source>Alt+Shift+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3482" />
-      <source>Ctrl+1</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3492" />
-      <source>Plugin Infos</source>
+      <location filename="../UI/UserInterface.py" line="3481" />
+      <source>Show next</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3483" />
+      <source>Ctrl+Alt+Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3494" />
+      <location filename="../UI/UserInterface.py" line="3493" />
+      <source>Show previous</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3495" />
+      <source>Shift+Ctrl+Alt+Tab</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3506" />
+      <location filename="../UI/UserInterface.py" line="3505" />
+      <source>Switch between tabs</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3507" />
+      <source>Ctrl+1</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3517" />
+      <source>Plugin Infos</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3519" />
       <source>&amp;Plugin Infos...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3500" />
+      <location filename="../UI/UserInterface.py" line="3525" />
       <source>Show Plugin Infos</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3502" />
+      <location filename="../UI/UserInterface.py" line="3527" />
       <source>&lt;b&gt;Plugin Infos...&lt;/b&gt;&lt;p&gt;This opens a dialog, that show some information about loaded plugins.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3520" />
-      <location filename="../UI/UserInterface.py" line="3512" />
+      <location filename="../UI/UserInterface.py" line="3545" />
+      <location filename="../UI/UserInterface.py" line="3537" />
       <source>Install Plugins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3514" />
-      <source>&amp;Install Plugins...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3522" />
-      <source>&lt;b&gt;Install Plugins...&lt;/b&gt;&lt;p&gt;This opens a dialog to install or update plugins.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3539" />
-      <location filename="../UI/UserInterface.py" line="3531" />
+      <source>&amp;Install Plugins...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3547" />
+      <source>&lt;b&gt;Install Plugins...&lt;/b&gt;&lt;p&gt;This opens a dialog to install or update plugins.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3564" />
+      <location filename="../UI/UserInterface.py" line="3556" />
       <source>Uninstall Plugin</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3533" />
-      <source>&amp;Uninstall Plugin...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3541" />
-      <source>&lt;b&gt;Uninstall Plugin...&lt;/b&gt;&lt;p&gt;This opens a dialog to uninstall a plugin.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3552" />
-      <source>Plugin &amp;Repository...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3558" />
+      <source>&amp;Uninstall Plugin...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3566" />
+      <source>&lt;b&gt;Uninstall Plugin...&lt;/b&gt;&lt;p&gt;This opens a dialog to uninstall a plugin.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3577" />
+      <source>Plugin &amp;Repository...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3583" />
       <source>Show Plugins available for download</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3560" />
+      <location filename="../UI/UserInterface.py" line="3585" />
       <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3587" />
-      <location filename="../UI/UserInterface.py" line="3586" />
+      <location filename="../UI/UserInterface.py" line="3612" />
+      <location filename="../UI/UserInterface.py" line="3611" />
       <source>Qt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3593" />
+      <location filename="../UI/UserInterface.py" line="3618" />
       <source>Open Qt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3595" />
+      <location filename="../UI/UserInterface.py" line="3620" />
       <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3608" />
-      <location filename="../UI/UserInterface.py" line="3607" />
+      <location filename="../UI/UserInterface.py" line="3633" />
+      <location filename="../UI/UserInterface.py" line="3632" />
       <source>Qt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3614" />
+      <location filename="../UI/UserInterface.py" line="3639" />
       <source>Open Qt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3616" />
+      <location filename="../UI/UserInterface.py" line="3641" />
       <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3629" />
-      <location filename="../UI/UserInterface.py" line="3628" />
+      <location filename="../UI/UserInterface.py" line="3654" />
+      <location filename="../UI/UserInterface.py" line="3653" />
       <source>PyQt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3635" />
+      <location filename="../UI/UserInterface.py" line="3660" />
       <source>Open PyQt5 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3637" />
+      <location filename="../UI/UserInterface.py" line="3662" />
       <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3650" />
-      <location filename="../UI/UserInterface.py" line="3649" />
+      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3674" />
       <source>PyQt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3656" />
+      <location filename="../UI/UserInterface.py" line="3681" />
       <source>Open PyQt6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3658" />
+      <location filename="../UI/UserInterface.py" line="3683" />
       <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3676" />
-      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3701" />
+      <location filename="../UI/UserInterface.py" line="3700" />
       <source>Python 3 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3682" />
+      <location filename="../UI/UserInterface.py" line="3707" />
       <source>Open Python 3 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3684" />
-      <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3703" />
-      <location filename="../UI/UserInterface.py" line="3702" />
-      <source>eric API Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3709" />
+      <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3728" />
+      <location filename="../UI/UserInterface.py" line="3727" />
+      <source>eric API Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3734" />
       <source>Open eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3711" />
+      <location filename="../UI/UserInterface.py" line="3736" />
       <source>&lt;b&gt;eric API Documentation&lt;/b&gt;&lt;p&gt;Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3729" />
-      <location filename="../UI/UserInterface.py" line="3728" />
+      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3753" />
       <source>PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3735" />
+      <location filename="../UI/UserInterface.py" line="3760" />
       <source>Open PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3737" />
+      <location filename="../UI/UserInterface.py" line="3762" />
       <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3755" />
-      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3780" />
+      <location filename="../UI/UserInterface.py" line="3779" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3761" />
+      <location filename="../UI/UserInterface.py" line="3786" />
       <source>Open PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3763" />
+      <location filename="../UI/UserInterface.py" line="3788" />
       <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3865" />
+      <location filename="../UI/UserInterface.py" line="3890" />
       <source>E&amp;xtras</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3875" />
+      <location filename="../UI/UserInterface.py" line="3900" />
       <source>Wi&amp;zards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3893" />
+      <location filename="../UI/UserInterface.py" line="3918" />
       <source>P&amp;lugins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3902" />
+      <location filename="../UI/UserInterface.py" line="3927" />
       <source>Configure...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3911" />
+      <location filename="../UI/UserInterface.py" line="3936" />
       <source>&amp;Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3928" />
+      <location filename="../UI/UserInterface.py" line="3953" />
       <source>Select Tool Group</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3939" />
+      <location filename="../UI/UserInterface.py" line="3964" />
       <source>Se&amp;ttings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3972" />
+      <location filename="../UI/UserInterface.py" line="3997" />
       <source>&amp;Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3981" />
+      <location filename="../UI/UserInterface.py" line="4006" />
       <source>&amp;Windows</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3985" />
+      <location filename="../UI/UserInterface.py" line="4010" />
       <source>Central Park</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3989" />
+      <location filename="../UI/UserInterface.py" line="4014" />
       <source>Left Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4008" />
+      <location filename="../UI/UserInterface.py" line="4033" />
       <source>Right Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4027" />
+      <location filename="../UI/UserInterface.py" line="4052" />
       <source>Bottom Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4035" />
+      <location filename="../UI/UserInterface.py" line="4060" />
       <source>Plug-ins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4041" />
+      <location filename="../UI/UserInterface.py" line="4066" />
       <source>&amp;Toolbars</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4054" />
+      <location filename="../UI/UserInterface.py" line="4079" />
       <source>&amp;Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4109" />
-      <location filename="../UI/UserInterface.py" line="4093" />
+      <location filename="../UI/UserInterface.py" line="4135" />
+      <location filename="../UI/UserInterface.py" line="4119" />
       <source>Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4111" />
-      <location filename="../UI/UserInterface.py" line="4097" />
+      <location filename="../UI/UserInterface.py" line="4137" />
+      <location filename="../UI/UserInterface.py" line="4123" />
       <source>Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6222" />
-      <location filename="../UI/UserInterface.py" line="4112" />
-      <location filename="../UI/UserInterface.py" line="4098" />
+      <location filename="../UI/UserInterface.py" line="6260" />
+      <location filename="../UI/UserInterface.py" line="4138" />
+      <location filename="../UI/UserInterface.py" line="4124" />
       <source>Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4113" />
-      <location filename="../UI/UserInterface.py" line="4099" />
+      <location filename="../UI/UserInterface.py" line="4139" />
+      <location filename="../UI/UserInterface.py" line="4125" />
       <source>Profiles</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
-      <location filename="../UI/UserInterface.py" line="4100" />
+      <location filename="../UI/UserInterface.py" line="4140" />
+      <location filename="../UI/UserInterface.py" line="4126" />
       <source>Plugins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4110" />
+      <location filename="../UI/UserInterface.py" line="4136" />
       <source>Unittest</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4284" />
+      <location filename="../UI/UserInterface.py" line="4310" />
       <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4293" />
+      <location filename="../UI/UserInterface.py" line="4319" />
       <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4302" />
+      <location filename="../UI/UserInterface.py" line="4328" />
       <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4311" />
+      <location filename="../UI/UserInterface.py" line="4337" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4320" />
+      <location filename="../UI/UserInterface.py" line="4346" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4329" />
+      <location filename="../UI/UserInterface.py" line="4355" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4343" />
+      <location filename="../UI/UserInterface.py" line="4369" />
       <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4414" />
-      <location filename="../UI/UserInterface.py" line="4373" />
+      <location filename="../UI/UserInterface.py" line="4440" />
+      <location filename="../UI/UserInterface.py" line="4399" />
       <source>External Tools/{0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4522" />
+      <location filename="../UI/UserInterface.py" line="4548" />
       <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4571" />
+      <location filename="../UI/UserInterface.py" line="4597" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Security)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4588" />
+      <location filename="../UI/UserInterface.py" line="4614" />
       <source>Desktop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4592" />
+      <location filename="../UI/UserInterface.py" line="4618" />
       <source>Session Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4595" />
+      <location filename="../UI/UserInterface.py" line="4621" />
       <source>&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4635" />
+      <location filename="../UI/UserInterface.py" line="4673" />
       <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4970" />
+      <location filename="../UI/UserInterface.py" line="5008" />
       <source>Restart application</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4971" />
+      <location filename="../UI/UserInterface.py" line="5009" />
       <source>The application needs to be restarted. Do it now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4995" />
+      <location filename="../UI/UserInterface.py" line="5033" />
       <source>Upgrade PyQt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4996" />
+      <location filename="../UI/UserInterface.py" line="5034" />
       <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5046" />
-      <location filename="../UI/UserInterface.py" line="5020" />
+      <location filename="../UI/UserInterface.py" line="5084" />
+      <location filename="../UI/UserInterface.py" line="5058" />
       <source>Upgrade Eric</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5021" />
+      <location filename="../UI/UserInterface.py" line="5059" />
       <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5047" />
+      <location filename="../UI/UserInterface.py" line="5085" />
       <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
  Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5105" />
+      <location filename="../UI/UserInterface.py" line="5143" />
       <source>&amp;Builtin Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5124" />
+      <location filename="../UI/UserInterface.py" line="5162" />
       <source>&amp;Plugin Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5127" />
+      <location filename="../UI/UserInterface.py" line="5165" />
       <source>&amp;User Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5153" />
+      <location filename="../UI/UserInterface.py" line="5191" />
       <source>Configure Tool Groups ...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5157" />
+      <location filename="../UI/UserInterface.py" line="5195" />
       <source>Configure current Tool Group ...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5196" />
-      <location filename="../UI/UserInterface.py" line="5176" />
+      <location filename="../UI/UserInterface.py" line="5234" />
+      <location filename="../UI/UserInterface.py" line="5214" />
       <source>No User Tools Configured</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5272" />
+      <location filename="../UI/UserInterface.py" line="5310" />
       <source>&amp;Show all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5274" />
+      <location filename="../UI/UserInterface.py" line="5312" />
       <source>&amp;Hide all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6359" />
-      <location filename="../UI/UserInterface.py" line="6348" />
-      <location filename="../UI/UserInterface.py" line="6300" />
-      <location filename="../UI/UserInterface.py" line="6290" />
-      <location filename="../UI/UserInterface.py" line="6121" />
-      <location filename="../UI/UserInterface.py" line="6111" />
-      <location filename="../UI/UserInterface.py" line="6053" />
-      <location filename="../UI/UserInterface.py" line="6043" />
+      <location filename="../UI/UserInterface.py" line="6397" />
+      <location filename="../UI/UserInterface.py" line="6386" />
+      <location filename="../UI/UserInterface.py" line="6338" />
+      <location filename="../UI/UserInterface.py" line="6328" />
+      <location filename="../UI/UserInterface.py" line="6159" />
+      <location filename="../UI/UserInterface.py" line="6149" />
+      <location filename="../UI/UserInterface.py" line="6091" />
+      <location filename="../UI/UserInterface.py" line="6081" />
       <source>Problem</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6360" />
-      <location filename="../UI/UserInterface.py" line="6349" />
-      <location filename="../UI/UserInterface.py" line="6301" />
-      <location filename="../UI/UserInterface.py" line="6291" />
-      <location filename="../UI/UserInterface.py" line="6122" />
-      <location filename="../UI/UserInterface.py" line="6112" />
-      <location filename="../UI/UserInterface.py" line="6054" />
-      <location filename="../UI/UserInterface.py" line="6044" />
+      <location filename="../UI/UserInterface.py" line="6398" />
+      <location filename="../UI/UserInterface.py" line="6387" />
+      <location filename="../UI/UserInterface.py" line="6339" />
+      <location filename="../UI/UserInterface.py" line="6329" />
+      <location filename="../UI/UserInterface.py" line="6160" />
+      <location filename="../UI/UserInterface.py" line="6150" />
+      <location filename="../UI/UserInterface.py" line="6092" />
+      <location filename="../UI/UserInterface.py" line="6082" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6603" />
-      <location filename="../UI/UserInterface.py" line="6514" />
-      <location filename="../UI/UserInterface.py" line="6395" />
-      <location filename="../UI/UserInterface.py" line="6372" />
-      <location filename="../UI/UserInterface.py" line="6313" />
-      <location filename="../UI/UserInterface.py" line="6260" />
-      <location filename="../UI/UserInterface.py" line="6238" />
-      <location filename="../UI/UserInterface.py" line="6197" />
-      <location filename="../UI/UserInterface.py" line="6188" />
-      <location filename="../UI/UserInterface.py" line="6153" />
-      <location filename="../UI/UserInterface.py" line="6144" />
-      <location filename="../UI/UserInterface.py" line="6085" />
-      <location filename="../UI/UserInterface.py" line="6076" />
+      <location filename="../UI/UserInterface.py" line="6641" />
+      <location filename="../UI/UserInterface.py" line="6552" />
+      <location filename="../UI/UserInterface.py" line="6433" />
+      <location filename="../UI/UserInterface.py" line="6410" />
+      <location filename="../UI/UserInterface.py" line="6351" />
+      <location filename="../UI/UserInterface.py" line="6298" />
+      <location filename="../UI/UserInterface.py" line="6276" />
+      <location filename="../UI/UserInterface.py" line="6235" />
+      <location filename="../UI/UserInterface.py" line="6226" />
+      <location filename="../UI/UserInterface.py" line="6191" />
+      <location filename="../UI/UserInterface.py" line="6182" />
+      <location filename="../UI/UserInterface.py" line="6123" />
+      <location filename="../UI/UserInterface.py" line="6114" />
       <source>Process Generation Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6077" />
+      <location filename="../UI/UserInterface.py" line="6115" />
       <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6086" />
+      <location filename="../UI/UserInterface.py" line="6124" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6145" />
+      <location filename="../UI/UserInterface.py" line="6183" />
       <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6154" />
+      <location filename="../UI/UserInterface.py" line="6192" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6189" />
+      <location filename="../UI/UserInterface.py" line="6227" />
       <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6198" />
+      <location filename="../UI/UserInterface.py" line="6236" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6223" />
-      <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6239" />
-      <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="6261" />
+      <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6277" />
+      <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6299" />
       <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6314" />
+      <location filename="../UI/UserInterface.py" line="6352" />
       <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6373" />
+      <location filename="../UI/UserInterface.py" line="6411" />
       <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6396" />
+      <location filename="../UI/UserInterface.py" line="6434" />
       <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6495" />
+      <location filename="../UI/UserInterface.py" line="6533" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6515" />
+      <location filename="../UI/UserInterface.py" line="6553" />
       <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6548" />
-      <location filename="../UI/UserInterface.py" line="6538" />
-      <source>External Tools</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6539" />
-      <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6549" />
-      <source>No toolgroup entry '{0}' found.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="6586" />
+      <location filename="../UI/UserInterface.py" line="6576" />
+      <source>External Tools</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6577" />
+      <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6587" />
+      <source>No toolgroup entry '{0}' found.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6624" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6604" />
+      <location filename="../UI/UserInterface.py" line="6642" />
       <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6683" />
+      <location filename="../UI/UserInterface.py" line="6721" />
       <source>Process '{0}' has exited.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6970" />
-      <location filename="../UI/UserInterface.py" line="6908" />
-      <location filename="../UI/UserInterface.py" line="6864" />
-      <location filename="../UI/UserInterface.py" line="6790" />
-      <location filename="../UI/UserInterface.py" line="6726" />
+      <location filename="../UI/UserInterface.py" line="7008" />
+      <location filename="../UI/UserInterface.py" line="6946" />
+      <location filename="../UI/UserInterface.py" line="6902" />
+      <location filename="../UI/UserInterface.py" line="6828" />
+      <location filename="../UI/UserInterface.py" line="6764" />
       <source>Documentation Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6971" />
-      <location filename="../UI/UserInterface.py" line="6909" />
-      <location filename="../UI/UserInterface.py" line="6865" />
-      <location filename="../UI/UserInterface.py" line="6791" />
-      <location filename="../UI/UserInterface.py" line="6727" />
+      <location filename="../UI/UserInterface.py" line="7009" />
+      <location filename="../UI/UserInterface.py" line="6947" />
+      <location filename="../UI/UserInterface.py" line="6903" />
+      <location filename="../UI/UserInterface.py" line="6829" />
+      <location filename="../UI/UserInterface.py" line="6765" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6952" />
-      <location filename="../UI/UserInterface.py" line="6834" />
+      <location filename="../UI/UserInterface.py" line="6990" />
+      <location filename="../UI/UserInterface.py" line="6872" />
       <source>Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6835" />
+      <location filename="../UI/UserInterface.py" line="6873" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6953" />
+      <location filename="../UI/UserInterface.py" line="6991" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7132" />
-      <location filename="../UI/UserInterface.py" line="7068" />
+      <location filename="../UI/UserInterface.py" line="7170" />
+      <location filename="../UI/UserInterface.py" line="7106" />
       <source>Start Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7069" />
+      <location filename="../UI/UserInterface.py" line="7107" />
       <source>The eric web browser could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7133" />
+      <location filename="../UI/UserInterface.py" line="7171" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7179" />
+      <location filename="../UI/UserInterface.py" line="7217" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7179" />
+      <location filename="../UI/UserInterface.py" line="7217" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7512" />
       <location filename="../UI/UserInterface.py" line="7474" />
-      <location filename="../UI/UserInterface.py" line="7436" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7454" />
+      <location filename="../UI/UserInterface.py" line="7492" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7682" />
+      <location filename="../UI/UserInterface.py" line="7720" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7683" />
+      <location filename="../UI/UserInterface.py" line="7721" />
       <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7706" />
+      <location filename="../UI/UserInterface.py" line="7744" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7731" />
-      <location filename="../UI/UserInterface.py" line="7708" />
+      <location filename="../UI/UserInterface.py" line="7769" />
+      <location filename="../UI/UserInterface.py" line="7746" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7776" />
+      <location filename="../UI/UserInterface.py" line="7814" />
       <source>Crash Session found!</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7777" />
+      <location filename="../UI/UserInterface.py" line="7815" />
       <source>A session file of a crashed session was found. Shall this session be restored?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8154" />
+      <location filename="../UI/UserInterface.py" line="8192" />
       <source>Drop Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8155" />
+      <location filename="../UI/UserInterface.py" line="8193" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8341" />
+      <location filename="../UI/UserInterface.py" line="8379" />
       <source>Upgrade available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8342" />
+      <location filename="../UI/UserInterface.py" line="8380" />
       <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8387" />
+      <location filename="../UI/UserInterface.py" line="8425" />
       <source>First time usage</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8388" />
+      <location filename="../UI/UserInterface.py" line="8426" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8410" />
+      <location filename="../UI/UserInterface.py" line="8448" />
       <source>Select Workspace Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8575" />
+      <location filename="../UI/UserInterface.py" line="8616" />
       <source>Unsaved Data Detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8576" />
+      <location filename="../UI/UserInterface.py" line="8617" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -91612,40 +91632,40 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1055" />
+      <location filename="../Debugger/VariablesViewer.py" line="1056" />
       <source>Show Details...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1057" />
-      <source>Expand</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1058" />
-      <source>Collapse</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Debugger/VariablesViewer.py" line="1059" />
+      <source>Expand Subitems</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/VariablesViewer.py" line="1062" />
+      <source>Collapse Subitems</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/VariablesViewer.py" line="1064" />
       <source>Collapse All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1067" />
-      <location filename="../Debugger/VariablesViewer.py" line="1061" />
+      <location filename="../Debugger/VariablesViewer.py" line="1072" />
+      <location filename="../Debugger/VariablesViewer.py" line="1066" />
       <source>Refresh</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1069" />
-      <location filename="../Debugger/VariablesViewer.py" line="1063" />
+      <location filename="../Debugger/VariablesViewer.py" line="1074" />
+      <location filename="../Debugger/VariablesViewer.py" line="1068" />
       <source>Configure...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1071" />
-      <location filename="../Debugger/VariablesViewer.py" line="1064" />
+      <location filename="../Debugger/VariablesViewer.py" line="1076" />
+      <location filename="../Debugger/VariablesViewer.py" line="1069" />
       <source>Variables Type Filter...</source>
       <translation type="unfinished" />
     </message>
@@ -96233,91 +96253,91 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5972" />
+      <location filename="../ViewManager/ViewManager.py" line="5969" />
       <source>Line: {0:5}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5978" />
+      <location filename="../ViewManager/ViewManager.py" line="5975" />
       <source>Pos: {0:5}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5998" />
+      <location filename="../ViewManager/ViewManager.py" line="5995" />
       <source>Language: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6007" />
+      <location filename="../ViewManager/ViewManager.py" line="6004" />
       <source>EOL Mode: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6503" />
-      <location filename="../ViewManager/ViewManager.py" line="6460" />
+      <location filename="../ViewManager/ViewManager.py" line="6500" />
+      <location filename="../ViewManager/ViewManager.py" line="6457" />
       <source>&amp;Clear</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../ViewManager/ViewManager.py" line="6494" />
+      <source>&amp;Add</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../ViewManager/ViewManager.py" line="6497" />
-      <source>&amp;Add</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="6500" />
       <source>&amp;Edit...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../ViewManager/ViewManager.py" line="7567" />
+      <location filename="../ViewManager/ViewManager.py" line="7553" />
+      <location filename="../ViewManager/ViewManager.py" line="7521" />
+      <source>Edit Spelling Dictionary</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7524" />
+      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7540" />
+      <source>Editing {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7556" />
+      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../ViewManager/ViewManager.py" line="7570" />
-      <location filename="../ViewManager/ViewManager.py" line="7556" />
-      <location filename="../ViewManager/ViewManager.py" line="7524" />
-      <source>Edit Spelling Dictionary</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7527" />
-      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7543" />
-      <source>Editing {0}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7559" />
-      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7573" />
       <source>The spelling dictionary was saved successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6682" />
+      <location filename="../ViewManager/ViewManager.py" line="6679" />
       <source>Clear Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6683" />
+      <location filename="../ViewManager/ViewManager.py" line="6680" />
       <source>Do you really want to delete all text of the current editor?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="8103" />
-      <location filename="../ViewManager/ViewManager.py" line="8086" />
+      <location filename="../ViewManager/ViewManager.py" line="8100" />
+      <location filename="../ViewManager/ViewManager.py" line="8083" />
       <source>File System Watcher Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="8087" />
+      <location filename="../ViewManager/ViewManager.py" line="8084" />
       <source>&lt;p&gt;The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should &lt;ul&gt;&lt;li&gt;sudo nano /etc/sysctl.conf&lt;/li&gt;&lt;li&gt;add to the bottom "fs.inotify.max_user_instances = 1024"&lt;/li&gt;&lt;li&gt;save and close the editor&lt;/li&gt;&lt;li&gt;sudo sysctl -p&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Error Message: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="8104" />
+      <location filename="../ViewManager/ViewManager.py" line="8101" />
       <source>The file system watcher reported an error with code &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -98169,16 +98189,6 @@
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
-      <source>Select to delete all web databases</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
-      <source>Web &amp;Databases</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
       <source>Select to delete all remembered zoom settings</source>
       <translation type="unfinished" />
     </message>
@@ -98440,6 +98450,16 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
+      <source>Select to render all web contents using a dark theme.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
+      <source>Force Dark Mode</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
       <source>Startup</source>
       <translation type="unfinished" />
     </message>
@@ -99378,355 +99398,355 @@
   <context>
     <name>WebBrowserView</name>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="366" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="353" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="341" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="329" />
-      <source>eric Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="330" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="367" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="354" />
       <location filename="../WebBrowser/WebBrowserView.py" line="342" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="330" />
+      <source>eric Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="331" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="368" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="343" />
       <source>&lt;p&gt;Could not start a viewer for file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="354" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="355" />
       <source>&lt;p&gt;Could not start an application for URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="608" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="609" />
       <source>Match {0} of {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="634" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="635" />
       <source>Inspect Element...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="666" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="667" />
       <source>No suggestions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="723" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="724" />
       <source>Open Link in New Tab	Ctrl+LMB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="728" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="729" />
       <source>Open Link in New Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="734" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="735" />
       <source>Open Link in New Private Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="741" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="742" />
       <source>Save Lin&amp;k</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="745" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="746" />
       <source>Bookmark this Link</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="751" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="752" />
       <source>Copy URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="755" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="756" />
       <source>Send URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="764" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="765" />
       <source>Scan Link with VirusTotal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="782" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="783" />
       <source>Open Image in New Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="789" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="790" />
       <source>Save Image</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="792" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="793" />
       <source>Copy Image to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="794" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="795" />
       <source>Copy Image URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="799" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="800" />
       <source>Send Image URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="818" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="810" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="819" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="811" />
       <source>Search image in {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="814" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="815" />
       <source>Search image with...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="825" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="826" />
       <source>Block Image</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="835" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="836" />
       <source>Scan Image with VirusTotal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="855" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="856" />
       <source>Play</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="861" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="862" />
       <source>Pause</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="867" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="868" />
       <source>Unmute</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="873" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="874" />
       <source>Mute</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="878" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="879" />
       <source>Copy Media URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="883" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="884" />
       <source>Send Media URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="889" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="890" />
       <source>Save Media</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="910" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="911" />
       <source>Send Text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="917" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="918" />
       <source>Search with '{0}'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="921" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="922" />
       <source>Search with...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1078" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="947" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1079" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="948" />
       <source>Google Translate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="957" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="958" />
       <source>Dictionary</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="965" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="966" />
       <source>Go to web address</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="994" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="995" />
       <source>Add New Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="999" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1000" />
       <source>Configure Speed Dial</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1005" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1006" />
       <source>Reload All Dials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1009" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1010" />
       <source>Reset to Default Dials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1014" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1015" />
       <source>Bookmark this Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1018" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1019" />
       <source>Copy Page URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1023" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1024" />
       <source>Send Page URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1029" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1030" />
       <source>User Agent</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1057" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1058" />
       <source>Validate Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1120" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1121" />
       <source>Add to web search toolbar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1804" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1805" />
       <source>Empty Page</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="1869" />
       <location filename="../WebBrowser/WebBrowserView.py" line="1868" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="1867" />
       <source>Render Process terminated abnormally</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1873" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1874" />
       <source>The render process crashed while loading this page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1878" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1879" />
       <source>The render process was killed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1880" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1881" />
       <source>The render process terminated while loading this page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1884" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1885" />
       <source>Try reloading the page or closing some tabs to make more memory available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2012" />
-      <source>Web Archive (*.mhtml *.mht)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2013" />
-      <source>HTML File (*.html *.htm)</source>
+      <source>Web Archive (*.mhtml *.mht)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2014" />
+      <source>HTML File (*.html *.htm)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2015" />
       <source>HTML File with all resources (*.html *.htm)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2036" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2037" />
       <source>Save Web Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2428" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2429" />
       <source>eric7 {0} ({1})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2439" />
-      <source>Print Page</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2440" />
+      <source>Print Page</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2441" />
       <source>There is already a print job in progress. Printing is temporarily disabled until the current job is finished.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2555" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="2485" />
-      <source>Print to PDF</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2486" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2556" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2486" />
+      <source>Print to PDF</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2487" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2557" />
       <source>&lt;p&gt;The PDF file &lt;b&gt;{0}&lt;/b&gt; could not be generated.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2590" />
-      <source>Quota Request</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2591" />
+      <source>Quota Request</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2592" />
       <source>&lt;p&gt; Allow the website at &lt;b&gt;{0}&lt;/b&gt; to use &lt;b&gt;{1}&lt;/b&gt; of persistent storage?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2634" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2635" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Read&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2642" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2643" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Write&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2647" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2648" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Read and Write&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2654" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2655" />
       <source>File System Access Request</source>
       <translation type="unfinished" />
     </message>
@@ -99840,10 +99860,10 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4099" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3007" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2991" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2976" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4105" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3013" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2997" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2982" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="207" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
@@ -99854,2074 +99874,2074 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1758" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1758" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1764" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1764" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="306" />
       <source>Index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1769" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1768" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1774" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="318" />
       <source>Search</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2115" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2114" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2121" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2120" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="325" />
       <source>JavaScript Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="737" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="743" />
       <source>New Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="739" />
-      <source>&amp;New Tab</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="740" />
-      <source>Ctrl+T</source>
-      <comment>File|New Tab</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="745" />
+      <source>&amp;New Tab</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="746" />
+      <source>Ctrl+T</source>
+      <comment>File|New Tab</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="751" />
       <source>Open a new web browser tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="747" />
-      <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="753" />
+      <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="759" />
       <source>New Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="755" />
-      <source>New &amp;Window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="756" />
-      <source>Ctrl+N</source>
-      <comment>File|New Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="761" />
+      <source>New &amp;Window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="762" />
+      <source>Ctrl+N</source>
+      <comment>File|New Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="767" />
       <source>Open a new web browser window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="763" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="769" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new web browser window in the current privacy mode.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2889" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="773" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2895" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="779" />
       <source>New Private Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="781" />
       <source>New &amp;Private Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="776" />
-      <source>Ctrl+Shift+P</source>
-      <comment>File|New Private Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="782" />
+      <source>Ctrl+Shift+P</source>
+      <comment>File|New Private Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="788" />
       <source>Open a new private web browser window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="785" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="791" />
       <source>&lt;b&gt;New Private Window&lt;/b&gt;&lt;p&gt;This opens a new private web browser window by starting a new web browser instance in private mode.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2927" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2904" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="795" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2933" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2910" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="801" />
       <source>Open File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="797" />
-      <source>&amp;Open File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="798" />
-      <source>Ctrl+O</source>
-      <comment>File|Open</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="803" />
+      <source>&amp;Open File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="804" />
+      <source>Ctrl+O</source>
+      <comment>File|Open</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="809" />
       <source>Open a file for display</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="805" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="811" />
       <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new file for display. It pops up a file selection dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="815" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="821" />
       <source>Open File in New Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="817" />
-      <source>Open File in New &amp;Tab</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="818" />
-      <source>Shift+Ctrl+O</source>
-      <comment>File|Open in new tab</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="823" />
+      <source>Open File in New &amp;Tab</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="824" />
+      <source>Shift+Ctrl+O</source>
+      <comment>File|Open in new tab</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="829" />
       <source>Open a file for display in a new tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="825" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="831" />
       <source>&lt;b&gt;Open File in New Tab&lt;/b&gt;&lt;p&gt;This opens a new file for display in a new tab. It pops up a file selection dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="836" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="842" />
       <source>Save As</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="838" />
-      <source>&amp;Save As...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="839" />
-      <source>Shift+Ctrl+S</source>
-      <comment>File|Save As</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="844" />
+      <source>&amp;Save As...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="845" />
+      <source>Shift+Ctrl+S</source>
+      <comment>File|Save As</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="850" />
       <source>Save the current page to disk</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="846" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="852" />
       <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current page to disk.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="854" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="860" />
       <source>Save Page Screen</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="856" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="862" />
       <source>Save Page Screen...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="863" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="869" />
       <source>Save the visible part of the current page as a screen shot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="866" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="872" />
       <source>&lt;b&gt;Save Page Screen...&lt;/b&gt;&lt;p&gt;Saves the visible part of the current page as a screen shot.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="877" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="883" />
       <source>Import Bookmarks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="878" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="884" />
       <source>&amp;Import Bookmarks...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="885" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="891" />
       <source>Import bookmarks from other browsers</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="888" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="894" />
       <source>&lt;b&gt;Import Bookmarks&lt;/b&gt;&lt;p&gt;Import bookmarks from other browsers.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="897" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="903" />
       <source>Export Bookmarks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="898" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="904" />
       <source>&amp;Export Bookmarks...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="905" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="911" />
       <source>Export the bookmarks into a file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="908" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="914" />
       <source>&lt;b&gt;Export Bookmarks&lt;/b&gt;&lt;p&gt;Export the bookmarks into a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2537" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="917" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2543" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="923" />
       <source>Print</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="919" />
-      <source>&amp;Print</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="920" />
-      <source>Ctrl+P</source>
-      <comment>File|Print</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="925" />
+      <source>&amp;Print</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="926" />
+      <source>Ctrl+P</source>
+      <comment>File|Print</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="931" />
       <source>Print the displayed help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="927" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="933" />
       <source>&lt;b&gt;Print&lt;/b&gt;&lt;p&gt;Print the displayed help text.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="935" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="933" />
-      <source>Print as PDF</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="941" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="939" />
+      <source>Print as PDF</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="947" />
       <source>Print the displayed help as PDF</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="943" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="949" />
       <source>&lt;b&gt;Print as PDF&lt;/b&gt;&lt;p&gt;Print the displayed help text as a PDF file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="954" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="952" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="960" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="958" />
       <source>Print Preview</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="961" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="967" />
       <source>Print preview of the displayed help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="964" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="970" />
       <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the displayed help text.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="975" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="973" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="981" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="979" />
       <source>Send Page Link</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="982" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="988" />
       <source>Send the link of the current page via email</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="985" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="991" />
       <source>&lt;b&gt;Send Page Link&lt;/b&gt;&lt;p&gt;Send the link of the current page via email.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="994" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1000" />
       <source>Close</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="996" />
-      <source>&amp;Close</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="997" />
-      <source>Ctrl+W</source>
-      <comment>File|Close</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1002" />
+      <source>&amp;Close</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1003" />
+      <source>Ctrl+W</source>
+      <comment>File|Close</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1008" />
       <source>Close the current help window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1004" />
-      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1010" />
+      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1016" />
       <source>Close All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1011" />
-      <source>Close &amp;All</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1017" />
+      <source>Close &amp;All</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1023" />
       <source>Close all help windows</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1019" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1025" />
       <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all web browser windows except the first one.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1028" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1034" />
       <source>Quit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3319" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1030" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3325" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1036" />
       <source>&amp;Quit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1031" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1037" />
       <source>Ctrl+Q</source>
       <comment>File|Quit</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1036" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1042" />
       <source>Quit the eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1038" />
-      <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1044" />
+      <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1050" />
       <source>Backward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1046" />
-      <source>&amp;Backward</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1047" />
-      <source>Alt+Left</source>
-      <comment>Go|Backward</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1052" />
+      <source>&amp;Backward</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1053" />
+      <source>Alt+Left</source>
+      <comment>Go|Backward</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1058" />
       <source>Move one screen backward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1054" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1060" />
       <source>&lt;b&gt;Backward&lt;/b&gt;&lt;p&gt;Moves one screen backward. If none is available, this action is disabled.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1064" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1070" />
       <source>Forward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1066" />
-      <source>&amp;Forward</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1067" />
-      <source>Alt+Right</source>
-      <comment>Go|Forward</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1072" />
+      <source>&amp;Forward</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1073" />
+      <source>Alt+Right</source>
+      <comment>Go|Forward</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1078" />
       <source>Move one screen forward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1074" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1080" />
       <source>&lt;b&gt;Forward&lt;/b&gt;&lt;p&gt;Moves one screen forward. If none is available, this action is disabled.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1084" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1090" />
       <source>Home</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1086" />
-      <source>&amp;Home</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1087" />
-      <source>Ctrl+Home</source>
-      <comment>Go|Home</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1092" />
+      <source>&amp;Home</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1093" />
+      <source>Ctrl+Home</source>
+      <comment>Go|Home</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1098" />
       <source>Move to the initial screen</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1094" />
-      <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1100" />
+      <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1106" />
       <source>Reload</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1102" />
-      <source>&amp;Reload</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1103" />
-      <source>Ctrl+R</source>
-      <comment>Go|Reload</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1104" />
-      <source>F5</source>
-      <comment>Go|Reload</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1108" />
-      <source>Reload the current screen</source>
+      <source>&amp;Reload</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1109" />
+      <source>Ctrl+R</source>
+      <comment>Go|Reload</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1110" />
-      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
+      <source>F5</source>
+      <comment>Go|Reload</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1114" />
+      <source>Reload the current screen</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1116" />
+      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1122" />
       <source>Stop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1118" />
-      <source>&amp;Stop</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1119" />
-      <source>Ctrl+.</source>
-      <comment>Go|Stop</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1120" />
-      <source>Esc</source>
-      <comment>Go|Stop</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1124" />
-      <source>Stop loading</source>
+      <source>&amp;Stop</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1125" />
+      <source>Ctrl+.</source>
+      <comment>Go|Stop</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1126" />
-      <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
+      <source>Esc</source>
+      <comment>Go|Stop</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1130" />
+      <source>Stop loading</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1132" />
+      <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1138" />
       <source>Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1134" />
-      <source>&amp;Copy</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1135" />
-      <source>Ctrl+C</source>
-      <comment>Edit|Copy</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1140" />
+      <source>&amp;Copy</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1141" />
+      <source>Ctrl+C</source>
+      <comment>Edit|Copy</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1146" />
       <source>Copy the selected text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1142" />
-      <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" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1148" />
+      <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" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1154" />
       <source>Cut</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1150" />
-      <source>Cu&amp;t</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1151" />
-      <source>Ctrl+X</source>
-      <comment>Edit|Cut</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1156" />
+      <source>Cu&amp;t</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1157" />
+      <source>Ctrl+X</source>
+      <comment>Edit|Cut</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1162" />
       <source>Cut the selected text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1158" />
-      <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" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1164" />
+      <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" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1170" />
       <source>Paste</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1166" />
-      <source>&amp;Paste</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1167" />
-      <source>Ctrl+V</source>
-      <comment>Edit|Paste</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1172" />
+      <source>&amp;Paste</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1173" />
+      <source>Ctrl+V</source>
+      <comment>Edit|Paste</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1178" />
       <source>Paste text from the clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1174" />
-      <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1180" />
+      <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1186" />
       <source>Undo</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1182" />
-      <source>&amp;Undo</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1183" />
-      <source>Ctrl+Z</source>
-      <comment>Edit|Undo</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1188" />
+      <source>&amp;Undo</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1189" />
+      <source>Ctrl+Z</source>
+      <comment>Edit|Undo</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1194" />
       <source>Undo the last edit action</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1190" />
-      <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1196" />
+      <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1202" />
       <source>Redo</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1198" />
-      <source>&amp;Redo</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1199" />
-      <source>Ctrl+Shift+Z</source>
-      <comment>Edit|Redo</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1204" />
+      <source>&amp;Redo</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1205" />
+      <source>Ctrl+Shift+Z</source>
+      <comment>Edit|Redo</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1210" />
       <source>Redo the last edit action</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1206" />
-      <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1212" />
+      <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1218" />
       <source>Select All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1214" />
-      <source>&amp;Select All</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1215" />
-      <source>Ctrl+A</source>
-      <comment>Edit|Select All</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1220" />
+      <source>&amp;Select All</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1221" />
+      <source>Ctrl+A</source>
+      <comment>Edit|Select All</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1226" />
       <source>Select all text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1222" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1228" />
       <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current browser.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1232" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1231" />
-      <source>Unselect</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1233" />
-      <source>Alt+Ctrl+A</source>
-      <comment>Edit|Unselect</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1238" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1237" />
+      <source>Unselect</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1239" />
+      <source>Alt+Ctrl+A</source>
+      <comment>Edit|Unselect</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1244" />
       <source>Clear current selection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1240" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1246" />
       <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1249" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1255" />
       <source>Find...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1251" />
-      <source>&amp;Find...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1252" />
-      <source>Ctrl+F</source>
-      <comment>Edit|Find</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1257" />
+      <source>&amp;Find...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1258" />
+      <source>Ctrl+F</source>
+      <comment>Edit|Find</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1263" />
       <source>Find text in page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1259" />
-      <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1265" />
+      <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1271" />
       <source>Find next</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1267" />
-      <source>Find &amp;next</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1268" />
-      <source>F3</source>
-      <comment>Edit|Find next</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1273" />
+      <source>Find &amp;next</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1274" />
+      <source>F3</source>
+      <comment>Edit|Find next</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1279" />
       <source>Find next occurrence of text in page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1275" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1281" />
       <source>&lt;b&gt;Find next&lt;/b&gt;&lt;p&gt;Find the next occurrence of text in the current page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1284" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1290" />
       <source>Find previous</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1286" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1292" />
       <source>Find &amp;previous</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1287" />
-      <source>Shift+F3</source>
-      <comment>Edit|Find previous</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1293" />
+      <source>Shift+F3</source>
+      <comment>Edit|Find previous</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1299" />
       <source>Find previous occurrence of text in page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1296" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1302" />
       <source>&lt;b&gt;Find previous&lt;/b&gt;&lt;p&gt;Find the previous occurrence of text in the current page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1306" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1312" />
       <source>Manage Bookmarks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1307" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1313" />
       <source>&amp;Manage Bookmarks...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1308" />
-      <source>Ctrl+Shift+B</source>
-      <comment>Help|Manage bookmarks</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1314" />
+      <source>Ctrl+Shift+B</source>
+      <comment>Help|Manage bookmarks</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1320" />
       <source>Open a dialog to manage the bookmarks.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1317" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1323" />
       <source>&lt;b&gt;Manage Bookmarks...&lt;/b&gt;&lt;p&gt;Open a dialog to manage the bookmarks.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1326" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1332" />
       <source>Add Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1328" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1334" />
       <source>Add &amp;Bookmark...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1329" />
-      <source>Ctrl+D</source>
-      <comment>Help|Add bookmark</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1335" />
+      <source>Ctrl+D</source>
+      <comment>Help|Add bookmark</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1341" />
       <source>Open a dialog to add a bookmark.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1337" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1343" />
       <source>&lt;b&gt;Add Bookmark&lt;/b&gt;&lt;p&gt;Open a dialog to add the current URL as a bookmark.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1346" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1352" />
       <source>Add Folder</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1347" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1353" />
       <source>Add &amp;Folder...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1354" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1360" />
       <source>Open a dialog to add a new bookmarks folder.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1357" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1363" />
       <source>&lt;b&gt;Add Folder...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1366" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1372" />
       <source>Bookmark All Tabs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1367" />
-      <source>Bookmark All Tabs...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1373" />
+      <source>Bookmark All Tabs...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1379" />
       <source>Bookmark all open tabs.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1375" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1381" />
       <source>&lt;b&gt;Bookmark All Tabs...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder for all open tabs.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1385" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1391" />
       <source>What's This?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1387" />
-      <source>&amp;What's This?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1388" />
-      <source>Shift+F1</source>
-      <comment>Help|What's This?'</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1393" />
+      <source>&amp;What's This?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1394" />
+      <source>Shift+F1</source>
+      <comment>Help|What's This?'</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1399" />
       <source>Context sensitive help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1395" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1401" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1408" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1414" />
       <source>About</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1408" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1414" />
       <source>&amp;About</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1410" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1416" />
       <source>Display information about this software</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1412" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1418" />
       <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1421" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1427" />
       <source>About Qt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1422" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1428" />
       <source>About &amp;Qt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1429" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1435" />
       <source>Display information about the Qt toolkit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1432" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1438" />
       <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" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1441" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1447" />
       <source>Zoom in</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1443" />
-      <source>Zoom &amp;in</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1444" />
-      <source>Ctrl++</source>
-      <comment>View|Zoom in</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1445" />
-      <source>Zoom In</source>
-      <comment>View|Zoom in</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1449" />
-      <source>Zoom in on the web page</source>
+      <source>Zoom &amp;in</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1450" />
+      <source>Ctrl++</source>
+      <comment>View|Zoom in</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1451" />
+      <source>Zoom In</source>
+      <comment>View|Zoom in</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1455" />
+      <source>Zoom in on the web page</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1457" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the web page. This makes the web page bigger.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1461" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1467" />
       <source>Zoom out</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1463" />
-      <source>Zoom &amp;out</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1464" />
-      <source>Ctrl+-</source>
-      <comment>View|Zoom out</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1465" />
-      <source>Zoom Out</source>
-      <comment>View|Zoom out</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1469" />
-      <source>Zoom out on the web page</source>
+      <source>Zoom &amp;out</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1470" />
+      <source>Ctrl+-</source>
+      <comment>View|Zoom out</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1471" />
+      <source>Zoom Out</source>
+      <comment>View|Zoom out</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1475" />
+      <source>Zoom out on the web page</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1477" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the web page. This makes the web page smaller.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1481" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1487" />
       <source>Zoom reset</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1483" />
-      <source>Zoom &amp;reset</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1484" />
-      <source>Ctrl+0</source>
-      <comment>View|Zoom reset</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1489" />
+      <source>Zoom &amp;reset</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1490" />
+      <source>Ctrl+0</source>
+      <comment>View|Zoom reset</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1495" />
       <source>Reset the zoom of the web page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1491" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1497" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the web page. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1502" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1501" />
-      <source>Show page source</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1503" />
-      <source>Ctrl+U</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1508" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1507" />
+      <source>Show page source</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1509" />
+      <source>Ctrl+U</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1514" />
       <source>Show the page source in an editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1510" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1516" />
       <source>&lt;b&gt;Show page source&lt;/b&gt;&lt;p&gt;Show the page source in an editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1520" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1526" />
       <source>Full Screen</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1522" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1528" />
       <source>&amp;Full Screen</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1529" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1535" />
       <source>Meta+Ctrl+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1531" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1537" />
       <source>F11</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1538" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1537" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1544" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1543" />
       <source>Show next tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1539" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1545" />
       <source>Ctrl+Alt+Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1550" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1549" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1556" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1555" />
       <source>Show previous tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1551" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1557" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1562" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1561" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1568" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1567" />
       <source>Switch between tabs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1563" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1569" />
       <source>Ctrl+1</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1573" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1579" />
       <source>Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1575" />
-      <source>&amp;Preferences...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1581" />
+      <source>&amp;Preferences...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1587" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1583" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1589" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1593" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1599" />
       <source>Languages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1595" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1601" />
       <source>&amp;Languages...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1602" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1608" />
       <source>Configure the accepted languages for web pages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1605" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1611" />
       <source>&lt;b&gt;Languages&lt;/b&gt;&lt;p&gt;Configure the accepted languages for web pages.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1614" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1620" />
       <source>Cookies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1616" />
-      <source>C&amp;ookies...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1622" />
+      <source>C&amp;ookies...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1628" />
       <source>Configure cookies handling</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1624" />
-      <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1630" />
+      <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1636" />
       <source>Personal Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1632" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1638" />
       <source>Personal Information...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1639" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1645" />
       <source>Configure personal information for completing form fields</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1642" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1648" />
       <source>&lt;b&gt;Personal Information...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the personal information used for completing form fields.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1652" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1658" />
       <source>GreaseMonkey Scripts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1654" />
-      <source>GreaseMonkey Scripts...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1660" />
+      <source>GreaseMonkey Scripts...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1666" />
       <source>Configure the GreaseMonkey Scripts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1662" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1668" />
       <source>&lt;b&gt;GreaseMonkey Scripts...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available GreaseMonkey Scripts.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1672" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1678" />
       <source>Edit Message Filters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1674" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1680" />
       <source>Edit Message Filters...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1681" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1687" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1684" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1690" />
       <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1695" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1701" />
       <source>Edit HTML5 Feature Permissions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1697" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1703" />
       <source>Edit HTML5 Feature Permissions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1704" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1710" />
       <source>Edit the remembered HTML5 feature permissions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1707" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1713" />
       <source>&lt;b&gt;Edit HTML5 Feature Permissions&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the remembered HTML5 feature permissions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1720" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1718" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1726" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1724" />
       <source>Sync with Table of Contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1733" />
       <source>Synchronizes the table of contents with current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1730" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1736" />
       <source>&lt;b&gt;Sync with Table of Contents&lt;/b&gt;&lt;p&gt;Synchronizes the table of contents with current page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1741" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1740" />
-      <source>Table of Contents</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1747" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1746" />
+      <source>Table of Contents</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1753" />
       <source>Shows the table of contents window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1749" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1755" />
       <source>&lt;b&gt;Table of Contents&lt;/b&gt;&lt;p&gt;Shows the table of contents window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1760" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1766" />
       <source>Shows the index window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1762" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1768" />
       <source>&lt;b&gt;Index&lt;/b&gt;&lt;p&gt;Shows the index window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1781" />
       <source>Shows the search window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1777" />
-      <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1783" />
+      <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1789" />
       <source>Manage QtHelp Documents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1784" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1790" />
       <source>Manage QtHelp &amp;Documents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1791" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1797" />
       <source>Shows a dialog to manage the QtHelp documentation set</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1794" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1800" />
       <source>&lt;b&gt;Manage QtHelp Documents&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the QtHelp documentation set.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1804" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1810" />
       <source>Reindex Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1805" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1811" />
       <source>&amp;Reindex Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1812" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1818" />
       <source>Reindexes the documentation set</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1815" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1821" />
       <source>&lt;b&gt;Reindex Documentation&lt;/b&gt;&lt;p&gt;Reindexes the documentation set.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1840" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1834" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1828" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1826" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1832" />
       <source>Clear private data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1836" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1842" />
       <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like browsing history, search history or the favicons database.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1846" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1852" />
       <source>Clear icons database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1847" />
-      <source>Clear &amp;icons database</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1853" />
+      <source>Clear &amp;icons database</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1859" />
       <source>Clear the database of favicons</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1855" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1861" />
       <source>&lt;b&gt;Clear icons database&lt;/b&gt;&lt;p&gt;Clears the database of favicons of previously visited URLs.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1867" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1865" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1873" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1871" />
       <source>Manage Saved Favicons</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1874" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1880" />
       <source>Show a dialog to manage the saved favicons</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1877" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1883" />
       <source>&lt;b&gt;Manage Saved Favicons&lt;/b&gt;&lt;p&gt;This shows a dialog to manage the saved favicons of previously visited URLs.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1887" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1893" />
       <source>Configure Search Engines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1888" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1894" />
       <source>Configure Search &amp;Engines...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1895" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1901" />
       <source>Configure the available search engines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1898" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1904" />
       <source>&lt;b&gt;Configure Search Engines...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available search engines.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1908" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1914" />
       <source>Manage Saved Passwords</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1910" />
-      <source>Manage Saved Passwords...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1916" />
+      <source>Manage Saved Passwords...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1922" />
       <source>Manage the saved passwords</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1918" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1924" />
       <source>&lt;b&gt;Manage Saved Passwords...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved passwords.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1927" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1933" />
       <source>Ad Block</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1929" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1935" />
       <source>&amp;Ad Block...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1936" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1942" />
       <source>Configure AdBlock subscriptions and rules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1939" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1945" />
       <source>&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure AdBlock subscriptions and rules.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1949" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1955" />
       <source>Manage SSL Certificate Errors</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1951" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1957" />
       <source>Manage SSL Certificate Errors...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1958" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1964" />
       <source>Manage the accepted SSL certificate Errors</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1961" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1967" />
       <source>&lt;b&gt;Manage SSL Certificate Errors...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the accepted SSL certificate errors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1971" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1977" />
       <source>Manage Safe Browsing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1973" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1979" />
       <source>Manage Safe Browsing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1980" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1986" />
       <source>Configure Safe Browsing and manage local cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1983" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1989" />
       <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1994" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1993" />
-      <source>Downloads</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2000" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1999" />
+      <source>Downloads</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2006" />
       <source>Shows the downloads window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2002" />
-      <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2008" />
+      <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2014" />
       <source>RSS Feeds Dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2010" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2016" />
       <source>&amp;RSS Feeds Dialog...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2011" />
-      <source>Ctrl+Shift+F</source>
-      <comment>Help|RSS Feeds Dialog</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2017" />
+      <source>Ctrl+Shift+F</source>
+      <comment>Help|RSS Feeds Dialog</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2023" />
       <source>Open a dialog showing the configured RSS feeds.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2020" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2026" />
       <source>&lt;b&gt;RSS Feeds Dialog...&lt;/b&gt;&lt;p&gt;Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2031" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2037" />
       <source>Siteinfo Dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2033" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2039" />
       <source>&amp;Siteinfo Dialog...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2034" />
-      <source>Ctrl+Shift+I</source>
-      <comment>Help|Siteinfo Dialog</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2040" />
+      <source>Ctrl+Shift+I</source>
+      <comment>Help|Siteinfo Dialog</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2046" />
       <source>Open a dialog showing some information about the current site.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2043" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2049" />
       <source>&lt;b&gt;Siteinfo Dialog...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the current site.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2053" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2059" />
       <source>Manage User Agent Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2054" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2060" />
       <source>Manage &amp;User Agent Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2061" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2067" />
       <source>Shows a dialog to manage the User Agent settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2064" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2070" />
       <source>&lt;b&gt;Manage User Agent Settings&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the User Agent settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2073" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2079" />
       <source>Synchronize data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2075" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2081" />
       <source>&amp;Synchronize Data...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2082" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2088" />
       <source>Shows a dialog to synchronize data via the network</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2085" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2091" />
       <source>&lt;b&gt;Synchronize Data...&lt;/b&gt;&lt;p&gt;This shows a dialog to synchronize data via the network.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2095" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2101" />
       <source>Manage Saved Zoom Values</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2097" />
-      <source>Manage Saved Zoom Values...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2103" />
+      <source>Manage Saved Zoom Values...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2109" />
       <source>Manage the saved zoom values</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2105" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2111" />
       <source>&lt;b&gt;Manage Saved Zoom Values...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved zoom values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2122" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2128" />
       <source>Toggle the JavaScript console window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2125" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2131" />
       <source>&lt;b&gt;JavaScript Console&lt;/b&gt;&lt;p&gt;This toggles the JavaScript console window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2135" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2134" />
-      <source>Tab Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2141" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2140" />
+      <source>Tab Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2147" />
       <source>Shows the tab manager window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2143" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2149" />
       <source>&lt;b&gt;Tab Manager&lt;/b&gt;&lt;p&gt;Shows the tab manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2151" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2157" />
       <source>Session Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2152" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2158" />
       <source>Session Manager...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2159" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2165" />
       <source>Shows the session manager window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2162" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2168" />
       <source>&lt;b&gt;Session Manager&lt;/b&gt;&lt;p&gt;Shows the session manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2173" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2171" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2179" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2177" />
       <source>Scan current site</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5180" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5170" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2187" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2185" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5185" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5175" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2193" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2191" />
       <source>IP Address Report</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5194" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2199" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2197" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5199" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2205" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2203" />
       <source>Domain Report</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2217" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2223" />
       <source>Keyboard Shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2219" />
-      <source>Keyboard &amp;Shortcuts...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2225" />
+      <source>Keyboard &amp;Shortcuts...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2231" />
       <source>Set the keyboard shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2227" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2233" />
       <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5600" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5581" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2237" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5605" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5586" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2243" />
       <source>Export Keyboard Shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2239" />
-      <source>&amp;Export Keyboard Shortcuts...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2245" />
+      <source>&amp;Export Keyboard Shortcuts...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2251" />
       <source>Export the keyboard shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2247" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2253" />
       <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5620" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2256" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5625" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2262" />
       <source>Import Keyboard Shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2258" />
-      <source>&amp;Import Keyboard Shortcuts...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2264" />
+      <source>&amp;Import Keyboard Shortcuts...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2270" />
       <source>Import the keyboard shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2266" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2272" />
       <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2275" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2281" />
       <source>Protocol Handler Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2276" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2282" />
       <source>Protocol Handler Manager...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2283" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2289" />
       <source>Shows the protocol handler manager window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2286" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2292" />
       <source>&lt;b&gt;Protocol Handler Manager&lt;/b&gt;&lt;p&gt;Shows the protocol handler manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2330" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2336" />
       <source>&amp;File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2524" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2338" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2530" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2344" />
       <source>Sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2362" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2368" />
       <source>&amp;Edit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2596" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2378" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2602" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2384" />
       <source>&amp;View</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2389" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2395" />
       <source>Text Encoding</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2398" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2404" />
       <source>H&amp;istory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2414" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2420" />
       <source>&amp;Bookmarks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2430" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2436" />
       <source>&amp;Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2460" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2466" />
       <source>Global User Agent</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2627" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2472" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2633" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2478" />
       <source>&amp;Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2634" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2479" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2640" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2485" />
       <source>&amp;VirusTotal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2598" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2485" />
-      <source>&amp;Windows</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2604" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2491" />
+      <source>&amp;Windows</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2610" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2497" />
       <source>QtHelp</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2496" />
-      <source>&amp;Toolbars</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2502" />
+      <source>&amp;Toolbars</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2508" />
       <source>&amp;Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2531" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2537" />
       <source>Save</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2551" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2557" />
       <source>Show All History...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2721" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2558" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2564" />
       <source>Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2652" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2658" />
       <source>File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2676" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2682" />
       <source>Edit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2688" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2694" />
       <source>View</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2697" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2703" />
       <source>Find</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2705" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2711" />
       <source>Filter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2712" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2718" />
       <source>Filtered by: </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2732" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2738" />
       <source>Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2740" />
-      <source>Help</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2746" />
+      <source>Help</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2752" />
       <source>VirusTotal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2890" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2896" />
       <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2894" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2900" />
       <source>OK</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2929" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2906" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2935" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2912" />
       <source>HTML Files (*.html *.htm *.mhtml *.mht);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2977" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2983" />
       <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chromium {2} with Security Patches {3}.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2992" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2998" />
       <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chromium {2}.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3127" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3133" />
       <source>Saved Tabs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3310" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3316" />
       <source>Are you sure you want to close the web browser?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3311" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3317" />
       <source>Are you sure you want to close the web browser?
 You have {0} windows with {1} tabs open.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3910" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3916" />
       <source>Could not find any associated content.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3956" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3962" />
       <source>Unfiltered</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4012" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4018" />
       <source>Updating search index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4088" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4094" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4121" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4127" />
       <source>Help Engine</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4717" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4722" />
       <source>System</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4721" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4726" />
       <source>ISO</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4724" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4729" />
       <source>Unicode</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4732" />
       <source>Windows</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4730" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4735" />
       <source>IBM</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4733" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4738" />
       <source>Apple</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4736" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4741" />
       <source>Other</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4763" />
-      <source>Menu Bar</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="4768" />
-      <source>Bookmarks</source>
+      <source>Menu Bar</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="4773" />
+      <source>Bookmarks</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4778" />
       <source>Status Bar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4788" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4793" />
       <source>&amp;Show all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4790" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4795" />
       <source>&amp;Hide all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5136" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5141" />
       <source>VirusTotal Scan</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5137" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5142" />
       <source>&lt;p&gt;The VirusTotal scan could not be scheduled.&lt;p&gt;
 &lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5171" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5176" />
       <source>Enter a valid IPv4 address in dotted quad notation:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5181" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5186" />
       <source>The given IP address is not in dotted quad notation.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5195" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5200" />
       <source>Enter a valid domain name:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5622" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5583" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5627" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5588" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5601" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5606" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
Binary file src/eric7/i18n/eric7_es.qm has changed
--- a/src/eric7/i18n/eric7_es.ts	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/i18n/eric7_es.ts	Sun Jun 02 09:51:20 2024 +0200
@@ -4,7 +4,7 @@
   <context>
     <name>AboutDialog</name>
     <message>
-      <location filename="../Plugins/AboutPlugin/AboutDialog.py" line="21" />
+      <location filename="../Plugins/AboutPlugin/AboutDialog.py" line="22" />
       <source>&lt;p&gt;{0} is an Integrated Development Environment for the Python programming language. It is written using the PyQt Python bindings for the Qt GUI toolkit and the QScintilla editor widget.&lt;/p&gt;&lt;p&gt;For more information see &lt;a href="{1}"&gt;{1}&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Please send bug reports to &lt;a href="mailto:{2}"&gt;{2}&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;To request a new feature please send an email to &lt;a href="mailto:{3}"&gt;{3}&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;{0} uses third party software which is copyrighted by its respective copyright holder. For details see the copyright notice of the individual package.&lt;/p&gt;</source>
       <translation>&lt;p&gt;{0} es un Entorno Integrado de Desarrollo para el lenguaje de programación Python. Está escrito utilizando los bindings PyQt Python para el conjunto de herramientas Qt GUI y el widget de edición de código QScintilla.&lt;/p&gt;&lt;p&gt;Para más información ver &lt;a href="{1}"&gt;{1}&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Enviar por favor informes de errores a &lt;a href="mailto:{2}"&gt;{2}&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Para solicitar una nueva característica enviar por favor un email a &lt;a href="mailto:{3}"&gt;{3}&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;{0} utiliza software de terceras partes cuyo derecho de copia está establecido por sus propietarios. Para ver detalles, leer la nota de derechos de copia para cada paquete de software individual.&lt;/p&gt;</translation>
     </message>
@@ -37,42 +37,42 @@
   <context>
     <name>AboutPlugin</name>
     <message>
-      <location filename="../Plugins/PluginAbout.py" line="83" />
+      <location filename="../Plugins/PluginAbout.py" line="84" />
       <source>About {0}</source>
       <translation>Acerca de {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginAbout.py" line="85" />
+      <location filename="../Plugins/PluginAbout.py" line="86" />
       <source>&amp;About {0}</source>
       <translation>&amp;Acerca de {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginAbout.py" line="91" />
+      <location filename="../Plugins/PluginAbout.py" line="92" />
       <source>Display information about this software</source>
       <translation>Muestra información acerca de este software</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginAbout.py" line="93" />
+      <location filename="../Plugins/PluginAbout.py" line="94" />
       <source>&lt;b&gt;About {0}&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Acerca de {0}&lt;/b&gt;&lt;p&gt;Muestra información sobre este software.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginAbout.py" line="103" />
+      <location filename="../Plugins/PluginAbout.py" line="104" />
       <source>About Qt</source>
       <translation>Acerca de Qt</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginAbout.py" line="105" />
+      <location filename="../Plugins/PluginAbout.py" line="106" />
       <source>About &amp;Qt</source>
       <translation>Acerca de &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginAbout.py" line="112" />
+      <location filename="../Plugins/PluginAbout.py" line="113" />
       <source>Display information about the Qt toolkit</source>
       <translation>Muestra información sobre las herramientas Qt</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginAbout.py" line="115" />
+      <location filename="../Plugins/PluginAbout.py" line="116" />
       <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;Muestra información sobre las herramientas Qt.&lt;/p&gt;</translation>
     </message>
@@ -1735,42 +1735,42 @@
       <translation>{0} no configurado.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="217" />
+      <location filename="../Utilities/BackgroundService.py" line="230" />
       <source>Initialization of Background Service</source>
       <translation>Inicialización de Servicio en Segundo Plano</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="218" />
-      <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Inicialización de Servicio en Segundo Plano &lt;b&gt;{0}&lt;/b&gt; fallida.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="231" />
+      <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Inicialización de Servicio en Segundo Plano &lt;b&gt;{0}&lt;/b&gt; fallida.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="244" />
       <source>Restart background client?</source>
       <translation>¿Reiniciar cliente en background?</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="232" />
+      <location filename="../Utilities/BackgroundService.py" line="245" />
       <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It's used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Yes'&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Retry'&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'No'&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El cliente en background para &lt;b&gt;{0}&lt;/b&gt; se ha detenido debido a una excepción. Éste es utilizado por varios plug-ins como los distintos comprobadores.&lt;/p&gt;&lt;p&gt;Seleccionar&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Si'&lt;/b&gt; para reiniciar el cliente, abortando el último trabajo&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Reintentar'&lt;/b&gt; para reiniciar el cliente y el último trabajo&lt;/li&gt;&lt;li&gt;&lt;b&gt;'No'&lt;/b&gt; para dejar el cliente sin iniciar.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Nota: El cliente se puede reiniciar abriendo y aceptando el diálogo de preferencias o recargando/cambiando el proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="261" />
+      <location filename="../Utilities/BackgroundService.py" line="274" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation>Un error en el cliente en background de Eric ha detenido el servicio.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="502" />
+      <location filename="../Utilities/BackgroundService.py" line="515" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation>El cliente en background de Eric ha desconectado debido a una razón desconocida.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="511" />
+      <location filename="../Utilities/BackgroundService.py" line="524" />
       <source>Background client disconnected.</source>
       <translation>Cliente en background desconectado.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="512" />
+      <location filename="../Utilities/BackgroundService.py" line="525" />
       <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
       <translation>El cliente en background para &lt;b&gt;{0}&lt;/b&gt; ha desconectado por razón desconocida.&lt;br&gt;¿Reiniciarlo?</translation>
     </message>
@@ -6532,7 +6532,7 @@
   <context>
     <name>CodingError</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="184" />
+      <location filename="../Utilities/__init__.py" line="185" />
       <source>The coding '{0}' is wrong for the given text.</source>
       <translation>La codificación '{0}' es incorrecta para el texto indicado.</translation>
     </message>
@@ -9244,665 +9244,665 @@
   <context>
     <name>DebugUI</name>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="210" />
+      <location filename="../Debugger/DebugUI.py" line="207" />
       <source>Notification</source>
       <translation>Notificación</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2342" />
-      <location filename="../Debugger/DebugUI.py" line="237" />
+      <location filename="../Debugger/DebugUI.py" line="2339" />
+      <location filename="../Debugger/DebugUI.py" line="234" />
       <source>Run Script</source>
       <translation>Ejecutar Script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="239" />
+      <location filename="../Debugger/DebugUI.py" line="236" />
       <source>&amp;Run Script...</source>
       <translation>&amp;Ejecutar script...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="245" />
+      <location filename="../Debugger/DebugUI.py" line="242" />
       <source>Run the current Script</source>
       <translation>Ejecutar el script actual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="247" />
+      <location filename="../Debugger/DebugUI.py" line="244" />
       <source>&lt;b&gt;Run Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ejecutar Script&lt;/b&gt;&lt;p&gt;Establece los parámetros de la línea de comandos y ejecuta el script fuera del depurador. Si tiene cambios sin guardar, deben ser guardados primero.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2348" />
-      <location filename="../Debugger/DebugUI.py" line="2342" />
-      <location filename="../Debugger/DebugUI.py" line="258" />
+      <location filename="../Debugger/DebugUI.py" line="2345" />
+      <location filename="../Debugger/DebugUI.py" line="2339" />
+      <location filename="../Debugger/DebugUI.py" line="255" />
       <source>Run Project</source>
       <translation>Ejecutar Proyecto</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="260" />
+      <location filename="../Debugger/DebugUI.py" line="257" />
       <source>Run &amp;Project...</source>
       <translation>Ejecutar &amp;Proyecto...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="266" />
+      <location filename="../Debugger/DebugUI.py" line="263" />
       <source>Run the current Project</source>
       <translation>Ejecutar el proyecto Actual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="268" />
+      <location filename="../Debugger/DebugUI.py" line="265" />
       <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ejecutar Proyecto&lt;/b&gt;&lt;p&gt;Establece los argumentos de la línea de comandos y ejecuta el proyecto actual fuera del depurador. Si los archivos del proyecto actual tienen archivos sin guardar, deben ser guardados primero.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="280" />
+      <location filename="../Debugger/DebugUI.py" line="277" />
       <source>Coverage run of Script</source>
       <translation>Ejecutar Script con definición de cobertura</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="282" />
+      <location filename="../Debugger/DebugUI.py" line="279" />
       <source>Coverage run of Script...</source>
       <translation>Ejecutar Script con definición de cobertura...</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="286" />
+      <source>Perform a coverage run of the current Script</source>
+      <translation>Llevar a cabo una ejecución con definición de cobertura del Script actual</translation>
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="289" />
-      <source>Perform a coverage run of the current Script</source>
-      <translation>Llevar a cabo una ejecución con definición de cobertura del Script actual</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="292" />
       <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ejecutar Script con definición de cobertura&lt;/b&gt;&lt;p&gt;Establece los argumentos de línea de comando y ejecuta el script bajo el control de una herramienta de análisis de cobertura. Si el archivo tiene cambios sin guardar, pueden ser guardados primero.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="303" />
+      <location filename="../Debugger/DebugUI.py" line="300" />
       <source>Coverage run of Project</source>
       <translation>Ejecutar el Proyecto con definición de cobertura</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="305" />
+      <location filename="../Debugger/DebugUI.py" line="302" />
       <source>Coverage run of Project...</source>
       <translation>Ejecutar el Proyecto con definición de cobertura...</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="309" />
+      <source>Perform a coverage run of the current Project</source>
+      <translation>Llevar a cabo una ejecución con definición de cobertura del Proyecto actual</translation>
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="312" />
-      <source>Perform a coverage run of the current Project</source>
-      <translation>Llevar a cabo una ejecución con definición de cobertura del Proyecto actual</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="315" />
       <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ejecutar Proyecto con definición de cobertura&lt;/b&gt;&lt;p&gt;Establecer los argumentos de línea de comando y ejecutar el proyecto actual bajo el control de una herramienta de análisis de cobertura. Si hay archivos con cambios sin guardar, se pueden guardar primero.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="327" />
+      <location filename="../Debugger/DebugUI.py" line="324" />
       <source>Profile Script</source>
       <translation>Hacer Profiling del Script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="329" />
+      <location filename="../Debugger/DebugUI.py" line="326" />
       <source>Profile Script...</source>
       <translation>Hacer Profiling del Script...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="335" />
+      <location filename="../Debugger/DebugUI.py" line="332" />
       <source>Profile the current Script</source>
       <translation>Hacer Profiling del Script actual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="337" />
+      <location filename="../Debugger/DebugUI.py" line="334" />
       <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Hacer Profiling del Script&lt;/b&gt;&lt;p&gt;Establecer los argumentos de línea de comandos y hacer profiling del script. Si el archivo tiene cambios sin guardar, se pueden guardar primero.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="347" />
+      <location filename="../Debugger/DebugUI.py" line="344" />
       <source>Profile Project</source>
       <translation>Hacer Profiling del Proyecto</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="349" />
+      <location filename="../Debugger/DebugUI.py" line="346" />
       <source>Profile Project...</source>
       <translation>Hacer Profiling del Proyecto...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="355" />
+      <location filename="../Debugger/DebugUI.py" line="352" />
       <source>Profile the current Project</source>
       <translation>Hacer Profiling del Proyecto actual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="357" />
+      <location filename="../Debugger/DebugUI.py" line="354" />
       <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Hacer Profiling del Proyecto&lt;/b&gt;&lt;p&gt;Establecer los argumentos de línea de comandos y hacer profiling del proyecto actual. Si hay archivos que tienen cambios sin guardar, se puede guardar primero.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2528" />
-      <location filename="../Debugger/DebugUI.py" line="368" />
+      <location filename="../Debugger/DebugUI.py" line="2525" />
+      <location filename="../Debugger/DebugUI.py" line="365" />
       <source>Debug Script</source>
       <translation>Depurar Script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="370" />
+      <location filename="../Debugger/DebugUI.py" line="367" />
       <source>&amp;Debug Script...</source>
       <translation>&amp;Depurar script...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="376" />
+      <location filename="../Debugger/DebugUI.py" line="373" />
       <source>Debug the current Script</source>
       <translation>Depurar el script actual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="378" />
+      <location filename="../Debugger/DebugUI.py" line="375" />
       <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Depurar Script&lt;/b&gt;&lt;p&gt;Establecer los argumentos de línea de comandos y establecer la línea actual en la ventana actual de edición como la primera sentencia Python ejecutable. Si el archivo tiene cambios sin guardar, se puede guardar primero.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2534" />
-      <location filename="../Debugger/DebugUI.py" line="2528" />
-      <location filename="../Debugger/DebugUI.py" line="390" />
+      <location filename="../Debugger/DebugUI.py" line="2531" />
+      <location filename="../Debugger/DebugUI.py" line="2525" />
+      <location filename="../Debugger/DebugUI.py" line="387" />
       <source>Debug Project</source>
       <translation>Depurar proyecto</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="392" />
+      <location filename="../Debugger/DebugUI.py" line="389" />
       <source>Debug &amp;Project...</source>
       <translation>Depurar &amp;proyecto...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="398" />
+      <location filename="../Debugger/DebugUI.py" line="395" />
       <source>Debug the current Project</source>
       <translation>Depurar el proyecto actual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="400" />
+      <location filename="../Debugger/DebugUI.py" line="397" />
       <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Depurar Proyecto&lt;/b&gt;&lt;p&gt;Establecer los argumentos de línea de comandos y establecer la línea actual en la ventana actual de edición como la primera sentencia Python ejecutable. Si hay archivos que tienen cambios sin guardar, se pueden guardar primero.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="414" />
-      <location filename="../Debugger/DebugUI.py" line="412" />
+      <location filename="../Debugger/DebugUI.py" line="411" />
+      <location filename="../Debugger/DebugUI.py" line="409" />
       <source>Restart</source>
       <translation>Reiniciar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="420" />
+      <location filename="../Debugger/DebugUI.py" line="417" />
       <source>Restart the last debugged script</source>
       <translation>Reiniciar el último script depurado</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="422" />
+      <location filename="../Debugger/DebugUI.py" line="419" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Reiniciar&lt;/b&gt;&lt;p&gt;Establecer los argumentos de línea de comandos y la línea actual para que sea la primera sentencia del script que se depuró en último lugar. Si hay cambios sin guardar, pueden ser guardados primero.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="631" />
-      <location filename="../Debugger/DebugUI.py" line="436" />
-      <location filename="../Debugger/DebugUI.py" line="434" />
+      <location filename="../Debugger/DebugUI.py" line="628" />
+      <location filename="../Debugger/DebugUI.py" line="433" />
+      <location filename="../Debugger/DebugUI.py" line="431" />
       <source>Stop</source>
       <translation>Detener</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="442" />
+      <location filename="../Debugger/DebugUI.py" line="439" />
       <source>Stop the running script.</source>
       <translation>Detener el script en ejecución.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="444" />
+      <location filename="../Debugger/DebugUI.py" line="441" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Detener&lt;/b&gt;&lt;p&gt;Esto detiene el script que está corriendo en el backend del depurador.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="455" />
+      <location filename="../Debugger/DebugUI.py" line="452" />
       <source>Continue</source>
       <translation>Continuar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="457" />
+      <location filename="../Debugger/DebugUI.py" line="454" />
       <source>&amp;Continue</source>
       <translation>&amp;Continuar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="463" />
+      <location filename="../Debugger/DebugUI.py" line="460" />
       <source>Continue running the program from the current line</source>
       <translation>Continúa el programa a partir de la línea actual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="465" />
+      <location filename="../Debugger/DebugUI.py" line="462" />
       <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Continuar&lt;/b&gt;&lt;p&gt;Continúa la ejecución del programa a partir de la línea actual. El programa se detendrá al terminar o al alcanzar un breakpoint.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="476" />
+      <location filename="../Debugger/DebugUI.py" line="473" />
       <source>Continue to Cursor</source>
       <translation>Continuar hasta el cursor</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="478" />
+      <location filename="../Debugger/DebugUI.py" line="475" />
       <source>Continue &amp;To Cursor</source>
       <translation>Continuar &amp;hasta el cursor</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="485" />
+      <location filename="../Debugger/DebugUI.py" line="482" />
       <source>Continue running the program from the current line to the current cursor position</source>
       <translation>Continúa ejecutando el programa desde la línea actual hasta la posición actual del cursor</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="491" />
+      <location filename="../Debugger/DebugUI.py" line="488" />
       <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Continuar hasta el Cursor&lt;/b&gt;&lt;p&gt;Continúa ejecutando el programa desde la línea actual hasta la posición actual del cursor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="501" />
+      <location filename="../Debugger/DebugUI.py" line="498" />
       <source>Continue Until</source>
       <translation>Continuar Hasta</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="503" />
+      <location filename="../Debugger/DebugUI.py" line="500" />
       <source>Continue &amp;Until</source>
       <translation>Contin&amp;uar Hasta</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="510" />
+      <location filename="../Debugger/DebugUI.py" line="507" />
       <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
       <translation>Continuar la ejecución del programa desde la línea actual hasta la posición del cursor o hasta abandonar el marco actual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="516" />
+      <location filename="../Debugger/DebugUI.py" line="513" />
       <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Continuar Hasta&lt;/b&gt;&lt;p&gt;Continuar la ejecución del programa desde la línea actual hasta la posición del cursor o hasta abandonar el marco actual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="527" />
+      <location filename="../Debugger/DebugUI.py" line="524" />
       <source>Move Instruction Pointer to Cursor</source>
       <translation>Mover el Puntero de Instrucción hasta el Cursor</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="529" />
+      <location filename="../Debugger/DebugUI.py" line="526" />
       <source>&amp;Jump To Cursor</source>
       <translation>Saltar al &amp;Cursor</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="536" />
+      <location filename="../Debugger/DebugUI.py" line="533" />
       <source>Skip the code from the current line to the current cursor position</source>
       <translation>Omitir el código desde la línea actual hasta la posición actual del cursor</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="542" />
+      <location filename="../Debugger/DebugUI.py" line="539" />
       <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Mover Puntero de Instrucción hasta el Cursor&lt;/b&gt;&lt;p&gt;Mover el puntero interno de instrucción de Python hasta la posición actual del cursor sin executar el código entre ambos puntos.&lt;/p&gt;&lt;p&gt;No es posible saltar fuera de una función o saltar a un bloque de código, por ej. un bucle. En estos casos, se imprime un error de mensaje a la ventana de log.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="556" />
+      <location filename="../Debugger/DebugUI.py" line="553" />
       <source>Single Step</source>
       <translation>Un paso</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="558" />
+      <location filename="../Debugger/DebugUI.py" line="555" />
       <source>Sin&amp;gle Step</source>
       <translation>Un &amp;paso</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="564" />
+      <location filename="../Debugger/DebugUI.py" line="561" />
       <source>Execute a single Python statement</source>
       <translation>Ejecuta una sentencia python</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="566" />
+      <location filename="../Debugger/DebugUI.py" line="563" />
       <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Paso Único&lt;/b&gt;&lt;p&gt;Ejecutar una única sentencia Python. Si la sentencia es un &lt;tt&gt;import&lt;/tt&gt;, un constructor de clase, o un método o llamada a función entonces el control se devuelve al depurador en la siguiente sentencia.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="578" />
+      <location filename="../Debugger/DebugUI.py" line="575" />
       <source>Step Over</source>
       <translation>Saltar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="580" />
+      <location filename="../Debugger/DebugUI.py" line="577" />
       <source>Step &amp;Over</source>
       <translation>Salta&amp;r</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="587" />
+      <location filename="../Debugger/DebugUI.py" line="584" />
       <source>Execute a single Python statement staying in the current frame</source>
       <translation>Ejecutar una única sentencia Python sin salir del marco actual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="593" />
+      <location filename="../Debugger/DebugUI.py" line="590" />
       <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Saltar&lt;/b&gt;&lt;p&gt;Eejcutar una única sentencia Python sin salir del marco actual. Si la sentencia es un &lt;tt&gt;import&lt;/tt&gt;, un constructor de clase, o un método o llamada a función, el control se devuelve al depurador despues de que la sentencia se haya completado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="606" />
+      <location filename="../Debugger/DebugUI.py" line="603" />
       <source>Step Out</source>
       <translation>Paso atras</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="608" />
+      <location filename="../Debugger/DebugUI.py" line="605" />
       <source>Step Ou&amp;t</source>
       <translation>Paso &amp;atras</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="612" />
+      <source>Execute Python statements until leaving the current frame</source>
+      <translation>Ejecutar sentencia Python hasta abandonar el marco actual</translation>
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="615" />
-      <source>Execute Python statements until leaving the current frame</source>
-      <translation>Ejecutar sentencia Python hasta abandonar el marco actual</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="618" />
       <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Saltar fuera&lt;/b&gt;&lt;p&gt;Ejecuta sentencias Python hasta salir del marco actual. Si las sentencias están dentro de una sentencia &lt;tt&gt;import&lt;/tt&gt;, un constructor de clase, o un método o llamada a función, el control se devuelve al depurador despues de que el marco actual ha sido abandonado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="633" />
+      <location filename="../Debugger/DebugUI.py" line="630" />
       <source>&amp;Stop</source>
       <translation>&amp;Parar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="639" />
+      <location filename="../Debugger/DebugUI.py" line="636" />
       <source>Stop debugging</source>
       <translation>Detener depuración</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="641" />
+      <location filename="../Debugger/DebugUI.py" line="638" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Detener&lt;/b&gt;&lt;p&gt;Detener la sesión de depuración en ejecución.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="647" />
+      <location filename="../Debugger/DebugUI.py" line="644" />
       <source>Variables Type Filter</source>
       <translation>Fitro por tipo de variable</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="648" />
+      <location filename="../Debugger/DebugUI.py" line="645" />
       <source>Varia&amp;bles Type Filter...</source>
       <translation>&amp;Fitro por tipo de variable...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="654" />
+      <location filename="../Debugger/DebugUI.py" line="651" />
       <source>Configure variables type filter</source>
       <translation>Configurar Fitro por tipo de variable</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="656" />
+      <location filename="../Debugger/DebugUI.py" line="653" />
       <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Fitro por tipo de variable&lt;/b&gt;&lt;p&gt;Configurar el fitro por tipo de variable. Durante una sesión de depuración, solo se muestran en las ventanas de variables locales o globales los tipos de variable que no han sido seleccionados.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="667" />
+      <location filename="../Debugger/DebugUI.py" line="664" />
       <source>Exceptions Filter</source>
       <translation>Filtro de excepciones</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="668" />
+      <location filename="../Debugger/DebugUI.py" line="665" />
       <source>&amp;Exceptions Filter...</source>
       <translation>Filtro de e&amp;xcepciones...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="674" />
+      <location filename="../Debugger/DebugUI.py" line="671" />
       <source>Configure exceptions filter</source>
       <translation>Configurar Filtro de excepciones</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="676" />
+      <location filename="../Debugger/DebugUI.py" line="673" />
       <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Filtro de excepciones&lt;/b&gt;&lt;p&gt;Configurar el filtro de excepciones. Durante una sesión de depuración solo se resaltan los tipos de excepción de la lista.&lt;/p&gt;&lt;p&gt;Por favor, note que se resaltarán todas las excepciones que no sean gestionadas, independientemente de la lista de filtros.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="688" />
+      <location filename="../Debugger/DebugUI.py" line="685" />
       <source>Ignored Exceptions</source>
       <translation>Excepciones Ignoradas</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="689" />
+      <location filename="../Debugger/DebugUI.py" line="686" />
       <source>&amp;Ignored Exceptions...</source>
       <translation>Excepciones &amp;Ignoradas...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="695" />
+      <location filename="../Debugger/DebugUI.py" line="692" />
       <source>Configure ignored exceptions</source>
       <translation>Configurar excepciones ignoradas</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="697" />
+      <location filename="../Debugger/DebugUI.py" line="694" />
       <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Excepciones ignoradas&lt;/b&gt;&lt;p&gt;Configurar las excepciones ignoradas. Durante una sesión de depuración se resaltarán solamente los tipos de excepción que no están en la lista.&lt;/p&gt;&lt;p&gt;Por favor, note que las excepciones no gestionadas no pueden ser ignoradas..&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="719" />
-      <location filename="../Debugger/DebugUI.py" line="713" />
-      <location filename="../Debugger/DebugUI.py" line="711" />
+      <location filename="../Debugger/DebugUI.py" line="716" />
+      <location filename="../Debugger/DebugUI.py" line="710" />
+      <location filename="../Debugger/DebugUI.py" line="708" />
       <source>Toggle Breakpoint</source>
       <translation>Alternar Punto de Interrupción (Breakpoint)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="714" />
+      <location filename="../Debugger/DebugUI.py" line="711" />
       <source>Shift+F11</source>
       <comment>Debug|Toggle Breakpoint</comment>
       <translation>Shift+F11</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="721" />
+      <location filename="../Debugger/DebugUI.py" line="718" />
       <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Alternar Punto de Interrupción&lt;/b&gt;&lt;p&gt;Inserta o elimina un punto de interrupción en la línea actual del editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="739" />
-      <location filename="../Debugger/DebugUI.py" line="731" />
+      <location filename="../Debugger/DebugUI.py" line="736" />
+      <location filename="../Debugger/DebugUI.py" line="728" />
       <source>Edit Breakpoint</source>
       <translation>Editar Punto de Interrupción (Breakpoint)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="733" />
+      <location filename="../Debugger/DebugUI.py" line="730" />
       <source>Edit Breakpoint...</source>
       <translation>Editar Punto de Interrupción (Breakpoint)...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="734" />
+      <location filename="../Debugger/DebugUI.py" line="731" />
       <source>Shift+F12</source>
       <comment>Debug|Edit Breakpoint</comment>
       <translation>Shift+F12</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="741" />
+      <location filename="../Debugger/DebugUI.py" line="738" />
       <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Editar Punto de Interrupción (Breakpoint)&lt;/b&gt;&lt;p&gt;Abre un diálogo para editar las propiedades de los breakpoints. Se aplica a la línea actual del editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="759" />
-      <location filename="../Debugger/DebugUI.py" line="753" />
-      <location filename="../Debugger/DebugUI.py" line="751" />
+      <location filename="../Debugger/DebugUI.py" line="756" />
+      <location filename="../Debugger/DebugUI.py" line="750" />
+      <location filename="../Debugger/DebugUI.py" line="748" />
       <source>Next Breakpoint</source>
       <translation>Siguiente Punto de Interrupción (Breakpoint)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="754" />
+      <location filename="../Debugger/DebugUI.py" line="751" />
       <source>Ctrl+Shift+PgDown</source>
       <comment>Debug|Next Breakpoint</comment>
       <translation>Ctrl+Shift+PgDown</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="761" />
+      <location filename="../Debugger/DebugUI.py" line="758" />
       <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Siguiente Breakpoint&lt;/b&gt;&lt;p&gt;Mueve el cursor al siguiente breakpoint.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="778" />
-      <location filename="../Debugger/DebugUI.py" line="772" />
-      <location filename="../Debugger/DebugUI.py" line="770" />
+      <location filename="../Debugger/DebugUI.py" line="775" />
+      <location filename="../Debugger/DebugUI.py" line="769" />
+      <location filename="../Debugger/DebugUI.py" line="767" />
       <source>Previous Breakpoint</source>
       <translation>Breakpoint (Punto de interrupción) Anterior</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="773" />
+      <location filename="../Debugger/DebugUI.py" line="770" />
       <source>Ctrl+Shift+PgUp</source>
       <comment>Debug|Previous Breakpoint</comment>
       <translation>Ctrl+Shift+PgUp</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="780" />
+      <location filename="../Debugger/DebugUI.py" line="777" />
       <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Punto de Interrupción (Breakpoint) Anterior&lt;/b&gt;&lt;p&gt;Mueve el cursor al anterior punto de interrupción.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="796" />
-      <location filename="../Debugger/DebugUI.py" line="790" />
-      <location filename="../Debugger/DebugUI.py" line="789" />
+      <location filename="../Debugger/DebugUI.py" line="793" />
+      <location filename="../Debugger/DebugUI.py" line="787" />
+      <location filename="../Debugger/DebugUI.py" line="786" />
       <source>Clear Breakpoints</source>
       <translation>Eliminar  Puntos de Interrupción (Breakpoints)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="798" />
+      <location filename="../Debugger/DebugUI.py" line="795" />
       <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Eliminar Puntos de Interrupción (Breakpoints)&lt;/b&gt;&lt;p&gt;Elimina todos los puntos de interrupción del editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="822" />
+      <location filename="../Debugger/DebugUI.py" line="819" />
       <source>&amp;Debug</source>
       <translation>&amp;Depurar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="824" />
+      <location filename="../Debugger/DebugUI.py" line="821" />
       <source>Sta&amp;rt</source>
       <translation>Inicia&amp;r</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="826" />
+      <location filename="../Debugger/DebugUI.py" line="823" />
       <source>&amp;Breakpoints</source>
       <translation>Puntos de interrupción (&amp;Breakpoints)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="869" />
-      <location filename="../Debugger/DebugUI.py" line="867" />
+      <location filename="../Debugger/DebugUI.py" line="866" />
+      <location filename="../Debugger/DebugUI.py" line="864" />
       <source>Start</source>
       <translation>Iniciar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="882" />
-      <location filename="../Debugger/DebugUI.py" line="880" />
+      <location filename="../Debugger/DebugUI.py" line="879" />
+      <location filename="../Debugger/DebugUI.py" line="877" />
       <source>Debug</source>
       <translation>Depurar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1345" />
+      <location filename="../Debugger/DebugUI.py" line="1342" />
       <source>Message: {0}</source>
       <translation>Mensaje: {0}</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1349" />
+      <location filename="../Debugger/DebugUI.py" line="1346" />
       <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El programa ha terminato con estado de salida {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1354" />
+      <location filename="../Debugger/DebugUI.py" line="1351" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; ha terminado con estado de salida {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1366" />
+      <location filename="../Debugger/DebugUI.py" line="1363" />
       <source>Program terminated</source>
       <translation>Programa terminado</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1402" />
+      <location filename="../Debugger/DebugUI.py" line="1399" />
       <source>The program being debugged contains an unspecified syntax error.</source>
       <translation>El programa en depuración contiene un error de sintaxis no especificado.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1422" />
+      <location filename="../Debugger/DebugUI.py" line="1419" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; contiene el error de sintaxis &lt;b&gt;{1}&lt;/b&gt; en la línea&lt;b&gt;{2}&lt;/b&gt;, carácter &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1450" />
+      <location filename="../Debugger/DebugUI.py" line="1447" />
       <source>An unhandled exception occured. See the shell window for details.</source>
       <translation>Ha saltado una excepción que no ha sido manejada. Vea la ventana de shell para mas detalles.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1497" />
+      <location filename="../Debugger/DebugUI.py" line="1494" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
       <translation>&lt;p&gt;El programa en depuración ha lanzado la excepción &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;Archivo: &lt;b&gt;{2}&lt;/b&gt;, Línea: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;¿Interrumpir aquí?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1515" />
+      <location filename="../Debugger/DebugUI.py" line="1512" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</source>
       <translation>&lt;p&gt;El programa en depuración ha lanzado la excepción &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1573" />
+      <location filename="../Debugger/DebugUI.py" line="1570" />
       <source>&lt;p&gt;The program generate the signal "{0}".&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;El programa ha generado la señal "{0}".&lt;br/&gt;Archivo: &lt;b&gt;{1}&lt;/b&gt;, Línea: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1591" />
+      <location filename="../Debugger/DebugUI.py" line="1588" />
       <source>The program being debugged has terminated unexpectedly.</source>
       <translation>El programa en depuración ha terminado inesperadamente.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1652" />
+      <location filename="../Debugger/DebugUI.py" line="1649" />
       <source>No locals available.</source>
       <translation>No hay locals disponibles.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1699" />
+      <location filename="../Debugger/DebugUI.py" line="1696" />
       <source>Breakpoint Condition Error</source>
       <translation>Error en la condición del Breakpoint</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1700" />
+      <location filename="../Debugger/DebugUI.py" line="1697" />
       <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation>&lt;p&gt;La condición del punto de ruptura &lt;b&gt;{0},{1}&lt;/b&gt; tiene un error de sintaxis.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1757" />
+      <location filename="../Debugger/DebugUI.py" line="1754" />
       <source>Watch Expression Error</source>
       <translation>Error en la Expresión a Examinar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1758" />
+      <location filename="../Debugger/DebugUI.py" line="1755" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation>&lt;p&gt;La expresión a examinar &lt;b&gt;{0}&lt;/b&gt; contiene un error de sintaxis.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1786" />
+      <location filename="../Debugger/DebugUI.py" line="1783" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Una expresión a examinar '&lt;b&gt;{0}&lt;/b&gt;' ya existe.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1791" />
+      <location filename="../Debugger/DebugUI.py" line="1788" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Una expresión a examinar '&lt;b&gt;{0}&lt;/b&gt;' para la variable &lt;b&gt;{1}&lt;/b&gt; ya existe.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1797" />
+      <location filename="../Debugger/DebugUI.py" line="1794" />
       <source>Watch expression already exists</source>
       <translation>La expresión a Examinar ya existe</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1962" />
-      <location filename="../Debugger/DebugUI.py" line="1953" />
+      <location filename="../Debugger/DebugUI.py" line="1959" />
+      <location filename="../Debugger/DebugUI.py" line="1950" />
       <source>Coverage Run of Project</source>
       <translation>Ejecución de Cobertura del Proyecto</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1955" />
+      <location filename="../Debugger/DebugUI.py" line="1952" />
       <source>Coverage Run of Script</source>
       <translation>Ejecución de Cobertura del Script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2349" />
-      <location filename="../Debugger/DebugUI.py" line="2158" />
-      <location filename="../Debugger/DebugUI.py" line="1963" />
+      <location filename="../Debugger/DebugUI.py" line="2346" />
+      <location filename="../Debugger/DebugUI.py" line="2155" />
+      <location filename="../Debugger/DebugUI.py" line="1960" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>No hay script principal definido para el proyecto actual. Abortando</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2157" />
-      <location filename="../Debugger/DebugUI.py" line="2148" />
+      <location filename="../Debugger/DebugUI.py" line="2154" />
+      <location filename="../Debugger/DebugUI.py" line="2145" />
       <source>Profile Run of Project</source>
       <translation>Ejecución de Profile del Proyecto</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2150" />
+      <location filename="../Debugger/DebugUI.py" line="2147" />
       <source>Profile Run of Script</source>
       <translation>Ejecución de Profile del Script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2535" />
+      <location filename="../Debugger/DebugUI.py" line="2532" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation>No hay script principal definido para el proyecto actual. La depuración no es posible.</translation>
     </message>
@@ -10583,12 +10583,12 @@
       <translation>&lt;p&gt;La depuración remota está configurada pero no se ha proporcionado comando para login remoto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1451" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1458" />
       <source>Debug Protocol Error</source>
       <translation>Error de Protocolo de Depuración</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1452" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1459" />
       <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;La respuesta recibida desde el backend del depurador no se ha podido descodificar. Por favor, informar de este problema junto con los datos recibidos a la dirección de email para bugs de eric.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Datos:&lt;br/&gt;{1}&lt;/p&gt;</translation>
     </message>
@@ -12416,1005 +12416,1005 @@
   <context>
     <name>Editor</name>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3527" />
-      <location filename="../QScintilla/Editor.py" line="470" />
-      <location filename="../QScintilla/Editor.py" line="455" />
+      <location filename="../QScintilla/Editor.py" line="3526" />
+      <location filename="../QScintilla/Editor.py" line="471" />
+      <location filename="../QScintilla/Editor.py" line="456" />
       <source>Open File</source>
       <translation>Abrir archivo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="456" />
+      <location filename="../QScintilla/Editor.py" line="457" />
       <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt; and exceeds the configured limit of &lt;b&gt;{2} KB&lt;/b&gt;. It will not be opened!&lt;/p&gt;</source>
       <translation>&lt;p&gt;El tamaño del archivo &lt;b&gt;{0}&lt;/b&gt; es &lt;b&gt;{1} KB&lt;/b&gt;, mayor que el limite configurado de &lt;b&gt;{2} KB&lt;/b&gt;. ¡No se va a abrir!&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="471" />
+      <location filename="../QScintilla/Editor.py" line="472" />
       <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt;. Do you really want to load it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;El tamaño del archivo &lt;b&gt;{0}&lt;/b&gt; es &lt;b&gt;{1} KB&lt;/b&gt;. ¿Desea cargarlo de todos modos?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="573" />
+      <location filename="../QScintilla/Editor.py" line="574" />
       <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window's titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Una Ventana de Edición de Códigos Fuente&lt;/b&gt;&lt;p&gt;Esta ventana se utiliza para mostrar y editar un archivo de código fuente.  Puede abrir tantas como desee. El nombre del archivo se muestra en la barra de título de la ventana.&lt;/p&gt;&lt;p&gt;Para insertar puntos de interrupción basta con hacer un click en el espacio entre los números de línea y los marcadores de plegado.  Pueden editarse con el menú de contexto de los márgenes.&lt;/p&gt;&lt;p&gt;Para insertar marcadores solo hay que hacer Shift-click en el espacio entre los números de línea y los marcadores de plegado.&lt;/p&gt;&lt;p&gt;Estas acciones se pueden revertir utilizando el menú de contexto.&lt;/p&gt;&lt;p&gt;Haciendo Ctrl-click en un marcador de error sintáctico se muestra información sobre el dicho error.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="927" />
+      <location filename="../QScintilla/Editor.py" line="928" />
       <source>Undo</source>
       <translation>Deshacer</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="930" />
+      <location filename="../QScintilla/Editor.py" line="931" />
       <source>Redo</source>
       <translation>Rehacer</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="933" />
+      <location filename="../QScintilla/Editor.py" line="934" />
       <source>Revert to last saved state</source>
       <translation>Volver al último estado guardado</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="937" />
+      <location filename="../QScintilla/Editor.py" line="938" />
       <source>Cut</source>
       <translation>Cortar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="940" />
+      <location filename="../QScintilla/Editor.py" line="941" />
       <source>Copy</source>
       <translation>Copiar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="943" />
+      <location filename="../QScintilla/Editor.py" line="944" />
       <source>Paste</source>
       <translation>Pegar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="949" />
+      <location filename="../QScintilla/Editor.py" line="950" />
       <source>Indent</source>
       <translation>Indentar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="954" />
+      <location filename="../QScintilla/Editor.py" line="955" />
       <source>Unindent</source>
       <translation>Desindentar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="959" />
+      <location filename="../QScintilla/Editor.py" line="960" />
       <source>Comment</source>
       <translation>Pasar a comentario</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="964" />
+      <location filename="../QScintilla/Editor.py" line="965" />
       <source>Uncomment</source>
       <translation>Sacar de comentario</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9939" />
-      <location filename="../QScintilla/Editor.py" line="969" />
+      <location filename="../QScintilla/Editor.py" line="9958" />
+      <location filename="../QScintilla/Editor.py" line="970" />
       <source>Generate Docstring</source>
       <translation>Generar Docstring</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="972" />
-      <source>Select to brace</source>
-      <translation>Seleccionar hasta la llave ( '{' o '}' )</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="973" />
-      <source>Select all</source>
-      <translation>Seleccionar todo</translation>
+      <source>Select to brace</source>
+      <translation>Seleccionar hasta la llave ( '{' o '}' )</translation>
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="974" />
+      <source>Select all</source>
+      <translation>Seleccionar todo</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="975" />
       <source>Deselect all</source>
       <translation>Deseleccionar todo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="976" />
+      <location filename="../QScintilla/Editor.py" line="977" />
       <source>Execute Selection In Console</source>
       <translation>Ejecutar Selección en Consola</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="988" />
+      <location filename="../QScintilla/Editor.py" line="989" />
       <source>Use Monospaced Font</source>
       <translation>Usar fuente monoespaciada</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="993" />
+      <location filename="../QScintilla/Editor.py" line="994" />
       <source>Autosave enabled</source>
       <translation>Autoguardar habilitado</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="998" />
+      <location filename="../QScintilla/Editor.py" line="999" />
       <source>Typing aids enabled</source>
       <translation>Ayudas al tecleo habilitadas</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1006" />
+      <location filename="../QScintilla/Editor.py" line="1007" />
       <source>Automatic Completion enabled</source>
       <translation>Autocompletar habilitado</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1015" />
+      <location filename="../QScintilla/Editor.py" line="1016" />
       <source>Calltip</source>
       <translation>Consejo de llamada</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1018" />
+      <location filename="../QScintilla/Editor.py" line="1019" />
       <source>Code Info</source>
       <translation>Info del Código</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1033" />
+      <location filename="../QScintilla/Editor.py" line="1034" />
       <source>New Document View</source>
       <translation>Nueva Vista de Documento</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1038" />
+      <location filename="../QScintilla/Editor.py" line="1039" />
       <source>New Document View (with new split)</source>
       <translation>Nueva Vista de Documento (con nueva división)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1046" />
+      <location filename="../QScintilla/Editor.py" line="1047" />
       <source>Reload</source>
       <translation>Recargar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1049" />
+      <location filename="../QScintilla/Editor.py" line="1050" />
       <source>Save</source>
       <translation>Guardar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1053" />
+      <location filename="../QScintilla/Editor.py" line="1054" />
       <source>Save As...</source>
       <translation>Guardar como...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1058" />
+      <location filename="../QScintilla/Editor.py" line="1059" />
       <source>Save Copy...</source>
       <translation>Guardar Copia...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1080" />
-      <location filename="../QScintilla/Editor.py" line="1077" />
+      <location filename="../QScintilla/Editor.py" line="1081" />
+      <location filename="../QScintilla/Editor.py" line="1078" />
       <source>Complete</source>
       <translation>Completo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1084" />
+      <location filename="../QScintilla/Editor.py" line="1085" />
       <source>Clear Completions Cache</source>
       <translation>Limpiar Caché de Completado</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1087" />
+      <location filename="../QScintilla/Editor.py" line="1088" />
       <source>Complete from Document</source>
       <translation>Completar desde documento</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1089" />
+      <location filename="../QScintilla/Editor.py" line="1090" />
       <source>Complete from APIs</source>
       <translation>Completar desde APIs</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1092" />
+      <location filename="../QScintilla/Editor.py" line="1093" />
       <source>Complete from Document and APIs</source>
       <translation>Completar desde Documento y APIs</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1106" />
+      <location filename="../QScintilla/Editor.py" line="1107" />
       <source>Check</source>
       <translation>Verificar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1117" />
+      <location filename="../QScintilla/Editor.py" line="1118" />
       <source>Code Formatting</source>
       <translation>Formato de Código</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1123" />
+      <location filename="../QScintilla/Editor.py" line="1124" />
       <source>Black</source>
       <translation>Black</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1128" />
+      <location filename="../QScintilla/Editor.py" line="1129" />
       <source>Format Code</source>
       <translation>Formatear Código</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1132" />
+      <location filename="../QScintilla/Editor.py" line="1133" />
       <source>Check Formatting</source>
       <translation>Comprobar Formato</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1136" />
+      <location filename="../QScintilla/Editor.py" line="1137" />
       <source>Formatting Diff</source>
       <translation>Diff de Formato</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1145" />
+      <location filename="../QScintilla/Editor.py" line="1146" />
       <source>isort</source>
       <translation>isort</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1150" />
+      <location filename="../QScintilla/Editor.py" line="1151" />
       <source>Sort Imports</source>
       <translation>Ordenar Imports</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1154" />
+      <location filename="../QScintilla/Editor.py" line="1155" />
       <source>Imports Sorting Diff</source>
       <translation>Diff de Ordenacion de Imports</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1170" />
+      <location filename="../QScintilla/Editor.py" line="1171" />
       <source>Tools</source>
       <translation>Herramientas</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1181" />
+      <location filename="../QScintilla/Editor.py" line="1182" />
       <source>Show</source>
       <translation>Mostrar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1183" />
+      <location filename="../QScintilla/Editor.py" line="1184" />
       <source>Code metrics...</source>
       <translation>Métricas de código...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1185" />
+      <location filename="../QScintilla/Editor.py" line="1186" />
       <source>Code coverage...</source>
       <translation>Cobertura de código...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1188" />
+      <location filename="../QScintilla/Editor.py" line="1189" />
       <source>Show code coverage annotations</source>
       <translation>Mostrar anotaciones de cobertura de codigo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1191" />
+      <location filename="../QScintilla/Editor.py" line="1192" />
       <source>Hide code coverage annotations</source>
       <translation>Ocultar anotaciones de cobertura de codigo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1195" />
+      <location filename="../QScintilla/Editor.py" line="1196" />
       <source>Profile data...</source>
       <translation>Datos de profiling...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1209" />
+      <location filename="../QScintilla/Editor.py" line="1210" />
       <source>Diagrams</source>
       <translation>Diagramas</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1211" />
-      <source>Class Diagram...</source>
-      <translation>Diagrama de clases...</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="1212" />
-      <source>Package Diagram...</source>
-      <translation>Diagrama de paquetes...</translation>
+      <source>Class Diagram...</source>
+      <translation>Diagrama de clases...</translation>
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="1213" />
+      <source>Package Diagram...</source>
+      <translation>Diagrama de paquetes...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="1214" />
       <source>Imports Diagram...</source>
       <translation>Diagrama de imports...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1215" />
+      <location filename="../QScintilla/Editor.py" line="1216" />
       <source>Application Diagram...</source>
       <translation>Diagrama de aplicación...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1220" />
+      <location filename="../QScintilla/Editor.py" line="1221" />
       <source>Load Diagram...</source>
       <translation>Cargar Diagrama...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1235" />
+      <location filename="../QScintilla/Editor.py" line="1236" />
       <source>Languages</source>
       <translation>Lenguajes</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1239" />
+      <location filename="../QScintilla/Editor.py" line="1240" />
       <source>Text</source>
       <translation>Texto</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1261" />
+      <location filename="../QScintilla/Editor.py" line="1262" />
       <source>Guessed</source>
       <translation>Suposición</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1593" />
-      <location filename="../QScintilla/Editor.py" line="1265" />
+      <location filename="../QScintilla/Editor.py" line="1594" />
+      <location filename="../QScintilla/Editor.py" line="1266" />
       <source>Alternatives</source>
       <translation>Alternativas</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1282" />
+      <location filename="../QScintilla/Editor.py" line="1283" />
       <source>Encodings</source>
       <translation>Codificaciones</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1305" />
+      <location filename="../QScintilla/Editor.py" line="1306" />
       <source>Re-Open With Encoding</source>
       <translation>Reabrir Con Codificación</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1325" />
+      <location filename="../QScintilla/Editor.py" line="1326" />
       <source>End-of-Line Type</source>
       <translation>Tipo de fin-de-línea</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1329" />
+      <location filename="../QScintilla/Editor.py" line="1330" />
       <source>Unix</source>
       <translation>Unix</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1335" />
+      <location filename="../QScintilla/Editor.py" line="1336" />
       <source>Windows</source>
       <translation>Windows</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1341" />
+      <location filename="../QScintilla/Editor.py" line="1342" />
       <source>Macintosh</source>
       <translation>Macintosh</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1359" />
+      <location filename="../QScintilla/Editor.py" line="1360" />
       <source>Spelling</source>
       <translation>Corrección ortográfica</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9026" />
-      <location filename="../QScintilla/Editor.py" line="1367" />
+      <location filename="../QScintilla/Editor.py" line="9045" />
+      <location filename="../QScintilla/Editor.py" line="1368" />
       <source>Check spelling...</source>
       <translation>Corrección ortográfica...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1372" />
+      <location filename="../QScintilla/Editor.py" line="1373" />
       <source>Check spelling of selection...</source>
       <translation>Corrección ortográfica de la selección...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1376" />
+      <location filename="../QScintilla/Editor.py" line="1377" />
       <source>Remove from dictionary</source>
       <translation>Eliminar del diccionario</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1393" />
+      <location filename="../QScintilla/Editor.py" line="1394" />
       <source>Spell Check Languages</source>
       <translation>Corrección Ortográfica Idiomas</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1397" />
+      <location filename="../QScintilla/Editor.py" line="1398" />
       <source>No Language</source>
       <translation>Ningún Lenguaje</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1424" />
+      <location filename="../QScintilla/Editor.py" line="1425" />
       <source>Toggle bookmark</source>
       <translation>Alternar marcador</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1426" />
+      <location filename="../QScintilla/Editor.py" line="1427" />
       <source>Next bookmark</source>
       <translation>Nuevo marcador</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1429" />
+      <location filename="../QScintilla/Editor.py" line="1430" />
       <source>Previous bookmark</source>
       <translation>Marcador anterior</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1432" />
+      <location filename="../QScintilla/Editor.py" line="1433" />
       <source>Clear all bookmarks</source>
       <translation>Borrar todos los marcadores</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1443" />
+      <location filename="../QScintilla/Editor.py" line="1444" />
       <source>Toggle breakpoint</source>
       <translation>Alternar punto de interrupción</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1446" />
+      <location filename="../QScintilla/Editor.py" line="1447" />
       <source>Toggle temporary breakpoint</source>
       <translation>Alternar punto de interrupción temporal</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1449" />
+      <location filename="../QScintilla/Editor.py" line="1450" />
       <source>Edit breakpoint...</source>
       <translation>Editar punto de interrupción...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6498" />
-      <location filename="../QScintilla/Editor.py" line="1452" />
+      <location filename="../QScintilla/Editor.py" line="6497" />
+      <location filename="../QScintilla/Editor.py" line="1453" />
       <source>Enable breakpoint</source>
       <translation>Activar punto de interrupción</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1455" />
+      <location filename="../QScintilla/Editor.py" line="1456" />
       <source>Next breakpoint</source>
       <translation>Siguiente punto de interrupción</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1458" />
+      <location filename="../QScintilla/Editor.py" line="1459" />
       <source>Previous breakpoint</source>
       <translation>Punto de interrupción anterior</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1461" />
+      <location filename="../QScintilla/Editor.py" line="1462" />
       <source>Clear all breakpoints</source>
       <translation>Borrar todos los puntos de interrupción</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1472" />
+      <location filename="../QScintilla/Editor.py" line="1473" />
       <source>Toggle all folds</source>
       <translation>Recoger/Desplegar los anidamientos</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1476" />
+      <location filename="../QScintilla/Editor.py" line="1477" />
       <source>Toggle all folds (including children)</source>
       <translation>Recoger/Desplegar todos los anidamientos (inc. hijos)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1481" />
+      <location filename="../QScintilla/Editor.py" line="1482" />
       <source>Toggle current fold</source>
       <translation>Recoger/Desplegar el anidamiento actual</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1485" />
+      <location filename="../QScintilla/Editor.py" line="1486" />
       <source>Expand (including children)</source>
       <translation>Expandir (incluídos hijos)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1489" />
+      <location filename="../QScintilla/Editor.py" line="1490" />
       <source>Collapse (including children)</source>
       <translation>Contraer (incluídos hijos)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1494" />
+      <location filename="../QScintilla/Editor.py" line="1495" />
       <source>Clear all folds</source>
       <translation>Limpiar todos los anidamientos</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1505" />
+      <location filename="../QScintilla/Editor.py" line="1506" />
       <source>Goto syntax error</source>
       <translation>Ir al error de sintaxis</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1508" />
+      <location filename="../QScintilla/Editor.py" line="1509" />
       <source>Show syntax error message</source>
       <translation>Ver el mensaje de error de sintaxis</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1511" />
+      <location filename="../QScintilla/Editor.py" line="1512" />
       <source>Clear syntax error</source>
       <translation>Borrar error de sintaxis</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1515" />
+      <location filename="../QScintilla/Editor.py" line="1516" />
       <source>Next warning</source>
       <translation>Siguiente advertencia</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1518" />
+      <location filename="../QScintilla/Editor.py" line="1519" />
       <source>Previous warning</source>
       <translation>Anterior advertencia</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1521" />
+      <location filename="../QScintilla/Editor.py" line="1522" />
       <source>Show warning message</source>
       <translation>Mostrar mensaje de advertencia</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1524" />
+      <location filename="../QScintilla/Editor.py" line="1525" />
       <source>Clear warnings</source>
       <translation>Limpiar advertencias</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1528" />
+      <location filename="../QScintilla/Editor.py" line="1529" />
       <source>Next uncovered line</source>
       <translation>Siguiente línea sin cobertura</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1531" />
+      <location filename="../QScintilla/Editor.py" line="1532" />
       <source>Previous uncovered line</source>
       <translation>Anterior línea sin cobertura</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1535" />
+      <location filename="../QScintilla/Editor.py" line="1536" />
       <source>Next task</source>
       <translation>Nueva tarea</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1538" />
+      <location filename="../QScintilla/Editor.py" line="1539" />
       <source>Previous task</source>
       <translation>Tarea anterior</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1542" />
+      <location filename="../QScintilla/Editor.py" line="1543" />
       <source>Next change</source>
       <translation>Siguiente cambio</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1545" />
+      <location filename="../QScintilla/Editor.py" line="1546" />
       <source>Previous change</source>
       <translation>Cambio anterior</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1548" />
+      <location filename="../QScintilla/Editor.py" line="1549" />
       <source>Clear changes</source>
       <translation>Limpiar cambios</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1578" />
-      <location filename="../QScintilla/Editor.py" line="1569" />
-      <source>Export source</source>
-      <translation>Exportar fuente</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="1570" />
-      <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
-      <translation>&lt;p&gt;No hay un exportador disponible para el formato de exportación &lt;b&gt;{0}&lt;/b&gt;. Abortando...&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="1579" />
+      <location filename="../QScintilla/Editor.py" line="1570" />
+      <source>Export source</source>
+      <translation>Exportar fuente</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="1571" />
+      <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
+      <translation>&lt;p&gt;No hay un exportador disponible para el formato de exportación &lt;b&gt;{0}&lt;/b&gt;. Abortando...&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="1580" />
       <source>No export format given. Aborting...</source>
       <translation>No se ha proporcionado un formato de exportación. Abortando...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1590" />
+      <location filename="../QScintilla/Editor.py" line="1591" />
       <source>Alternatives ({0})</source>
       <translation>Alternativas ({0})</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1614" />
-      <source>Pygments Lexer</source>
-      <translation>Analizador Léxico de Pygments</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="1615" />
+      <source>Pygments Lexer</source>
+      <translation>Analizador Léxico de Pygments</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="1616" />
       <source>Select the Pygments lexer to apply.</source>
       <translation>Seleccionar el Analizador Léxico de Pygments.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="2217" />
-      <source>Modification of Read Only file</source>
-      <translation>Modificación de un archivo de solo lectura</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="2218" />
+      <source>Modification of Read Only file</source>
+      <translation>Modificación de un archivo de solo lectura</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="2219" />
       <source>You are attempting to change a read only file. Please save to a different file first.</source>
       <translation>Usted está intentando modificar un archivo solo lectura. Por favor guarde en otro archivo primero.</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="2700" />
+      <source>Add Breakpoint</source>
+      <translation>Añadir Punto de Interrupción</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="2701" />
-      <source>Add Breakpoint</source>
-      <translation>Añadir Punto de Interrupción</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="2702" />
       <source>No Python byte code will be created for the selected line. No break point will be set!</source>
       <translation>No se va a crear Python bytecode para la línea seleccionada. ¡No se va a establecer ningún punto de ruptura!</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3056" />
+      <location filename="../QScintilla/Editor.py" line="3055" />
       <source>Printing...</source>
       <translation>Imprimiendo...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3073" />
+      <location filename="../QScintilla/Editor.py" line="3072" />
       <source>Printing completed</source>
       <translation>Impresión completa</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3075" />
+      <location filename="../QScintilla/Editor.py" line="3074" />
       <source>Error while printing</source>
       <translation>Error al imprimir</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3078" />
+      <location filename="../QScintilla/Editor.py" line="3077" />
       <source>Printing aborted</source>
       <translation>Impresión cancelada</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="3459" />
+      <source>File Modified</source>
+      <translation>Archivo modificado</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="3460" />
-      <source>File Modified</source>
-      <translation>Archivo modificado</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="3461" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; tiene cambios sin guardar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3528" />
+      <location filename="../QScintilla/Editor.py" line="3527" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo&lt;b&gt;{0}&lt;/b&gt; no puede ser abierto.&lt;br /&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="3718" />
+      <location filename="../QScintilla/Editor.py" line="3699" />
+      <location filename="../QScintilla/Editor.py" line="3659" />
+      <source>Save File</source>
+      <translation>Guardar archivo</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="3660" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; no puede ser guardado.&lt;br&gt;Causa: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="3719" />
-      <location filename="../QScintilla/Editor.py" line="3700" />
-      <location filename="../QScintilla/Editor.py" line="3660" />
-      <source>Save File</source>
-      <translation>Guardar archivo</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="3661" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; no puede ser guardado.&lt;br&gt;Causa: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="3720" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="3863" />
+      <source>Save File to Device</source>
+      <translation>Guardar Archivo en Dispositivo</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="3864" />
-      <source>Save File to Device</source>
-      <translation>Guardar Archivo en Dispositivo</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="3865" />
       <source>Enter the complete device file path:</source>
       <translation>Introducir la ruta completa de archivo del dispositivo:</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="5652" />
+      <source>Autocompletion</source>
+      <translation>Autocompletar</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="5653" />
-      <source>Autocompletion</source>
-      <translation>Autocompletar</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="5654" />
       <source>Autocompletion is not available because there is no autocompletion source set.</source>
       <translation>Autocompletar no está disponible porque no hay origen de datos para autocompletar.</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="5787" />
+      <source>Auto-Completion Provider</source>
+      <translation>Proveedor de Autocompletado</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="5788" />
-      <source>Auto-Completion Provider</source>
-      <translation>Proveedor de Autocompletado</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="5789" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation>El proveedor de lista de completado'{0}' ya está registrado. Se ignora la solicitud duplicada.</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="6084" />
+      <source>Call-Tips Provider</source>
+      <translation>Proveedor de Call-Tips</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="6085" />
-      <source>Call-Tips Provider</source>
-      <translation>Proveedor de Call-Tips</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="6086" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation>El proveedor de call-tips'{0}' ya está registrado. Se ignora la solicitud duplicada.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6502" />
+      <location filename="../QScintilla/Editor.py" line="6501" />
       <source>Disable breakpoint</source>
       <translation>Deshabilitar punto de interrupción</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="6916" />
+      <source>Code Coverage</source>
+      <translation>Cobertura de codigo</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="6917" />
-      <source>Code Coverage</source>
-      <translation>Cobertura de codigo</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="6918" />
       <source>Please select a coverage file</source>
       <translation>Por favor seleccione un archivo de cobertura</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="6992" />
+      <location filename="../QScintilla/Editor.py" line="6984" />
+      <source>Show Code Coverage Annotations</source>
+      <translation>Mostrar Anotaciones de Cobertura de Código</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="6985" />
+      <source>All lines have been covered.</source>
+      <translation>Todas las líneas han sido cubiertas.</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="6993" />
-      <location filename="../QScintilla/Editor.py" line="6985" />
-      <source>Show Code Coverage Annotations</source>
-      <translation>Mostrar Anotaciones de Cobertura de Código</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="6986" />
-      <source>All lines have been covered.</source>
-      <translation>Todas las líneas han sido cubiertas.</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="6994" />
       <source>There is no coverage file available.</source>
       <translation>No hay archivo de cobertura disponible.</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7101" />
+      <source>Profile Data</source>
+      <translation>Datos de profiling</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7102" />
-      <source>Profile Data</source>
-      <translation>Datos de profiling</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7103" />
       <source>Please select a profile file</source>
       <translation>Por favor seleccione un archivo de profiling</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7264" />
+      <location filename="../QScintilla/Editor.py" line="7258" />
+      <source>Syntax Error</source>
+      <translation>Error de sintaxis</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7265" />
-      <location filename="../QScintilla/Editor.py" line="7259" />
-      <source>Syntax Error</source>
-      <translation>Error de sintaxis</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7266" />
       <source>No syntax error message available.</source>
       <translation>No hay mensajes de error de sintaxis disponibles.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7513" />
-      <location filename="../QScintilla/Editor.py" line="7507" />
+      <location filename="../QScintilla/Editor.py" line="7512" />
+      <location filename="../QScintilla/Editor.py" line="7506" />
       <source>Warning</source>
       <translation>Advertencia</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7513" />
+      <location filename="../QScintilla/Editor.py" line="7512" />
       <source>No warning messages available.</source>
       <translation>No hay mensajes de advertencia disponibles.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7592" />
+      <location filename="../QScintilla/Editor.py" line="7591" />
       <source>Info: {0}</source>
       <translation>Info: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7608" />
-      <location filename="../QScintilla/Editor.py" line="7594" />
+      <location filename="../QScintilla/Editor.py" line="7607" />
+      <location filename="../QScintilla/Editor.py" line="7593" />
       <source>Error: {0}</source>
       <translation>Error: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7596" />
+      <location filename="../QScintilla/Editor.py" line="7595" />
       <source>Style: {0}</source>
       <translation>Estilo: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7601" />
+      <location filename="../QScintilla/Editor.py" line="7600" />
       <source>Warning: {0}</source>
       <translation>Advertencia: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7730" />
       <source>Macro Name</source>
       <translation>Nombre de macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7730" />
       <source>Select a macro name:</source>
       <translation>Seleccione un nombre de macro:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7757" />
+      <location filename="../QScintilla/Editor.py" line="7756" />
       <source>Load macro file</source>
       <translation>Cargar archivo de macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7803" />
-      <location filename="../QScintilla/Editor.py" line="7759" />
+      <location filename="../QScintilla/Editor.py" line="7802" />
+      <location filename="../QScintilla/Editor.py" line="7758" />
       <source>Macro files (*.macro)</source>
       <translation>Archivos de Macro  (*.macro)</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7780" />
+      <location filename="../QScintilla/Editor.py" line="7770" />
+      <source>Error loading macro</source>
+      <translation>Error al cargar macro</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7771" />
+      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;El archivo de macro &lt;b&gt;{0}&lt;/b&gt; no se puede leer.&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7781" />
-      <location filename="../QScintilla/Editor.py" line="7771" />
-      <source>Error loading macro</source>
-      <translation>Error al cargar macro</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7772" />
-      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;El archivo de macro &lt;b&gt;{0}&lt;/b&gt; no se puede leer.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7782" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de macro &lt;b&gt;{0}&lt;/b&gt; está dañado&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7801" />
+      <location filename="../QScintilla/Editor.py" line="7800" />
       <source>Save macro file</source>
       <translation>Guardar archivo de macro</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7818" />
+      <source>Save macro</source>
+      <translation>Guardar macro</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7819" />
-      <source>Save macro</source>
-      <translation>Guardar macro</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7820" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de macro &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7834" />
+      <source>Error saving macro</source>
+      <translation>Error al guardar macro</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7835" />
-      <source>Error saving macro</source>
-      <translation>Error al guardar macro</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7836" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de macro  &lt;b&gt;{0}&lt;/b&gt; no se puede escribir.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7848" />
+      <source>Start Macro Recording</source>
+      <translation>Comenzar grabación de macro</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7849" />
-      <source>Start Macro Recording</source>
-      <translation>Comenzar grabación de macro</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7850" />
       <source>Macro recording is already active. Start new?</source>
       <translation>Grabación de macro ya está activada. ¿Comenzar una nueva?</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7875" />
+      <source>Macro Recording</source>
+      <translation>Grabando macro</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7876" />
-      <source>Macro Recording</source>
-      <translation>Grabando macro</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7877" />
       <source>Enter name of the macro:</source>
       <translation>Introduzca el nombre de la macro:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8060" />
+      <location filename="../QScintilla/Editor.py" line="8079" />
       <source>{0} (ro)</source>
       <translation>{0} (ro)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8245" />
+      <location filename="../QScintilla/Editor.py" line="8264" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ha cambiado mientras estaba abierto en eric. ¿Desea volver a cargarlo?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8251" />
+      <location filename="../QScintilla/Editor.py" line="8270" />
       <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
       <translation>&lt;br&gt;&lt;b&gt;Advertencia:&lt;/b&gt; Perderá los cambios si lo reabre.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8258" />
+      <location filename="../QScintilla/Editor.py" line="8277" />
       <source>File changed</source>
       <translation>Archivo modificado</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8351" />
+      <location filename="../QScintilla/Editor.py" line="8370" />
       <source>Reload File</source>
       <translation>Recargar Archivo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8352" />
+      <location filename="../QScintilla/Editor.py" line="8371" />
       <source>&lt;p&gt;The editor contains unsaved modifications.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reloading it.&lt;/p&gt;&lt;p&gt;Shall the editor really be reloaded?&lt;/p&gt;</source>
       <translation>&lt;p&gt;El editor contiene modificacopmes sin guardar.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Advertencia:&lt;/b&gt; Los cambios se perderán al recargar.&lt;/p&gt;&lt;p&gt;¿Desea realmente recargar el editor?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8452" />
+      <location filename="../QScintilla/Editor.py" line="8471" />
       <source>Drop Error</source>
       <translation>Error al soltar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8453" />
+      <location filename="../QScintilla/Editor.py" line="8472" />
       <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="../QScintilla/Editor.py" line="8474" />
+      <location filename="../QScintilla/Editor.py" line="8493" />
       <source>Resources</source>
       <translation>Recursos</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8476" />
+      <location filename="../QScintilla/Editor.py" line="8495" />
       <source>Add file...</source>
       <translation>Añadir archivo...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8477" />
+      <location filename="../QScintilla/Editor.py" line="8496" />
       <source>Add files...</source>
       <translation>Añadir archivos...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8478" />
+      <location filename="../QScintilla/Editor.py" line="8497" />
       <source>Add aliased file...</source>
       <translation>Añadir archivo con un alias...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8480" />
+      <location filename="../QScintilla/Editor.py" line="8499" />
       <source>Add localized resource...</source>
       <translation>Añadir recursos localizados...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8483" />
+      <location filename="../QScintilla/Editor.py" line="8502" />
       <source>Add resource frame</source>
       <translation>Añadir ventana de recursos</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8503" />
+      <location filename="../QScintilla/Editor.py" line="8522" />
       <source>Add file resource</source>
       <translation>Añadir archivo de recursos</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8517" />
+      <location filename="../QScintilla/Editor.py" line="8536" />
       <source>Add file resources</source>
       <translation>Añadir archivo de recursos</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8541" />
-      <location filename="../QScintilla/Editor.py" line="8535" />
+      <location filename="../QScintilla/Editor.py" line="8560" />
+      <location filename="../QScintilla/Editor.py" line="8554" />
       <source>Add aliased file resource</source>
       <translation>Añadir archivo de recursos con un alias</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8542" />
+      <location filename="../QScintilla/Editor.py" line="8561" />
       <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
       <translation>Alias para el archivo &lt;b&gt;{0}&lt;/b&gt;:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8617" />
+      <location filename="../QScintilla/Editor.py" line="8636" />
       <source>Package Diagram</source>
       <translation>Digrama de paquetes</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8618" />
+      <location filename="../QScintilla/Editor.py" line="8637" />
       <source>Include class attributes?</source>
       <translation>¿Incluir atributos de clase?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8638" />
+      <location filename="../QScintilla/Editor.py" line="8657" />
       <source>Imports Diagram</source>
       <translation>Diagrama de imports</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8639" />
-      <source>Include imports from external modules?</source>
-      <translation>¿Incluir los imports de módulos externos?</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="8658" />
+      <source>Include imports from external modules?</source>
+      <translation>¿Incluir los imports de módulos externos?</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="8677" />
       <source>Application Diagram</source>
       <translation>Diagrama de aplicación</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8659" />
+      <location filename="../QScintilla/Editor.py" line="8678" />
       <source>Include module names?</source>
       <translation>¿Incluir nombres de módulos?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9030" />
+      <location filename="../QScintilla/Editor.py" line="9049" />
       <source>Add to dictionary</source>
       <translation>Añadir al diccionario</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9032" />
+      <location filename="../QScintilla/Editor.py" line="9051" />
       <source>Ignore All</source>
       <translation>Ignorar Todo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9479" />
+      <location filename="../QScintilla/Editor.py" line="9498" />
       <source>Sort Lines</source>
       <translation>Ordenar Líneas</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9480" />
+      <location filename="../QScintilla/Editor.py" line="9499" />
       <source>The selection contains illegal data for a numerical sort.</source>
       <translation>La selección contiene datos ilegales para una ordenación numérica.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9573" />
+      <location filename="../QScintilla/Editor.py" line="9592" />
       <source>Register Mouse Click Handler</source>
       <translation>Registrar Manejador de Clicks de Ratón</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9574" />
+      <location filename="../QScintilla/Editor.py" line="9593" />
       <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source>
       <translation>Un manejador de clicks de ratón para "{0}" ya está registrado por "{1}". Abortando solicitud por "{2}"...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9667" />
+      <location filename="../QScintilla/Editor.py" line="9686" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation>{0:4d}    {1}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9673" />
+      <location filename="../QScintilla/Editor.py" line="9692" />
       <source>{0:4d}    {1}
     =&gt;  {2}</source>
       <comment>line number, source code, file name</comment>
@@ -13422,12 +13422,12 @@
     =&gt;  {2}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9742" />
+      <location filename="../QScintilla/Editor.py" line="9761" />
       <source>EditorConfig Properties</source>
       <translation>Propiedades de EditorConfig</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9743" />
+      <location filename="../QScintilla/Editor.py" line="9762" />
       <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Las propiedades de EditorConfig para el archivo &lt;b&gt;{0}&lt;/b&gt; no se ha podido cargar.&lt;/p&gt;</translation>
     </message>
@@ -18618,12 +18618,12 @@
   <context>
     <name>EricApplication</name>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="227" />
+      <location filename="../EricWidgets/EricApplication.py" line="226" />
       <source>Loading Style Sheet</source>
       <translation>Cargando Hoja de Estilos</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="230" />
+      <location filename="../EricWidgets/EricApplication.py" line="229" />
       <source>&lt;p&gt;The Qt Style Sheet file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de Hoja de Estilo Qt &lt;b&gt;{0}&lt;/b&gt; no se puede leer.&lt;br&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
@@ -18782,12 +18782,12 @@
   <context>
     <name>EricJsonServer</name>
     <message>
-      <location filename="../EricNetwork/EricJsonServer.py" line="185" />
+      <location filename="../EricNetwork/EricJsonServer.py" line="199" />
       <source>JSON Protocol Error</source>
       <translation>Error de Protocolo JSON</translation>
     </message>
     <message>
-      <location filename="../EricNetwork/EricJsonServer.py" line="186" />
+      <location filename="../EricNetwork/EricJsonServer.py" line="200" />
       <source>&lt;p&gt;The response received from the client could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;La respuesta recibida por el cliente no se ha podido decodificar. Informe por favor de este problema con los datos recibidos a la dirección de correo electrónico de errores de eric.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Datos:&lt;br/&gt;{1}&lt;/p&gt;</translation>
     </message>
@@ -19258,39 +19258,39 @@
   <context>
     <name>EricPathPickerBase</name>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="178" />
-      <location filename="../EricWidgets/EricPathPicker.py" line="107" />
-      <location filename="../EricWidgets/EricPathPicker.py" line="100" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="177" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="106" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="99" />
       <source>Enter Path Name</source>
       <translation>Introducir Nombre de Ruta</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="175" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="174" />
       <source>Enter Path Names separated by ';'</source>
       <translation>Introducir Nombres de Ruta separados por ';'</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="520" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="519" />
       <source>Choose a file to open</source>
       <translation>Elegir un archivo para abrir</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="522" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="521" />
       <source>Choose files to open</source>
       <translation>Elegir archivos a abrir</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="524" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="523" />
       <source>Choose files and directories</source>
       <translation>Elegir archivos y directorios</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="530" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="529" />
       <source>Choose a file to save</source>
       <translation>Elegir un archivo para guardar</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="532" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="531" />
       <source>Choose a directory</source>
       <translation>Elegir un directorio</translation>
     </message>
@@ -20072,12 +20072,12 @@
   <context>
     <name>EricTldExtractor</name>
     <message>
-      <location filename="../EricNetwork/EricTldExtractor.py" line="294" />
+      <location filename="../EricNetwork/EricTldExtractor.py" line="293" />
       <source>TLD Data File not found</source>
       <translation>Archivo de Datos TLD no encontrado</translation>
     </message>
     <message>
-      <location filename="../EricNetwork/EricTldExtractor.py" line="295" />
+      <location filename="../EricNetwork/EricTldExtractor.py" line="294" />
       <source>&lt;p&gt;The file 'effective_tld_names.dat' was not found!&lt;br/&gt;You can download it from '&lt;a href="{0}"&gt;&lt;b&gt;here&lt;/b&gt;&lt;/a&gt;' to one of the following paths:&lt;/p&gt;&lt;ul&gt;{1}&lt;/ul&gt;</source>
       <translation>&lt;p&gt;¡No se ha encontrado el archivo 'effective_tld_names.dat'!&lt;br/&gt;Se puede descargar de '&lt;a href="{0}"&gt;&lt;b&gt;aquí&lt;/b&gt;&lt;/a&gt;' a uno de las siguientes rutas:&lt;/p&gt;&lt;ul&gt;{1}&lt;/ul&gt;</translation>
     </message>
@@ -32002,77 +32002,77 @@
       <translation>Página en Blanco</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="573" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="575" />
       <source>Backward</source>
       <translation>Atrás</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="578" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="580" />
       <source>Forward</source>
       <translation>Adelante</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="583" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="585" />
       <source>Reload</source>
       <translation>Recargar</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="595" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="597" />
       <source>Copy Page URL to Clipboard</source>
       <translation>Copiar URL de la Página al Portapapeles</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="601" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="603" />
       <source>Bookmark Page</source>
       <translation>Añadir Marcador a la Página</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="609" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="611" />
       <source>Zoom in</source>
       <translation>Aumentar zoom</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="614" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="616" />
       <source>Zoom out</source>
       <translation>Disminuir zoom</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="619" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="621" />
       <source>Zoom reset</source>
       <translation>Restablecer zoom</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="625" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="627" />
       <source>Copy</source>
       <translation>Copiar</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="631" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="633" />
       <source>Select All</source>
       <translation>Seleccionar todo</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="638" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="640" />
       <source>Close</source>
       <translation>Cerrar</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="643" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="645" />
       <source>Close Others</source>
       <translation>Cerrar Otras</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="661" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="663" />
       <source>Open Link in New Page</source>
       <translation>Abrir Enlace en Nueva Página</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="668" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="670" />
       <source>Open Link in Background Page</source>
       <translation>Abrir Enlace en Página en Segundo Plano</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="676" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="678" />
       <source>Copy URL to Clipboard</source>
       <translation>Copiar URL al Portapapeles</translation>
     </message>
@@ -32080,184 +32080,184 @@
   <context>
     <name>HelpViewerWidget</name>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="126" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="127" />
       <source>Open a local file</source>
       <translation>Abrir un archivo local</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="132" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="133" />
       <source>Select action from menu</source>
       <translation>Seleccionar acción del menú</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="148" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="149" />
       <source>Move one page backward</source>
       <translation>Mover una página hacia atrás</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="153" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="154" />
       <source>Move one page forward</source>
       <translation>Mover una página hacia adelante</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="165" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="166" />
       <source>Reload the current page</source>
       <translation>Recargar la página actual</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="176" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="177" />
       <source>Zoom in on the current page</source>
       <translation>Aumentar zoom en la página actual</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="182" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="183" />
       <source>Zoom out on the current page</source>
       <translation>Disminuir zoom en la página actual</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="189" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="190" />
       <source>Reset the zoom level of the current page</source>
       <translation>Restablecer nivel de zoom en la página actual</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="201" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="202" />
       <source>Add a new empty page</source>
       <translation>Añadir una nueva página en blanco</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="207" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="208" />
       <source>Close the current page</source>
       <translation>Cerrar la página actual</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="218" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="219" />
       <source>Show or hide the search pane</source>
       <translation>Mostrar u ocultar el panel de búsqueda</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="294" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="295" />
       <source>Show list of open pages</source>
       <translation>Mostrar lista de páginas abiertas</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="297" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="298" />
       <source>Show the table of contents</source>
       <translation>Mostrar la tabla de contenidos</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="300" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="301" />
       <source>Show the help document index</source>
       <translation>Mostrár el índice de documentos de ayuda</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="303" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="304" />
       <source>Show the help search window</source>
       <translation>Mostrar la ventana de búsqueda de ayuda</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="306" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="307" />
       <source>Show list of bookmarks</source>
       <translation>Mostrar lista de marcadores</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
-      <source>eric API Documentation</source>
-      <translation>Documentación de API de Eric</translation>
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="445" />
-      <source>Python 3 Documentation</source>
-      <translation>Documentación de Python 3</translation>
+      <source>eric API Documentation</source>
+      <translation>Documentación de API de Eric</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="446" />
-      <source>Qt5 Documentation</source>
-      <translation>Documentación de Qt5</translation>
+      <source>Python 3 Documentation</source>
+      <translation>Documentación de Python 3</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="447" />
-      <source>Qt6 Documentation</source>
-      <translation>Documentación de Qt6</translation>
+      <source>Qt5 Documentation</source>
+      <translation>Documentación de Qt5</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
-      <source>PyQt5 Documentation</source>
-      <translation>Documentación de PyQt5</translation>
+      <source>Qt6 Documentation</source>
+      <translation>Documentación de Qt6</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
-      <source>PyQt6 Documentation</source>
-      <translation>Documentación de PyQt6</translation>
+      <source>PyQt5 Documentation</source>
+      <translation>Documentación de PyQt5</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
-      <source>PySide2 Documentation</source>
-      <translation>Documentación de PySide2</translation>
+      <source>PyQt6 Documentation</source>
+      <translation>Documentación de PyQt6</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
+      <source>PySide2 Documentation</source>
+      <translation>Documentación de PySide2</translation>
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="452" />
       <source>PySide6 Documentation</source>
       <translation>Documentación de PySide6</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="508" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="509" />
       <source>Open HTML File</source>
       <translation>Abrir archivo HTML</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="510" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="511" />
       <source>HTML Files (*.htm *.html);;All Files (*)</source>
       <translation>Archivos HTML (*.html *.htm);;Todos los Archivos (*)</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="697" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="698" />
       <source>Help Engine</source>
       <translation>Motor de Ayuda</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="721" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="722" />
       <source>Looking for Documentation...</source>
       <translation>Buscando Documentación...</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="732" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="733" />
       <source>eric Help Viewer</source>
       <translation>Visor de Ayuda de eric</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="757" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="758" />
       <source>Manage QtHelp Documents</source>
       <translation>Gestionar Documentos de QtHelp</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="760" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="761" />
       <source>Reindex Documentation</source>
       <translation>Reindexar Documentación</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="765" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="766" />
       <source>Configure Help Documentation</source>
       <translation>Configurar Documentación de Ayuda</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="858" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="838" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="859" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="839" />
       <source>Clear History</source>
       <translation>Limpiar Historial</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="961" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="962" />
       <source>Updating search index</source>
       <translation>Actualizando índice de búsqueda</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1019" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1020" />
       <source>Filtered by: </source>
       <translation>Filtrado por: </translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1055" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1050" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1056" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1051" />
       <source>Unfiltered</source>
       <translation>Sin filtrar</translation>
     </message>
@@ -41833,22 +41833,22 @@
   <context>
     <name>Histedit</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="76" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="75" />
       <source>Starting histedit session</source>
       <translation>Iniciar sesión de histedit</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="104" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="102" />
       <source>Continue histedit session</source>
       <translation>Continuar sesión de histedit</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="131" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="129" />
       <source>Abort histedit session</source>
       <translation>Abortar sesión de histedit</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="159" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="157" />
       <source>Edit Plan</source>
       <translation>Plan de Edición</translation>
     </message>
@@ -45024,125 +45024,125 @@
   <context>
     <name>IrcChannelWidget</name>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1674" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1609" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="448" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1675" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1610" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="449" />
       <source>Send Message</source>
       <translation>Enviar Mensaje</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="449" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="450" />
       <source>Messages starting with a '/' are not allowed in private chats.</source>
       <translation>Los mensajes que comienzan con un carácter '/' no están permitidos en chats privados.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="565" />
-      <source>Leave IRC channel</source>
-      <translation>Abandonar el canal IRC</translation>
-    </message>
-    <message>
       <location filename="../Network/IRC/IrcChannelWidget.py" line="566" />
+      <source>Leave IRC channel</source>
+      <translation>Abandonar el canal IRC</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="567" />
       <source>Do you really want to leave the IRC channel &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation>¿Desea realmente abandonar el canal IRC &lt;b&gt;{0}&lt;/b&gt;?</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="735" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="736" />
       <source>Channel Message</source>
       <translation>Mensaje en el Canal</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="742" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="743" />
       <source>Nick mentioned</source>
       <translation>Nick mencionado</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="769" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="770" />
       <source>{0} has joined the channel {1} ({2}).</source>
       <translation>{0} se ha unido al canal {1} ({2}).</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="774" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="775" />
       <source>You have joined the channel {0} ({1}).</source>
       <translation>Usted se ha unido al canal {0} ({1}).</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="782" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="783" />
       <source>Join Channel</source>
       <translation>Unirse al Canal</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="802" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="803" />
       <source>{0} has left {1}.</source>
       <translation>{0} ha abandonado {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="809" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="806" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="810" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="807" />
       <source>{0} has left {1}: {2}.</source>
       <translation>{0} ha abandonado {1}: {2}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="817" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="818" />
       <source>Leave Channel</source>
       <translation>Abandonar el Canal</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="837" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="838" />
       <source>{0} has quit {1}.</source>
       <translation>{0} ha salido de {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="840" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="841" />
       <source>{0} has quit {1}: {2}.</source>
       <translation>{0} ha salido de {1}: {2}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="848" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="849" />
       <source>Quit</source>
       <translation>SalirSalir</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="869" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="870" />
       <source>You are now known as {0}.</source>
       <translation>Usted es conocido como {0}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="875" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="876" />
       <source>User {0} is now known as {1}.</source>
       <translation>Usuario {0} es conocido ahora como {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="918" />
-      <source>Away</source>
-      <translation>Ausente</translation>
-    </message>
-    <message>
       <location filename="../Network/IRC/IrcChannelWidget.py" line="919" />
+      <source>Away</source>
+      <translation>Ausente</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="920" />
       <source>{0} is away: {1}</source>
       <translation>{0} está ausente: {1}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="939" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="940" />
       <source>The channel topic is: "{0}".</source>
       <translation>El tema del canal es: "{0}".</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="958" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="959" />
       <source>The topic was set by {0} on {1}.</source>
       <translation>El tema ha sido establecido por {0} en {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="981" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="982" />
       <source>Channel URL: {0}</source>
       <translation>URL del Canal: {0}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1006" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1007" />
       <source>password protected ({0})</source>
       <translation>protegido por contraseña ({0})</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1009" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1010" />
       <source>limited to %n user(s)</source>
       <translation>
         <numerusform>limitado a %n usuario</numerusform>
@@ -45150,77 +45150,77 @@
       </translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1017" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1018" />
       <source>Channel modes: {0}.</source>
       <translation>Modos de canal: {0}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1036" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1037" />
       <source>This channel was created on {0}.</source>
       <translation>Este canal se creó en {0}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1073" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1074" />
       <source>{0} sets the channel mode to 'anonymous'.</source>
       <translation>{0} establece el modo de canal a 'anónimo'.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1077" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1078" />
       <source>{0} removes the 'anonymous' mode from the channel.</source>
       <translation>{0} elimina el modo 'anónimo' del canal.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1082" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1083" />
       <source>{0} sets a ban on {1}.</source>
       <translation>{0} establece un ban a {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1086" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1087" />
       <source>{0} removes the ban on {1}.</source>
       <translation>{0} elimina el ban a {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1091" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1092" />
       <source>{0} sets the channel mode to 'no colors allowed'.</source>
       <translation>{0} establece el modo de canal a 'no se permiten colores'.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1095" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1096" />
       <source>{0} sets the channel mode to 'allow color codes'.</source>
       <translation>{0} establece el modo de canal a 'permitir códigos de color'.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1100" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1101" />
       <source>{0} sets a ban exception on {1}.</source>
       <translation>{0} establece una excepción de ban a {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1104" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1105" />
       <source>{0} removes the ban exception on {1}.</source>
       <translation>{0} elimina la excepción de ban a {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1109" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1110" />
       <source>{0} sets the channel mode to 'invite only'.</source>
       <translation>{0} establece el modo de canal a 'invitar solamente'.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1113" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1114" />
       <source>{0} removes the 'invite only' mode from the channel.</source>
       <translation>{0} elimina el modo 'invitar solamente' del canal.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1118" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1119" />
       <source>{0} sets the channel key to '{1}'.</source>
       <translation>{0} establece la clave de canal a '{1}'.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1122" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1123" />
       <source>{0} removes the channel key.</source>
       <translation>{0} elimina la clave del canal.</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1125" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1126" />
       <source>{0} sets the channel limit to %n nick(s).</source>
       <translation>
         <numerusform>{0} establece el límite del canal a %n nick.</numerusform>
@@ -45228,327 +45228,327 @@
       </translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1131" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1132" />
       <source>{0} removes the channel limit.</source>
       <translation>{0} elimina el límite del canal.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1134" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1135" />
       <source>{0} sets the channel mode to 'moderated'.</source>
       <translation>{0} establece el modo de canal a 'moderado'.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1138" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1139" />
       <source>{0} sets the channel mode to 'unmoderated'.</source>
       <translation>{0} establece el modo de canal a 'no moderado'.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1143" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1144" />
       <source>{0} sets the channel mode to 'no messages from outside'.</source>
       <translation>{0} establece el modo de canal a 'sin mensajes del exterior'.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1148" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1149" />
       <source>{0} sets the channel mode to 'allow messages from outside'.</source>
       <translation>{0} establece el modo de canal a 'permitir mensajes del exterior'.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1154" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1155" />
       <source>{0} sets the channel mode to 'private'.</source>
       <translation>{0} establece el modo de canal a 'privado'.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1158" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1159" />
       <source>{0} sets the channel mode to 'public'.</source>
       <translation>{0} establece el modo de canal a 'público'.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1163" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1164" />
       <source>{0} sets the channel mode to 'quiet'.</source>
       <translation>{0} establece el modo de canal a 'silencioso'.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1167" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1168" />
       <source>{0} removes the 'quiet' mode from the channel.</source>
       <translation>{0} elimina el modo 'silencioso' del canal.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1174" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1175" />
       <source>{0} sets the channel mode to 'secret'.</source>
       <translation>{0} establece el modo de canal a 'secreto'.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1178" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1179" />
       <source>{0} sets the channel mode to 'visible'.</source>
       <translation>{0} establece el modo de canal a 'visible'.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1183" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1184" />
       <source>{0} switches on 'topic protection'.</source>
       <translation>{0} activa 'tema protegido'.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1187" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1188" />
       <source>{0} switches off 'topic protection'.</source>
       <translation>{0} desactiva 'tema protegido'.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1192" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1193" />
       <source>{0} sets invitation mask {1}.</source>
       <translation>{0} establece máscara de invitación {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1196" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1197" />
       <source>{0} removes the invitation mask {1}.</source>
       <translation>{0} elimina la máscara de invitación {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1200" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1201" />
       <source>Mode</source>
       <translation>Modo</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1222" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1223" />
       <source>{0} sets mode for {1}: {2}.</source>
       <translation>{0} establece el modo para {1}: {2}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1254" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1255" />
       <source>Help</source>
       <translation>Ayuda</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1307" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1297" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1289" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1281" />
-      <source>CTCP</source>
-      <translation>CTCP</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1282" />
-      <source>Received Version request from {0}.</source>
-      <translation>Recibida Solicitud de Versión desde {0}.</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1290" />
-      <source>Received CTCP-PING request from {0}, sending answer.</source>
-      <translation>Recibida solicitud CTCP-PING desde {0}, enviando respuesta.</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1298" />
-      <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
-      <translation>Recibida solicitud CTCP-CLIENTINFO desde {0}, enviando respuesta.</translation>
-    </message>
-    <message>
       <location filename="../Network/IRC/IrcChannelWidget.py" line="1308" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1298" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1290" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1282" />
+      <source>CTCP</source>
+      <translation>CTCP</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1283" />
+      <source>Received Version request from {0}.</source>
+      <translation>Recibida Solicitud de Versión desde {0}.</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1291" />
+      <source>Received CTCP-PING request from {0}, sending answer.</source>
+      <translation>Recibida solicitud CTCP-PING desde {0}, enviando respuesta.</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1299" />
+      <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
+      <translation>Recibida solicitud CTCP-CLIENTINFO desde {0}, enviando respuesta.</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1309" />
       <source>Received unknown CTCP-{0} request from {1}.</source>
       <translation>Recibida solicitud CTCP desconocida desde {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1408" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1409" />
       <source>--- New From Here ---</source>
       <translation>--- Nuevo a partir de Aquí ---</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1492" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1475" />
-      <source>Save Messages</source>
-      <translation>Guardar Mensajes</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1477" />
-      <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source>
-      <translation>Archivos HTML (*.{0});;Archivos de Texto (*.txt);;Todos los Archivos (*)</translation>
-    </message>
-    <message>
       <location filename="../Network/IRC/IrcChannelWidget.py" line="1493" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1476" />
+      <source>Save Messages</source>
+      <translation>Guardar Mensajes</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1478" />
+      <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source>
+      <translation>Archivos HTML (*.{0});;Archivos de Texto (*.txt);;Todos los Archivos (*)</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1494" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1513" />
-      <source>Error saving Messages</source>
-      <translation>Error al guardar Mensajes</translation>
-    </message>
-    <message>
       <location filename="../Network/IRC/IrcChannelWidget.py" line="1514" />
+      <source>Error saving Messages</source>
+      <translation>Error al guardar Mensajes</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1515" />
       <source>&lt;p&gt;The messages contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Los contenidos de mensajes no se han podido guardar en &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1526" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1527" />
       <source>Copy</source>
       <translation>Copiar</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1531" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1532" />
       <source>Cut all</source>
       <translation>Cortar todo</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1536" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1537" />
       <source>Copy all</source>
       <translation>Copiar todo</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1542" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1543" />
       <source>Clear</source>
       <translation>Limpiar</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1547" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1548" />
       <source>Save</source>
       <translation>Guardar</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1551" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1552" />
       <source>Mark Current Position</source>
       <translation>Marcar Posición Actual</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1554" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1555" />
       <source>Remove Position Marker</source>
       <translation>Eliminar Posición del Marcador</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1642" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1626" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1610" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1643" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1627" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1611" />
       <source>Enter the message to be sent:</source>
       <translation>Introducir el mensaje a enviar:</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1677" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1625" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1678" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1626" />
       <source>Send Query</source>
       <translation>Enviar Consulta</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1680" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1641" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1681" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1642" />
       <source>Send Notice</source>
       <translation>Enviar Aviso</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1667" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1668" />
       <source>Who Is</source>
       <translation>Quien Es</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1670" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1671" />
       <source>Private Chat</source>
       <translation>Chat Privado</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1684" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1685" />
       <source>Send Ping</source>
       <translation>Enviar Ping</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1687" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1688" />
       <source>Ignore User</source>
       <translation>Ignorar Usuario</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1691" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1692" />
       <source>Refresh</source>
       <translation>Actualizar</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1815" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1789" />
-      <source>Who</source>
-      <translation>Quien</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1790" />
-      <source>End of WHO list for {0}.</source>
-      <translation>Fin de lista WHO para {0}.</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1813" />
-      <source> (Away)</source>
-      <translation> (No está)</translation>
-    </message>
-    <message>
       <location filename="../Network/IRC/IrcChannelWidget.py" line="1816" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1790" />
+      <source>Who</source>
+      <translation>Quien</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1791" />
+      <source>End of WHO list for {0}.</source>
+      <translation>Fin de lista WHO para {0}.</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1814" />
+      <source> (Away)</source>
+      <translation> (No está)</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1817" />
       <source>{0} is {1}@{2} ({3}){4}</source>
       <translation>{0} es {1}@{2} ({3}){4}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2205" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2184" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2163" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2140" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2120" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2100" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2080" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2057" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2049" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2041" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2030" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2011" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1977" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1972" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1949" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1926" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1919" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1912" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1905" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1898" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1891" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1840" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2206" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2185" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2164" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2141" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2121" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2101" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2081" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2058" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2050" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2042" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2031" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2012" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1978" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1973" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1950" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1927" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1920" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1913" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1906" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1899" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1892" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1841" />
       <source>Whois</source>
       <translation>Whois</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1841" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1842" />
       <source>{0} is {1}@{2} ({3}).</source>
       <translation>{0} es {1}@{2} ({3}).</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1892" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1893" />
       <source>{0} is a user on channels: {1}</source>
       <translation>{0} es un usuario en los canales: {1}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1899" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1900" />
       <source>{0} has voice on channels: {1}</source>
       <translation>{0} tiene voz en los canales: {1}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1906" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1907" />
       <source>{0} is a halfop on channels: {1}</source>
       <translation>{0} es un halfop en los canales: {1}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1913" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1914" />
       <source>{0} is an operator on channels: {1}</source>
       <translation>{0} is un operador en los canales: {1}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1920" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1921" />
       <source>{0} is owner of channels: {1}</source>
       <translation>{0} es propietario de los canales: {1}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1927" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1928" />
       <source>{0} is admin on channels: {1}</source>
       <translation>{0} es un admin en los canales: {1}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1950" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1951" />
       <source>{0} is online via {1} ({2}).</source>
       <translation>{0} está online vía {1} ({2}).</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1973" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1974" />
       <source>{0} is an IRC Operator.</source>
       <translation>{0} es un Operador IRC.</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2006" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2007" />
       <source>%n day(s)</source>
       <translation>
         <numerusform>%n día</numerusform>
@@ -45556,8 +45556,8 @@
       </translation>
     </message>
     <message numerus="yes">
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2026" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2007" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2027" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2008" />
       <source>%n hour(s)</source>
       <translation>
         <numerusform>%n hora</numerusform>
@@ -45565,9 +45565,9 @@
       </translation>
     </message>
     <message numerus="yes">
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2038" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2027" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2008" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2039" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2028" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2009" />
       <source>%n minute(s)</source>
       <translation>
         <numerusform>%n minuto</numerusform>
@@ -45575,9 +45575,9 @@
       </translation>
     </message>
     <message numerus="yes">
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2039" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2028" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2009" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2040" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2029" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2010" />
       <source>%n second(s)</source>
       <translation>
         <numerusform>%n segundo</numerusform>
@@ -45585,25 +45585,25 @@
       </translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2012" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2013" />
       <source>{0} has been idle for {1}, {2}, {3}, and {4}.</source>
       <comment>{0} = name of person, {1} = (x days), {2} = (x hours), {3} = (x minutes), {4} = (x seconds)</comment>
       <translation>{0} no ha mostrado actividad durante {1}, {2}, {3}, y {4}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2031" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2032" />
       <source>{0} has been idle for {1}, {2}, and {3}.</source>
       <comment>{0} = name of person, {1} = (x hours), {2} = (x minutes), {3} = (x seconds)</comment>
       <translation>{0} no ha mostrado actividad durante {1}, {2}, y {3}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2042" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2043" />
       <source>{0} has been idle for {1} and {2}.</source>
       <comment>{0} = name of person, {1} = (x minutes), {3} = (x seconds)</comment>
       <translation>{0} no ha mostrado actividad durante {1}, y {2}.</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2050" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2051" />
       <source>{0} has been idle for %n second(s).</source>
       <translation>
         <numerusform>{0} no ha mostrado actividad durante %n segundo.</numerusform>
@@ -45611,52 +45611,52 @@
       </translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2058" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2059" />
       <source>{0} has been online since {1}.</source>
       <translation>{0} ha estado online desde {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2081" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2082" />
       <source>End of WHOIS list for {0}.</source>
       <translation>Fin de lista WHOIS para {0}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2101" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2102" />
       <source>{0} is an identified user.</source>
       <translation>{0} is an usuario identificado.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2121" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2122" />
       <source>{0} is available for help.</source>
       <translation>{0} está disponible para ayudar.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2141" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2142" />
       <source>{0} is logged in as {1}.</source>
       <translation>{0} está conectado como {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2164" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2165" />
       <source>{0} is actually using the host {1} (IP: {2}).</source>
       <translation>{0} está utilizando en realidad el host {1} (IP: {2}).</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2185" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2186" />
       <source>{0} is using a secure connection.</source>
       <translation>{0} está utilizando una conexión segura.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2206" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2207" />
       <source>{0} is connecting from {1} (IP: {2}).</source>
       <translation>{0} está conectando desde {1} (IP: {2}).</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2229" />
-      <source>Edit Channel Topic</source>
-      <translation>Editar Tema del Canal</translation>
-    </message>
-    <message>
       <location filename="../Network/IRC/IrcChannelWidget.py" line="2230" />
+      <source>Edit Channel Topic</source>
+      <translation>Editar Tema del Canal</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2231" />
       <source>Enter the topic for this channel:</source>
       <translation>Introducir el tema para este canal:</translation>
     </message>
@@ -46609,7 +46609,7 @@
   <context>
     <name>IrcUserItem</name>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="131" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="132" />
       <source>{0} (ignored)</source>
       <translation>{0} (ignorado)</translation>
     </message>
@@ -46695,324 +46695,324 @@
   <context>
     <name>IrcWidget</name>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="73" />
+      <location filename="../Network/IRC/IrcWidget.py" line="74" />
       <source>Press to leave the current channel</source>
       <translation>Pulsar para abandonar el canal actual</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="256" />
-      <location filename="../Network/IRC/IrcWidget.py" line="151" />
-      <source>Disconnect from Server</source>
-      <translation>Desconectar del Servidor</translation>
-    </message>
-    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="257" />
       <location filename="../Network/IRC/IrcWidget.py" line="152" />
+      <source>Disconnect from Server</source>
+      <translation>Desconectar del Servidor</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="258" />
+      <location filename="../Network/IRC/IrcWidget.py" line="153" />
       <source>&lt;p&gt;Do you really want to disconnect from &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;&lt;p&gt;All channels will be closed.&lt;/p&gt;</source>
       <translation>&lt;p&gt;¿Desea realmente desconectar de &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;&lt;p&gt;Se cerrarán todos los canales.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="201" />
-      <source>SSL Connection</source>
-      <translation>Conexión SSL</translation>
-    </message>
-    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="202" />
+      <source>SSL Connection</source>
+      <translation>Conexión SSL</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="203" />
       <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source>
       <translation>Se ha solicitado una conexión encriptada pero SSL no está disponible. Por favor, cambie la configuración del servidor.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="583" />
-      <location filename="../Network/IRC/IrcWidget.py" line="548" />
-      <location filename="../Network/IRC/IrcWidget.py" line="539" />
-      <location filename="../Network/IRC/IrcWidget.py" line="278" />
-      <location filename="../Network/IRC/IrcWidget.py" line="273" />
-      <location filename="../Network/IRC/IrcWidget.py" line="266" />
-      <location filename="../Network/IRC/IrcWidget.py" line="242" />
-      <location filename="../Network/IRC/IrcWidget.py" line="228" />
+      <location filename="../Network/IRC/IrcWidget.py" line="584" />
+      <location filename="../Network/IRC/IrcWidget.py" line="549" />
+      <location filename="../Network/IRC/IrcWidget.py" line="540" />
+      <location filename="../Network/IRC/IrcWidget.py" line="279" />
+      <location filename="../Network/IRC/IrcWidget.py" line="274" />
+      <location filename="../Network/IRC/IrcWidget.py" line="267" />
+      <location filename="../Network/IRC/IrcWidget.py" line="243" />
+      <location filename="../Network/IRC/IrcWidget.py" line="229" />
       <source>Info</source>
       <translation>Info</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="229" />
+      <location filename="../Network/IRC/IrcWidget.py" line="230" />
       <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source>
       <translation>Buscando el servidor {0} (puerto {1}) utilizando una conexión encriptada a través de SSL...</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="243" />
+      <location filename="../Network/IRC/IrcWidget.py" line="244" />
       <source>Looking for server {0} (port {1})...</source>
       <translation>Buscando servidor {0} (puerto {1})...</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="267" />
+      <location filename="../Network/IRC/IrcWidget.py" line="268" />
       <source>Disconnecting from server {0}...</source>
       <translation>Desconectando del servidor {0}...</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="274" />
+      <location filename="../Network/IRC/IrcWidget.py" line="275" />
       <source>Disconnecting from network {0}...</source>
       <translation>Desconectando de la red {0}...</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="278" />
+      <location filename="../Network/IRC/IrcWidget.py" line="279" />
       <source>Disconnecting from server.</source>
       <translation>Desconectando del servidor.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="539" />
+      <location filename="../Network/IRC/IrcWidget.py" line="540" />
       <source>Server found,connecting...</source>
       <translation>Servidor encontrado, conectando...</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="548" />
+      <location filename="../Network/IRC/IrcWidget.py" line="549" />
       <source>Connected,logging in...</source>
       <translation>Conectado, validándose...</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="583" />
+      <location filename="../Network/IRC/IrcWidget.py" line="584" />
       <source>Server disconnected.</source>
       <translation>Servidor desconectado.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="627" />
-      <source>Message Error</source>
-      <translation>Error de Mensaje</translation>
-    </message>
-    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="628" />
+      <source>Message Error</source>
+      <translation>Error de Mensaje</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="629" />
       <source>Unknown message received from server:&lt;br/&gt;{0}</source>
       <translation>Mensaje desconocido recibido del servidor: &lt;/br&gt;{0}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1069" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1059" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1051" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1043" />
-      <location filename="../Network/IRC/IrcWidget.py" line="671" />
-      <location filename="../Network/IRC/IrcWidget.py" line="663" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1070" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1060" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1052" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1044" />
+      <location filename="../Network/IRC/IrcWidget.py" line="672" />
+      <location filename="../Network/IRC/IrcWidget.py" line="664" />
       <source>CTCP</source>
       <translation>CTCP</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="664" />
+      <location filename="../Network/IRC/IrcWidget.py" line="665" />
       <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
       <translation>Recibida respuesta CTCP-PING desde {0} con una latencia de {1} ms.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="672" />
+      <location filename="../Network/IRC/IrcWidget.py" line="673" />
       <source>Received unknown CTCP-{0} response from {1}.</source>
       <translation>Recibida respuesta CTCP-{0} desconocida desde {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="700" />
+      <location filename="../Network/IRC/IrcWidget.py" line="701" />
       <source>Notice</source>
       <translation>Aviso</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="710" />
+      <location filename="../Network/IRC/IrcWidget.py" line="711" />
       <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
       <translation>Usted ha establecido sus modos personales a &lt;b&gt;[{0}]&lt;/b&gt;.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="714" />
+      <location filename="../Network/IRC/IrcWidget.py" line="715" />
       <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
       <translation>{0} ha cambiado los modos personales de usted a &lt;b&gt;[{1}]&lt;/b&gt;.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="718" />
+      <location filename="../Network/IRC/IrcWidget.py" line="719" />
       <source>Mode</source>
       <translation>Modo</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="726" />
+      <location filename="../Network/IRC/IrcWidget.py" line="727" />
       <source>You have left channel {0}.</source>
       <translation>Ha dejado el canal {0}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="738" />
+      <location filename="../Network/IRC/IrcWidget.py" line="739" />
       <source>You are now known as {0}.</source>
       <translation>Usted es conocido como {0}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="744" />
+      <location filename="../Network/IRC/IrcWidget.py" line="745" />
       <source>User {0} is now known as {1}.</source>
       <translation>Usuario {0} es conocido ahora como {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="750" />
+      <location filename="../Network/IRC/IrcWidget.py" line="751" />
       <source>Received PONG from {0}</source>
       <translation>Recibido PONG desde {0}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="755" />
+      <location filename="../Network/IRC/IrcWidget.py" line="756" />
       <source>Server Error</source>
       <translation>Error de Servidor</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="793" />
+      <location filename="../Network/IRC/IrcWidget.py" line="794" />
       <source>Error</source>
       <translation>Error</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="812" />
+      <location filename="../Network/IRC/IrcWidget.py" line="813" />
       <source>Welcome</source>
       <translation>Bienvenido</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="814" />
+      <location filename="../Network/IRC/IrcWidget.py" line="815" />
       <source>Support</source>
       <translation>Soporte</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="816" />
+      <location filename="../Network/IRC/IrcWidget.py" line="817" />
       <source>User</source>
       <translation>Usuario</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="818" />
+      <location filename="../Network/IRC/IrcWidget.py" line="819" />
       <source>MOTD</source>
       <translation>MOTD</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="820" />
+      <location filename="../Network/IRC/IrcWidget.py" line="821" />
       <source>Away</source>
       <translation>Ausente</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="822" />
+      <location filename="../Network/IRC/IrcWidget.py" line="823" />
       <source>Info ({0})</source>
       <translation>Info ({0})</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="826" />
+      <location filename="../Network/IRC/IrcWidget.py" line="827" />
       <source>Message of the day</source>
       <translation>Mensaje del día</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="828" />
+      <location filename="../Network/IRC/IrcWidget.py" line="829" />
       <source>End of message of the day</source>
       <translation>Fin de mensaje del día</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="831" />
+      <location filename="../Network/IRC/IrcWidget.py" line="832" />
       <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
       <translation>Servidor {0} (Versión {1}), Modos de Usuario: {2}, Modos de Canal: {3}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="836" />
+      <location filename="../Network/IRC/IrcWidget.py" line="837" />
       <source>Current users on {0}: {1}, max. {2}</source>
       <translation>Usuarios actuales en {0}: {1}, máx. {2}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="841" />
+      <location filename="../Network/IRC/IrcWidget.py" line="842" />
       <source>Current users on the network: {0}, max. {1}</source>
       <translation>Usuarios actuales en la red: {0}, máx. {1}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="845" />
+      <location filename="../Network/IRC/IrcWidget.py" line="846" />
       <source>You are no longer marked as being away.</source>
       <translation>Usted ya no está marcado como ausente.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="847" />
+      <location filename="../Network/IRC/IrcWidget.py" line="848" />
       <source>You have been marked as being away.</source>
       <translation>Usted ha sido marcado como ausente.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="978" />
-      <location filename="../Network/IRC/IrcWidget.py" line="962" />
-      <location filename="../Network/IRC/IrcWidget.py" line="910" />
-      <source>SSL Error</source>
-      <translation>Error de SSL</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="911" />
-      <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
-      <translation>Conexión al servidor {0} (puerto {1}) perdida mientras se esperaba respuesta de usuario a un error SSL.</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="947" />
-      <location filename="../Network/IRC/IrcWidget.py" line="940" />
-      <location filename="../Network/IRC/IrcWidget.py" line="935" />
-      <location filename="../Network/IRC/IrcWidget.py" line="927" />
-      <location filename="../Network/IRC/IrcWidget.py" line="919" />
-      <source>Socket Error</source>
-      <translation>Error de Socket</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="920" />
-      <source>The host was not found. Please check the host name and port settings.</source>
-      <translation>El host no ha sido encontrado. Por favor, compruebe los ajustes de nombre de host y puerto.</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="928" />
-      <source>The connection was refused by the peer. Please check the host name and port settings.</source>
-      <translation>La conexión ha sido rechazada por el otro extremo. Por favor, compruebe los ajustes de nombre de host y puerto.</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="935" />
-      <source>The SSL handshake failed.</source>
-      <translation>Ha fallado el SSL handshake.</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="941" />
-      <source>The following network error occurred:&lt;br/&gt;{0}</source>
-      <translation>Ha ocurrido el siguiente error de red: &lt;br/&gt;{0}</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="947" />
-      <source>A network error occurred.</source>
-      <translation>Ha ocurrido un error de red.</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="963" />
-      <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source>
-      <translation>No se ha podido conectar a {0} (puerto {1}) utilizando una conexión encriptada sobre SSL. O bien el servidor no soporta SSL (¿se ha utilizado el puerto correcto?) o bien usted ha rechazado el certificado.</translation>
-    </message>
-    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="979" />
+      <location filename="../Network/IRC/IrcWidget.py" line="963" />
+      <location filename="../Network/IRC/IrcWidget.py" line="911" />
+      <source>SSL Error</source>
+      <translation>Error de SSL</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="912" />
+      <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
+      <translation>Conexión al servidor {0} (puerto {1}) perdida mientras se esperaba respuesta de usuario a un error SSL.</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="948" />
+      <location filename="../Network/IRC/IrcWidget.py" line="941" />
+      <location filename="../Network/IRC/IrcWidget.py" line="936" />
+      <location filename="../Network/IRC/IrcWidget.py" line="928" />
+      <location filename="../Network/IRC/IrcWidget.py" line="920" />
+      <source>Socket Error</source>
+      <translation>Error de Socket</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="921" />
+      <source>The host was not found. Please check the host name and port settings.</source>
+      <translation>El host no ha sido encontrado. Por favor, compruebe los ajustes de nombre de host y puerto.</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="929" />
+      <source>The connection was refused by the peer. Please check the host name and port settings.</source>
+      <translation>La conexión ha sido rechazada por el otro extremo. Por favor, compruebe los ajustes de nombre de host y puerto.</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="936" />
+      <source>The SSL handshake failed.</source>
+      <translation>Ha fallado el SSL handshake.</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="942" />
+      <source>The following network error occurred:&lt;br/&gt;{0}</source>
+      <translation>Ha ocurrido el siguiente error de red: &lt;br/&gt;{0}</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="948" />
+      <source>A network error occurred.</source>
+      <translation>Ha ocurrido un error de red.</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="964" />
+      <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source>
+      <translation>No se ha podido conectar a {0} (puerto {1}) utilizando una conexión encriptada sobre SSL. O bien el servidor no soporta SSL (¿se ha utilizado el puerto correcto?) o bien usted ha rechazado el certificado.</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="980" />
       <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
       <translation>El certificado SSL para el servidor {0} (puerto {1}) ha fallado la comprobación de autenticidad. Los errores SSL han sido aceptados por usted.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1044" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1045" />
       <source>Received Version request from {0}.</source>
       <translation>Se ha recibido una solicitud de Versión de {0}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1052" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1053" />
       <source>Received CTCP-PING request from {0}, sending answer.</source>
       <translation>Recibida solicitud CTCP-PING desde {0}, enviando respuesta.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1060" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1061" />
       <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
       <translation>Recibida solicitud CTCP-CLIENTINFO desde {0}, enviando respuesta.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1070" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1071" />
       <source>Received unknown CTCP-{0} request from {1}.</source>
       <translation>Recibida solicitud CTCP desconocida desde {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1086" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1087" />
       <source>{0} ({1})</source>
       <comment>channel name, users count</comment>
       <translation>{0} ({1})</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1128" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1108" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1129" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1109" />
       <source>Critical</source>
       <translation>Crítico</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1109" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1110" />
       <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
       <translation>No hay un sobrenombre que el servidor acepte configurado para &lt;b&gt;{0}&lt;/b&gt;. Desconectando...</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1128" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1129" />
       <source>The given nickname is already in use.</source>
       <translation>El sobrenombre proporcionado ya está en uso.</translation>
     </message>
@@ -49933,17 +49933,17 @@
   <context>
     <name>LogViewerPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="36" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="33" />
       <source>&lt;b&gt;Message Filters for Standard Output&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stdout.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Filtros de Mensajes para Standard Output&lt;/b&gt;&lt;p&gt;Esta lista muestra los filtros de mensaje configurados que se usan para suprimir mensajes recibidos vía stdout.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="43" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="40" />
       <source>&lt;b&gt;Message Filters for Standard Error &lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stderr.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Filtros de Mensajes para Standard Error&lt;/b&gt;&lt;p&gt;Esta lista muestra los filtros de mensaje configurados que se usan para suprimir mensajes recibidos vía stderr.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="50" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="47" />
       <source>&lt;b&gt;Message Filters for both&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stdout or stderr.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Filtros de Mensajes para ambos&lt;/b&gt;&lt;p&gt;Esta lista muestra los filtros de mensaje configurados que se usan para suprimir mensajes recibidos vía stdout o stderr.&lt;/p&gt;</translation>
     </message>
@@ -51503,8 +51503,8 @@
       <translation>Introducir la contraseña de red</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="364" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="347" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="361" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="344" />
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.ui" line="0" />
       <source>Press to show the password</source>
@@ -51788,66 +51788,66 @@
       <translation>Introducir la URL para la documentación de mini-MicroPython Calliope</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="56" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="53" />
       <source>Automatic</source>
       <translation>Automático</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="55" />
+      <source>Light</source>
+      <translation>Claro</translation>
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="58" />
-      <source>Light</source>
-      <translation>Claro</translation>
+      <source>Dark</source>
+      <translation>Oscuro</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="61" />
-      <source>Dark</source>
-      <translation>Oscuro</translation>
+      <source>Blue Cerulean</source>
+      <translation>Azul Cerúleo</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="64" />
-      <source>Blue Cerulean</source>
-      <translation>Azul Cerúleo</translation>
+      <source>Brown Sand</source>
+      <translation>Marrón Arena</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="67" />
-      <source>Brown Sand</source>
-      <translation>Marrón Arena</translation>
+      <source>Blue NCS</source>
+      <translation>Azul NCS</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="70" />
-      <source>Blue NCS</source>
-      <translation>Azul NCS</translation>
+      <source>High Contrast</source>
+      <translation>Contraste Alto</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="73" />
-      <source>High Contrast</source>
-      <translation>Contraste Alto</translation>
+      <source>Blue Icy</source>
+      <translation>Azul hielo</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="76" />
-      <source>Blue Icy</source>
-      <translation>Azul hielo</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="79" />
       <source>Qt</source>
       <translation>Qt</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="90" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="88" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="85" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="82" />
+      <source>All Files (*)</source>
+      <translation>Todos los archivos (*)</translation>
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="93" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="91" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="88" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="85" />
-      <source>All Files (*)</source>
-      <translation>Todos los archivos (*)</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="96" />
       <source>open</source>
       <translation>abrir</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="360" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="343" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="357" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="340" />
       <source>Press to hide the password</source>
       <translation>Pulsar para ocultar la contraseña</translation>
     </message>
@@ -58075,62 +58075,62 @@
       <translation>Instalar en el Directorio de Usuario</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="44" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="42" />
       <source>Enter requirements file:</source>
       <translation>Introducir archivo de requisitos:</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="47" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="45" />
       <source>Press to select the requirements file through a file selection dialog.</source>
       <translation>Pulsar para seleccionar el archivo de requisitos a través de un diálogo de selección de archivo.</translation>
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="50" />
+      <source>Text Files (*.txt);;All Files (*)</source>
+      <translation>Archivos de Texto (*.txt);;Todos los Archivos (*)</translation>
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="52" />
-      <source>Text Files (*.txt);;All Files (*)</source>
-      <translation>Archivos de Texto (*.txt);;Todos los Archivos (*)</translation>
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="54" />
       <source>Enter 'pyproject.toml' file:</source>
       <translation>Introducir archivo 'pyproject.toml':</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="57" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="55" />
       <source>Press to select the 'pyproject.toml' file through a file selection dialog.</source>
       <translation>Pulsar para seleccionar el archivo 'pyproject.toml' usando un diálogo de selección de archivo.</translation>
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="60" />
+      <source>TOML Files (*.toml);;All Files (*)</source>
+      <translation>Archivos TOML (*.toml);;Todos los archivos (*)</translation>
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="62" />
-      <source>TOML Files (*.toml);;All Files (*)</source>
-      <translation>Archivos TOML (*.toml);;Todos los archivos (*)</translation>
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="64" />
       <source>Enter package file:</source>
       <translation>Introducir archivo de package:</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="67" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="65" />
       <source>Press to select the package file through a file selection dialog.</source>
       <translation>Pulsar para seleccionar el archivo de package a través de un diálogo de selección de archivo.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="73" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="71" />
       <source>Python Wheel (*.whl);;Archive Files (*.tar.gz *.zip);;All Files (*)</source>
       <translation>Python Wheel (*.whl);;Archivos Comprimidos (*.tar.gz *.zip);;Todos los Archivos (*)</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="80" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="78" />
       <source>Enter file name:</source>
       <translation>Introducir nombre de archivo:</translation>
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="81" />
+      <source>Press to select a file through a file selection dialog.</source>
+      <translation>Pulsar para seleccionar un archivo a través de un diálogo de selección de archivo.</translation>
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="83" />
-      <source>Press to select a file through a file selection dialog.</source>
-      <translation>Pulsar para seleccionar un archivo a través de un diálogo de selección de archivo.</translation>
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="85" />
       <source>All Files (*)</source>
       <translation>Todos los archivos (*)</translation>
     </message>
@@ -58405,37 +58405,37 @@
       <translation>Archivo</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackageDetailsDialog.py" line="275" />
+      <location filename="../PipInterface/PipPackageDetailsDialog.py" line="269" />
       <source>&lt;h3&gt;{0}&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed Version:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Affected Version:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Advisory:&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;{0}&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Versión Instalada:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Versión Afectada:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Recomendado:&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackageDetailsDialog.py" line="310" />
+      <location filename="../PipInterface/PipPackageDetailsDialog.py" line="304" />
       <source>any</source>
       <translation>cualquiera</translation>
     </message>
     <message>
+      <location filename="../PipInterface/PipPackageDetailsDialog.py" line="340" />
+      <source>B</source>
+      <translation>B</translation>
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackageDetailsDialog.py" line="343" />
+      <source>KB</source>
+      <translation>KB</translation>
+    </message>
+    <message>
       <location filename="../PipInterface/PipPackageDetailsDialog.py" line="346" />
-      <source>B</source>
-      <translation>B</translation>
+      <source>MB</source>
+      <translation>MB</translation>
     </message>
     <message>
       <location filename="../PipInterface/PipPackageDetailsDialog.py" line="349" />
-      <source>KB</source>
-      <translation>KB</translation>
-    </message>
-    <message>
-      <location filename="../PipInterface/PipPackageDetailsDialog.py" line="352" />
-      <source>MB</source>
-      <translation>MB</translation>
-    </message>
-    <message>
-      <location filename="../PipInterface/PipPackageDetailsDialog.py" line="355" />
       <source>GB</source>
       <translation>GB</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackageDetailsDialog.py" line="356" />
+      <location filename="../PipInterface/PipPackageDetailsDialog.py" line="350" />
       <source>{0:.1f} {1}</source>
       <comment>value, unit</comment>
       <translation>{0:.1f} {1}</translation>
@@ -60092,110 +60092,110 @@
       <translation>Seleccionado: &lt;b&gt;{0}&lt;/b&gt;</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="544" />
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="534" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="542" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="532" />
       <source>Download Plugin Files</source>
       <translation>Archivos de descarga del Plugin</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="545" />
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="535" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="543" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="533" />
       <source>The requested plugins were downloaded.</source>
       <translation>Los plugins solicitados han sido descargados.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="603" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="601" />
       <source>Plugins Repository URL Changed</source>
       <translation>La URL del Repositorio de Plugins Ha Cambiado</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="604" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="602" />
       <source>The URL of the Plugins Repository has changed. Select the "Update" button to get the new repository file.</source>
       <translation>La URL del repositorio de plugins ha cambiado. Seleccionar el botón 'Actualizar' para obtener el nuevo archivo del repositorio.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="613" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="611" />
       <source>Read plugins repository file</source>
       <translation>Leer archivo de repositorio de plugins</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="614" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="612" />
       <source>&lt;p&gt;The plugins repository file &lt;b&gt;{0}&lt;/b&gt; could not be read. Select Update&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de repositorio de plugins &lt;b&gt;{0}&lt;/b&gt; no se ha podido leer. Seleccione Actualizar&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="623" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="621" />
       <source>No plugin repository file available.
 Select Update.</source>
       <translation>No hay disponible ningún archivo de repositorio de plugins.
 Seleccione Actualizar.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="627" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="625" />
       <source>New: &lt;b&gt;{0}&lt;/b&gt;</source>
       <translation>Nuevo: &lt;b&gt;{0}&lt;/b&gt;</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="629" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="627" />
       <source>Local Updates: &lt;b&gt;{0}&lt;/b&gt;</source>
       <translation>Actualizaciones Locales: &lt;b&gt;{0}&lt;/b&gt;</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="632" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="630" />
       <source>Remote Updates: &lt;b&gt;{0}&lt;/b&gt;</source>
       <translation>Actualizaciones Remotas: &lt;b&gt;{0}&lt;/b&gt;</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="705" />
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="673" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="703" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="671" />
       <source>Error downloading file</source>
       <translation>Error al descargar el fichero</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="706" />
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="674" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="704" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="672" />
       <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se pudo descargar el archivo solicitado desde {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="677" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="675" />
       <source>No connection to Internet.</source>
       <translation>Sin conexión a Internet.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="849" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="847" />
       <source>up-to-date</source>
       <translation>al dia</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="852" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="850" />
       <source>new download available</source>
       <translation>mueva descarga disponible</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="856" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="854" />
       <source>update installable</source>
       <translation>actualización instalable</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="860" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="858" />
       <source>updated download available</source>
       <translation>descarga actualizada disponible</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="864" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="862" />
       <source>error determining status</source>
       <translation>Error al determinar el estado</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="1261" />
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="1233" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="1259" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="1231" />
       <source>Cleanup of Plugin Downloads</source>
       <translation>Limpieza de Descargas de Plugins</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="1265" />
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="1236" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="1263" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="1234" />
       <source>&lt;p&gt;The plugin download &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;La descarga del plugin &lt;b&gt;{0}&lt;/b&gt; no se ha podido borrar.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
@@ -60203,17 +60203,17 @@
   <context>
     <name>PluginRepositoryWindow</name>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="1120" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="1118" />
       <source>Process Generation Error</source>
       <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="1121" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="1119" />
       <source>&lt;p&gt;Could not start the process.&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 proceso.&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="../PluginManager/PluginRepositoryDialog.py" line="1125" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="1123" />
       <source>OK</source>
       <translation>Aceptar</translation>
     </message>
@@ -60560,18 +60560,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1901" />
+      <location filename="../Preferences/__init__.py" line="1907" />
       <source>Export Preferences</source>
       <translation>Exportar Preferencias</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1930" />
-      <location filename="../Preferences/__init__.py" line="1903" />
+      <location filename="../Preferences/__init__.py" line="1936" />
+      <location filename="../Preferences/__init__.py" line="1909" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation>Archivo de Propiedades (*.ini);;Todos los archivos (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1928" />
+      <location filename="../Preferences/__init__.py" line="1934" />
       <source>Import Preferences</source>
       <translation>Importar Preferencias</translation>
     </message>
@@ -62244,9 +62244,9 @@
       <translation>&lt;b&gt;Crear Archivos de Plugin (Snapshot)&lt;/b&gt;&lt;p&gt;Crea ficheros para archivo de plugin de eric usando el listado de ficheros dado en un archivo PKGLIST*. El nombre del archivo se construye a partir del nombre del script principal si no se designa uno en el archivo de package list. La entrada de versión del script principal se modifica para reflejar una snapshot release.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6752" />
-      <location filename="../Project/Project.py" line="6723" />
-      <location filename="../Project/Project.py" line="6677" />
+      <location filename="../Project/Project.py" line="6746" />
+      <location filename="../Project/Project.py" line="6717" />
+      <location filename="../Project/Project.py" line="6671" />
       <location filename="../Project/Project.py" line="4820" />
       <source>Execute Make</source>
       <translation>Ejecutar Make</translation>
@@ -62267,7 +62267,7 @@
       <translation>&lt;b&gt;Ejecutar Make&lt;/b&gt;&lt;p&gt;Ejecuta un 'make' para reconstruir el target configurado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6729" />
+      <location filename="../Project/Project.py" line="6723" />
       <location filename="../Project/Project.py" line="4839" />
       <source>Test for Changes</source>
       <translation>Comprobar Cambios</translation>
@@ -62802,37 +62802,37 @@
       <translation>&lt;p&gt;El archivo de plugin&lt;b&gt;{0}&lt;/b&gt; no puede ser leido.&lt;/p&gt;&lt;p&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6678" />
+      <location filename="../Project/Project.py" line="6672" />
       <source>The make process did not start.</source>
       <translation>El proceso make no ha comenzado.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6724" />
+      <location filename="../Project/Project.py" line="6718" />
       <source>The make process crashed.</source>
       <translation>El proceso make ha fallado.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6732" />
+      <location filename="../Project/Project.py" line="6726" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Hay cambios que requieren que el target make configurado &lt;b&gt;{0}&lt;/b&gt; se reconstruya.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6737" />
+      <location filename="../Project/Project.py" line="6731" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Hay cambios que requieren que el target make por defecto se reconstruya.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6753" />
+      <location filename="../Project/Project.py" line="6747" />
       <source>The makefile contains errors.</source>
       <translation>El makefile contiene errores.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7172" />
+      <location filename="../Project/Project.py" line="7166" />
       <source>Interpreter Missing</source>
       <translation>No se encuentra el Intérprete</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7173" />
+      <location filename="../Project/Project.py" line="7167" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation>El intérprete configurado para el entorno embebido ya no existe. ¿Actualizar el entorno?</translation>
     </message>
@@ -73534,7 +73534,7 @@
       <translation>Mostrar código fuente</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2178" />
+      <location filename="../QScintilla/Shell.py" line="2179" />
       <location filename="../QScintilla/Shell.py" line="1907" />
       <location filename="../QScintilla/Shell.py" line="1906" />
       <location filename="../QScintilla/Shell.py" line="401" />
@@ -73678,59 +73678,59 @@
 </translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2329" />
+      <location filename="../QScintilla/Shell.py" line="2330" />
       <source>Drop Error</source>
       <translation>Error al soltar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2330" />
+      <location filename="../QScintilla/Shell.py" line="2331" />
       <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="../QScintilla/Shell.py" line="2576" />
-      <location filename="../QScintilla/Shell.py" line="2562" />
-      <location filename="../QScintilla/Shell.py" line="2541" />
-      <source>Save Shell Contents</source>
-      <translation>Guardar Contenidos de la Shell</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="2543" />
-      <source>Text Files (*.txt);;All Files (*)</source>
-      <translation>Archivos de Texto (*.txt);;Todos los Archivos (*)</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="2563" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-      <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Shell.py" line="2577" />
+      <location filename="../QScintilla/Shell.py" line="2563" />
+      <location filename="../QScintilla/Shell.py" line="2542" />
+      <source>Save Shell Contents</source>
+      <translation>Guardar Contenidos de la Shell</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2544" />
+      <source>Text Files (*.txt);;All Files (*)</source>
+      <translation>Archivos de Texto (*.txt);;Todos los Archivos (*)</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2564" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+      <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2578" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; no puede ser guardado.&lt;br&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2591" />
+      <location filename="../QScintilla/Shell.py" line="2592" />
       <source>&lt;tr&gt;&lt;td&gt;%restart&lt;/td&gt;&lt;td&gt;Kill the shell and start a new one.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%clear&lt;/td&gt;&lt;td&gt;Clear the display of the shell window.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%start [environment]&lt;/td&gt;&lt;td&gt;Start a shell for a virtual environment with the given name. If no name is given, a default shell is started.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%envs&lt;br/&gt;%environments&lt;/td&gt;&lt;td&gt;Show a list of known virtual environment names.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%which&lt;/td&gt;&lt;td&gt;Show the name of the active virtual environment.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%hist [n]&lt;br/&gt;%history [n]&lt;/td&gt;&lt;td&gt;Show the most recent 'n' entries of the history. If 'n' is not given, show all entries.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%shist&lt;br/&gt;%shistory&lt;br/&gt;%select_history&lt;/td&gt;&lt;td&gt;Select a command from the history.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%chist&lt;br/&gt;%chistory&lt;br/&gt;%clear_history&lt;/td&gt;&lt;td&gt;Clear the current history after confirmation.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%help&lt;/td&gt;&lt;td&gt;Show this help text.&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;%restart&lt;/td&gt;&lt;td&gt;Eliminar la shell y comenzar una nueva.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%clear&lt;/td&gt;&lt;td&gt;Limpiar la pantalla de la ventana de shell.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%start [entorno]&lt;/td&gt;&lt;td&gt;Iniciar la shell para un entorno virtual con un nombre dado. Si no se pasa un nombre, se inicia una shell por defecto.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%envs&lt;br/&gt;%environments&lt;/td&gt;&lt;td&gt;Mostrar una lista de nombres de entornos virtuales conocidos.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%which&lt;/td&gt;&lt;td&gt;Muestra el nombre del entorno virtual activo.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%hist [n]&lt;br/&gt;%history [n]&lt;/td&gt;&lt;td&gt;Mostrar las 'n' entradas del historial más recientes.Si no se pasa  'n', mostrar todas las entradas.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%shist&lt;br/&gt;%shistory&lt;br/&gt;%select_history&lt;/td&gt;&lt;td&gt;Seleccionar un comando del historial.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%chist&lt;br/&gt;%chistory&lt;br/&gt;%clear_history&lt;/td&gt;&lt;td&gt;Limpiar el historial actual tras confirmación.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%help&lt;/td&gt;&lt;td&gt;Mostrar este texto de ayuda.&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2613" />
+      <location filename="../QScintilla/Shell.py" line="2614" />
       <source>&lt;tr&gt;&lt;td&gt;%quit&lt;br/&gt;%quit()&lt;br/&gt;%exit&lt;br/&gt;%exit()&lt;/td&gt;&lt;td&gt;Exit the application.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;These commands are available through the window menus as well.&lt;/p&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;%quit&lt;br/&gt;%quit()&lt;br/&gt;%exit&lt;br/&gt;%exit()&lt;/td&gt;&lt;td&gt;Salir de la aplicación.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;Estos comandos están disponibles también a través del menú de ventana.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2621" />
+      <location filename="../QScintilla/Shell.py" line="2622" />
       <source>&lt;/table&gt;&lt;p&gt;These commands are available through the context menu as well.&lt;/p&gt;</source>
       <translation>&lt;/table&gt;&lt;p&gt;Estos comandos están disponibles también a través del menú contextual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2628" />
-      <source>Shell Special Commands</source>
-      <translation>Comandos Especiales de Shell</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Shell.py" line="2629" />
+      <source>Shell Special Commands</source>
+      <translation>Comandos Especiales de Shell</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2630" />
       <source>The shell supports these special commands:</source>
       <translation>La shell soporta estos comandos especiales:</translation>
     </message>
@@ -87799,198 +87799,198 @@
   <context>
     <name>TrayStarter</name>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="83" />
-      <location filename="../Tools/TrayStarter.py" line="65" />
+      <location filename="../Tools/TrayStarter.py" line="84" />
+      <location filename="../Tools/TrayStarter.py" line="66" />
       <source>eric tray starter</source>
       <translation>Lanzador de bandeja de sistema de eric</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="67" />
+      <location filename="../Tools/TrayStarter.py" line="68" />
       <source>Recent Projects</source>
       <translation>Proyectos recientes</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="72" />
+      <location filename="../Tools/TrayStarter.py" line="73" />
       <source>Recent Multiprojects</source>
       <translation>Multiproyectos Recientes</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="79" />
+      <location filename="../Tools/TrayStarter.py" line="80" />
       <source>Recent Files</source>
       <translation>Archivos recientes</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="89" />
+      <location filename="../Tools/TrayStarter.py" line="90" />
       <source>Show Versions</source>
       <translation>Mostrar Versiones</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="93" />
+      <location filename="../Tools/TrayStarter.py" line="94" />
       <source>QRegularExpression editor</source>
       <translation>Editor de QRegularExpression</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="95" />
+      <location filename="../Tools/TrayStarter.py" line="96" />
       <source>Python re editor</source>
       <translation>Editor de re de Python</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="100" />
+      <location filename="../Tools/TrayStarter.py" line="101" />
       <source>UI Previewer</source>
       <translation>Previsualizador de UI</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="105" />
+      <location filename="../Tools/TrayStarter.py" line="106" />
       <source>Translations Previewer</source>
       <translation>Previsualizador de Traducciones</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="109" />
+      <location filename="../Tools/TrayStarter.py" line="110" />
       <source>Testing</source>
       <translation>Testando</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="115" />
+      <location filename="../Tools/TrayStarter.py" line="116" />
       <source>Compare Files</source>
       <translation>Comparar Archivos</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="120" />
+      <location filename="../Tools/TrayStarter.py" line="121" />
       <source>Compare Files side by side</source>
       <translation>Comparar Archivos uno al lado de otro</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="127" />
+      <location filename="../Tools/TrayStarter.py" line="128" />
       <source>SQL Browser</source>
       <translation>Navegador SQL</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="134" />
+      <location filename="../Tools/TrayStarter.py" line="135" />
       <source>Snapshot</source>
       <translation>Captura de Pantalla</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="139" />
+      <location filename="../Tools/TrayStarter.py" line="140" />
       <source>Icon Editor</source>
       <translation>Editor de Iconos</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="144" />
+      <location filename="../Tools/TrayStarter.py" line="145" />
       <source>PDF Viewer</source>
       <translation>Visor de PDF</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="151" />
+      <location filename="../Tools/TrayStarter.py" line="152" />
       <source>Install Plugin</source>
       <translation>Instalar Plugin</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="156" />
+      <location filename="../Tools/TrayStarter.py" line="157" />
       <source>Uninstall Plugin</source>
       <translation>Desinstalar Plugin</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="161" />
+      <location filename="../Tools/TrayStarter.py" line="162" />
       <source>Plugin Repository</source>
       <translation>Repositorio de Plugins</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="168" />
+      <location filename="../Tools/TrayStarter.py" line="169" />
       <source>Virtual Environments</source>
       <translation>Entornos Virtuales</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="173" />
+      <location filename="../Tools/TrayStarter.py" line="174" />
       <source>PyPI Package Management</source>
       <translation>Gestión de Packages PyPI</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="180" />
+      <location filename="../Tools/TrayStarter.py" line="181" />
       <source>Preferences</source>
       <translation>Preferencias</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="187" />
+      <location filename="../Tools/TrayStarter.py" line="188" />
       <source>eric Mini Editor</source>
       <translation>Mini Editor de eric</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="192" />
+      <location filename="../Tools/TrayStarter.py" line="193" />
       <source>eric Hex Editor</source>
       <translation>Editor Hexadecimal de eric</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="197" />
+      <location filename="../Tools/TrayStarter.py" line="198" />
       <source>eric Shell Window</source>
       <translation>Ventana de Shell de eric</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="204" />
+      <location filename="../Tools/TrayStarter.py" line="205" />
       <source>eric Web Browser</source>
       <translation>Navegador Web de eric</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="209" />
+      <location filename="../Tools/TrayStarter.py" line="210" />
       <source>eric Web Browser (with QtHelp)</source>
       <translation>Navegador Web de eric (con QtHelp)</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="214" />
+      <location filename="../Tools/TrayStarter.py" line="215" />
       <source>eric Web Browser (Private Mode)</source>
       <translation>Navegador Web de eric (Modo Privado)</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="230" />
+      <location filename="../Tools/TrayStarter.py" line="231" />
       <source>eric IDE</source>
       <translation>eric IDE</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="236" />
+      <location filename="../Tools/TrayStarter.py" line="237" />
       <source>Configure Tray Starter</source>
       <translation>Configurar Lanzador de Bandeja de sistema</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="242" />
+      <location filename="../Tools/TrayStarter.py" line="243" />
       <source>Quit</source>
       <translation>Salir</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="330" />
-      <source>Process Generation Error</source>
-      <translation>Error de Generación de Proceso</translation>
-    </message>
-    <message>
       <location filename="../Tools/TrayStarter.py" line="331" />
+      <source>Process Generation Error</source>
+      <translation>Error de Generación de Proceso</translation>
+    </message>
+    <message>
+      <location filename="../Tools/TrayStarter.py" line="332" />
       <source>&lt;p&gt;Could not start the process.&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 proceso.&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="../Tools/TrayStarter.py" line="335" />
+      <location filename="../Tools/TrayStarter.py" line="336" />
       <source>OK</source>
       <translation>OK</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="609" />
+      <location filename="../Tools/TrayStarter.py" line="610" />
       <source>&lt;h3&gt;Version Numbers&lt;/h3&gt;&lt;table&gt;</source>
       <translation>&lt;h3&gt;Números de Versiones&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="644" />
+      <location filename="../Tools/TrayStarter.py" line="645" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Security)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Seguridad)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="661" />
+      <location filename="../Tools/TrayStarter.py" line="662" />
       <source>Desktop</source>
       <translation>Escritorio</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="665" />
+      <location filename="../Tools/TrayStarter.py" line="666" />
       <source>Session Type</source>
       <translation>Tipo de Sesión</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="668" />
+      <location filename="../Tools/TrayStarter.py" line="669" />
       <source>&lt;/table&gt;</source>
       <translation>&lt;/table&gt;</translation>
     </message>
@@ -89124,2190 +89124,2210 @@
   <context>
     <name>UserInterface</name>
     <message>
-      <location filename="../UI/UserInterface.py" line="308" />
+      <location filename="../UI/UserInterface.py" line="315" />
       <source>Initializing Basic Services...</source>
       <translation>Inicializando Servicios Básicos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="343" />
-      <source>Initializing Plugin Manager...</source>
-      <translation>Inicializando el administrador de Plugins...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="350" />
+      <source>Initializing Plugin Manager...</source>
+      <translation>Inicializando el administrador de Plugins...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="357" />
       <source>Generating Main User Interface...</source>
       <translation>Generando la interfaz general de usuario...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="408" />
+      <location filename="../UI/UserInterface.py" line="415" />
       <source>Setting up signal/slot-connections...</source>
       <translation>Configuracion de conexiones signal/slot...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="602" />
+      <location filename="../UI/UserInterface.py" line="608" />
       <source>Initializing Tools...</source>
       <translation>Inicializando Herramientas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="613" />
+      <location filename="../UI/UserInterface.py" line="619" />
       <source>Registering Objects...</source>
       <translation>Registrando Objetos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="647" />
-      <source>Initializing Actions...</source>
-      <translation>Inicializando Acciones...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="649" />
-      <source>Initializing Menus...</source>
-      <translation>Inicializando Menues...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="651" />
-      <source>Initializing Toolbars...</source>
-      <translation>Inicializando Barras de Herramientas...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="653" />
+      <source>Initializing Actions...</source>
+      <translation>Inicializando Acciones...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="655" />
+      <source>Initializing Menus...</source>
+      <translation>Inicializando Menues...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="657" />
+      <source>Initializing Toolbars...</source>
+      <translation>Inicializando Barras de Herramientas...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="659" />
       <source>Initializing Statusbar...</source>
       <translation>Inicializando Barra de estado...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="680" />
-      <source>Initializing Single Application Server...</source>
-      <translation>Incializando el servidor de aplicaciones simples...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="686" />
+      <source>Initializing Single Application Server...</source>
+      <translation>Incializando el servidor de aplicaciones simples...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="692" />
       <source>Initializing Plugins...</source>
       <translation>Inicializando Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="689" />
+      <location filename="../UI/UserInterface.py" line="695" />
       <source>Activating Plugins...</source>
       <translation>Activando Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="691" />
+      <location filename="../UI/UserInterface.py" line="697" />
       <source>Generating Plugins Toolbars...</source>
       <translation>Generando Barras de Herramientas para Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="694" />
+      <location filename="../UI/UserInterface.py" line="700" />
       <source>Cleaning Plugins Download Area...</source>
       <translation>Limpiar Área de Descarga de Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="704" />
+      <location filename="../UI/UserInterface.py" line="710" />
       <source>Restoring Toolbarmanager...</source>
       <translation>Restaurando Gestor de Barras de Herramientas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="712" />
+      <location filename="../UI/UserInterface.py" line="718" />
       <source>Setting View Profile...</source>
       <translation>Estableciendo Perfil de Vista...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="725" />
+      <location filename="../UI/UserInterface.py" line="731" />
       <source>Reading Tasks...</source>
       <translation>Leyendo tareas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="730" />
+      <location filename="../UI/UserInterface.py" line="736" />
       <source>Reading Templates...</source>
       <translation>Leyendo Plantillas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="735" />
+      <location filename="../UI/UserInterface.py" line="741" />
       <source>Starting Debugger...</source>
       <translation>Iniciando Depurador...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2195" />
-      <location filename="../UI/UserInterface.py" line="1086" />
+      <location filename="../UI/UserInterface.py" line="2201" />
+      <location filename="../UI/UserInterface.py" line="1092" />
       <source>Left Toolbox</source>
       <translation>Caja de herramientas de la Izquierda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2241" />
-      <location filename="../UI/UserInterface.py" line="1096" />
+      <location filename="../UI/UserInterface.py" line="2247" />
+      <location filename="../UI/UserInterface.py" line="1102" />
       <source>Horizontal Toolbox</source>
       <translation>Caja de Herramientas Horizontal</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2218" />
-      <location filename="../UI/UserInterface.py" line="1107" />
+      <location filename="../UI/UserInterface.py" line="2224" />
+      <location filename="../UI/UserInterface.py" line="1113" />
       <source>Right Toolbox</source>
       <translation>Caja de herramientas de la Derecha</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2037" />
-      <location filename="../UI/UserInterface.py" line="1301" />
-      <location filename="../UI/UserInterface.py" line="1117" />
+      <location filename="../UI/UserInterface.py" line="2043" />
+      <location filename="../UI/UserInterface.py" line="1307" />
+      <location filename="../UI/UserInterface.py" line="1123" />
       <source>Multiproject-Viewer</source>
       <translation>Visor de Multiproyecto</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2015" />
-      <location filename="../UI/UserInterface.py" line="1307" />
-      <location filename="../UI/UserInterface.py" line="1123" />
+      <location filename="../UI/UserInterface.py" line="2021" />
+      <location filename="../UI/UserInterface.py" line="1313" />
+      <location filename="../UI/UserInterface.py" line="1129" />
       <source>Project-Viewer</source>
       <translation>Visor de Proyecto</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2577" />
-      <location filename="../UI/UserInterface.py" line="2576" />
-      <location filename="../UI/UserInterface.py" line="1314" />
-      <location filename="../UI/UserInterface.py" line="1130" />
+      <location filename="../UI/UserInterface.py" line="2583" />
+      <location filename="../UI/UserInterface.py" line="2582" />
+      <location filename="../UI/UserInterface.py" line="1320" />
+      <location filename="../UI/UserInterface.py" line="1136" />
       <source>Find/Replace In Files</source>
       <translation>Buscar/Reemplazar en Archivos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2600" />
-      <location filename="../UI/UserInterface.py" line="2599" />
-      <location filename="../UI/UserInterface.py" line="1321" />
-      <location filename="../UI/UserInterface.py" line="1137" />
+      <location filename="../UI/UserInterface.py" line="2606" />
+      <location filename="../UI/UserInterface.py" line="2605" />
+      <location filename="../UI/UserInterface.py" line="1327" />
+      <location filename="../UI/UserInterface.py" line="1143" />
       <source>Find File</source>
       <translation>Buscar archivo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1327" />
-      <location filename="../UI/UserInterface.py" line="1143" />
+      <location filename="../UI/UserInterface.py" line="1333" />
+      <location filename="../UI/UserInterface.py" line="1149" />
       <source>VCS Status</source>
       <translation>Estado de VCS</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2170" />
-      <location filename="../UI/UserInterface.py" line="1334" />
-      <location filename="../UI/UserInterface.py" line="1150" />
+      <location filename="../UI/UserInterface.py" line="2176" />
+      <location filename="../UI/UserInterface.py" line="1340" />
+      <location filename="../UI/UserInterface.py" line="1156" />
       <source>Template-Viewer</source>
       <translation>Visor de Plantillas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2103" />
-      <location filename="../UI/UserInterface.py" line="1341" />
-      <location filename="../UI/UserInterface.py" line="1157" />
+      <location filename="../UI/UserInterface.py" line="2109" />
+      <location filename="../UI/UserInterface.py" line="1347" />
+      <location filename="../UI/UserInterface.py" line="1163" />
       <source>File-Browser</source>
       <translation>Explorador de archivos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1348" />
-      <location filename="../UI/UserInterface.py" line="1164" />
+      <location filename="../UI/UserInterface.py" line="1354" />
+      <location filename="../UI/UserInterface.py" line="1170" />
       <source>Symbols</source>
       <translation>Símbolos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2059" />
+      <location filename="../UI/UserInterface.py" line="2065" />
+      <location filename="../UI/UserInterface.py" line="1376" />
       <location filename="../UI/UserInterface.py" line="1370" />
-      <location filename="../UI/UserInterface.py" line="1364" />
-      <location filename="../UI/UserInterface.py" line="1174" />
+      <location filename="../UI/UserInterface.py" line="1180" />
       <source>Debug-Viewer</source>
       <translation>Visor Depurador</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2431" />
-      <location filename="../UI/UserInterface.py" line="2430" />
-      <location filename="../UI/UserInterface.py" line="1377" />
-      <location filename="../UI/UserInterface.py" line="1181" />
+      <location filename="../UI/UserInterface.py" line="2437" />
+      <location filename="../UI/UserInterface.py" line="2436" />
+      <location filename="../UI/UserInterface.py" line="1383" />
+      <location filename="../UI/UserInterface.py" line="1187" />
       <source>Code Documentation Viewer</source>
       <translation>Visor de Documentación de Código</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2646" />
-      <location filename="../UI/UserInterface.py" line="2645" />
-      <location filename="../UI/UserInterface.py" line="1384" />
-      <location filename="../UI/UserInterface.py" line="1188" />
+      <location filename="../UI/UserInterface.py" line="2652" />
+      <location filename="../UI/UserInterface.py" line="2651" />
+      <location filename="../UI/UserInterface.py" line="1390" />
+      <location filename="../UI/UserInterface.py" line="1194" />
       <source>Help Viewer</source>
       <translation>Visor de Ayuda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3550" />
-      <location filename="../UI/UserInterface.py" line="2526" />
-      <location filename="../UI/UserInterface.py" line="2525" />
-      <location filename="../UI/UserInterface.py" line="1390" />
-      <location filename="../UI/UserInterface.py" line="1194" />
+      <location filename="../UI/UserInterface.py" line="3576" />
+      <location filename="../UI/UserInterface.py" line="2532" />
+      <location filename="../UI/UserInterface.py" line="2531" />
+      <location filename="../UI/UserInterface.py" line="1396" />
+      <location filename="../UI/UserInterface.py" line="1200" />
       <source>Plugin Repository</source>
       <translation>Repositorio de Plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2550" />
-      <location filename="../UI/UserInterface.py" line="2549" />
-      <location filename="../UI/UserInterface.py" line="1396" />
-      <location filename="../UI/UserInterface.py" line="1200" />
+      <location filename="../UI/UserInterface.py" line="2556" />
+      <location filename="../UI/UserInterface.py" line="2555" />
+      <location filename="../UI/UserInterface.py" line="1402" />
+      <location filename="../UI/UserInterface.py" line="1206" />
       <source>Virtual Environments</source>
       <translation>Entornos Virtuales</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2458" />
-      <location filename="../UI/UserInterface.py" line="2457" />
-      <location filename="../UI/UserInterface.py" line="1401" />
-      <location filename="../UI/UserInterface.py" line="1205" />
+      <location filename="../UI/UserInterface.py" line="2464" />
+      <location filename="../UI/UserInterface.py" line="2463" />
+      <location filename="../UI/UserInterface.py" line="1407" />
+      <location filename="../UI/UserInterface.py" line="1211" />
       <source>PyPI</source>
       <translation>PyPI</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2480" />
-      <location filename="../UI/UserInterface.py" line="2479" />
-      <location filename="../UI/UserInterface.py" line="1408" />
-      <location filename="../UI/UserInterface.py" line="1210" />
+      <location filename="../UI/UserInterface.py" line="2486" />
+      <location filename="../UI/UserInterface.py" line="2485" />
+      <location filename="../UI/UserInterface.py" line="1414" />
+      <location filename="../UI/UserInterface.py" line="1216" />
       <source>Conda</source>
       <translation>Conda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1415" />
-      <location filename="../UI/UserInterface.py" line="1217" />
+      <location filename="../UI/UserInterface.py" line="1421" />
+      <location filename="../UI/UserInterface.py" line="1223" />
       <source>Cooperation</source>
       <translation>Cooperación</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2358" />
-      <location filename="../UI/UserInterface.py" line="1419" />
-      <location filename="../UI/UserInterface.py" line="1222" />
+      <location filename="../UI/UserInterface.py" line="2364" />
+      <location filename="../UI/UserInterface.py" line="1425" />
+      <location filename="../UI/UserInterface.py" line="1228" />
       <source>IRC</source>
       <translation>IRC</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2502" />
-      <location filename="../UI/UserInterface.py" line="2501" />
-      <location filename="../UI/UserInterface.py" line="1425" />
-      <location filename="../UI/UserInterface.py" line="1229" />
+      <location filename="../UI/UserInterface.py" line="2508" />
+      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="1431" />
+      <location filename="../UI/UserInterface.py" line="1235" />
       <source>MicroPython</source>
       <translation>MicroPython</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2081" />
-      <location filename="../UI/UserInterface.py" line="1433" />
-      <location filename="../UI/UserInterface.py" line="1237" />
+      <location filename="../UI/UserInterface.py" line="2087" />
+      <location filename="../UI/UserInterface.py" line="1439" />
+      <location filename="../UI/UserInterface.py" line="1243" />
       <source>Shell</source>
       <translation>Shell</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2147" />
-      <location filename="../UI/UserInterface.py" line="1439" />
-      <location filename="../UI/UserInterface.py" line="1241" />
+      <location filename="../UI/UserInterface.py" line="2153" />
+      <location filename="../UI/UserInterface.py" line="1445" />
+      <location filename="../UI/UserInterface.py" line="1247" />
       <source>Task-Viewer</source>
       <translation>Visor de Tareas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2125" />
-      <location filename="../UI/UserInterface.py" line="1445" />
-      <location filename="../UI/UserInterface.py" line="1245" />
+      <location filename="../UI/UserInterface.py" line="2131" />
+      <location filename="../UI/UserInterface.py" line="1451" />
+      <location filename="../UI/UserInterface.py" line="1251" />
       <source>Log-Viewer</source>
       <translation>Visor Log</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1452" />
-      <location filename="../UI/UserInterface.py" line="1252" />
+      <location filename="../UI/UserInterface.py" line="1458" />
+      <location filename="../UI/UserInterface.py" line="1258" />
       <source>Numbers</source>
       <translation>Números</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1827" />
+      <location filename="../UI/UserInterface.py" line="1833" />
       <source>{0} - Passive Mode</source>
       <translation>{0} - Modo Pasivo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1836" />
-      <location filename="../UI/UserInterface.py" line="1830" />
-      <source>{0} - {1} - Passive Mode</source>
-      <translation>{0} - {1} - Modo Pasivo</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1842" />
+      <location filename="../UI/UserInterface.py" line="1836" />
+      <source>{0} - {1} - Passive Mode</source>
+      <translation>{0} - {1} - Modo Pasivo</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1848" />
       <source>{0} - {1} - {2} - Passive Mode</source>
       <translation>{0} - {1} - {2} - Modo Pasivo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1868" />
+      <location filename="../UI/UserInterface.py" line="1874" />
       <source>Quit</source>
       <translation>Salir</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1870" />
-      <source>&amp;Quit</source>
-      <translation>&amp;Salir</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1871" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation>Ctrl+Q</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1876" />
+      <source>&amp;Quit</source>
+      <translation>&amp;Salir</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1877" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation>Ctrl+Q</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1882" />
       <source>Quit the IDE</source>
       <translation>Salir del IDE</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1878" />
+      <location filename="../UI/UserInterface.py" line="1884" />
       <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="1892" />
-      <location filename="../UI/UserInterface.py" line="1890" />
+      <location filename="../UI/UserInterface.py" line="1898" />
+      <location filename="../UI/UserInterface.py" line="1896" />
       <source>Restart</source>
       <translation>Reiniciar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1893" />
+      <location filename="../UI/UserInterface.py" line="1899" />
       <source>Ctrl+Shift+Q</source>
       <comment>File|Quit</comment>
       <translation>Ctrl+Shift+Q</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1898" />
+      <location filename="../UI/UserInterface.py" line="1904" />
       <source>Restart the IDE</source>
       <translation>Reiniciar la IDE</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1900" />
+      <location filename="../UI/UserInterface.py" line="1906" />
       <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="1924" />
+      <location filename="../UI/UserInterface.py" line="1917" />
+      <source>Save session</source>
+      <translation>Guardar sesión</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="1918" />
-      <location filename="../UI/UserInterface.py" line="1911" />
-      <source>Save session</source>
-      <translation>Guardar sesión</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1912" />
       <source>Save session...</source>
       <translation>Guardar sesión...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1920" />
+      <location filename="../UI/UserInterface.py" line="1926" />
       <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="7729" />
-      <location filename="../UI/UserInterface.py" line="1937" />
-      <location filename="../UI/UserInterface.py" line="1930" />
+      <location filename="../UI/UserInterface.py" line="7768" />
+      <location filename="../UI/UserInterface.py" line="1943" />
+      <location filename="../UI/UserInterface.py" line="1936" />
       <source>Load session</source>
       <translation>Cargar sesión</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1931" />
+      <location filename="../UI/UserInterface.py" line="1937" />
       <source>Load session...</source>
       <translation>Cargar sesión...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1939" />
+      <location filename="../UI/UserInterface.py" line="1945" />
       <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="1949" />
+      <location filename="../UI/UserInterface.py" line="1955" />
       <source>New Window</source>
       <translation>Nueva Ventana</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1951" />
-      <source>New &amp;Window</source>
-      <translation>Nueva &amp;Ventana</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1952" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation>Ctrl+Shift+N</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1957" />
+      <source>New &amp;Window</source>
+      <translation>Nueva &amp;Ventana</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1958" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation>Ctrl+Shift+N</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1963" />
       <source>Open a new eric instance</source>
       <translation>Abrir una nueva instancia de eric</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1959" />
+      <location filename="../UI/UserInterface.py" line="1965" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nueva Ventana&lt;/b&gt;&lt;p&gt;Abre una nueva instancia del IDE eric.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1973" />
-      <location filename="../UI/UserInterface.py" line="1971" />
+      <location filename="../UI/UserInterface.py" line="1979" />
+      <location filename="../UI/UserInterface.py" line="1977" />
       <source>Edit Profile</source>
       <translation>Perfil de Edición</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1980" />
+      <location filename="../UI/UserInterface.py" line="1986" />
       <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="1982" />
+      <location filename="../UI/UserInterface.py" line="1988" />
       <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Perfil de Edición&lt;/b&gt;&lt;p&gt;Activar "Perfil de Vista de Edición". Las ventanas que se muestran, si este perfil esta activo, pueden ser configuradas con el diálogo "Ver Configuración de Perfil".&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1995" />
-      <location filename="../UI/UserInterface.py" line="1993" />
+      <location filename="../UI/UserInterface.py" line="2001" />
+      <location filename="../UI/UserInterface.py" line="1999" />
       <source>Debug Profile</source>
       <translation>Perfil de Depuración</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2002" />
+      <location filename="../UI/UserInterface.py" line="2008" />
       <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="2004" />
+      <location filename="../UI/UserInterface.py" line="2010" />
       <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Perfil de Depuración&lt;/b&gt;&lt;p&gt;Activar "Perfil de Vista de Depuracion". Las ventanas que se muestran, si este perfil esta activo, pueden ser configuradas con el diálogo "Ver Configuración de Perfil".&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2016" />
+      <location filename="../UI/UserInterface.py" line="2022" />
       <source>&amp;Project-Viewer</source>
       <translation>Visor de &amp;Proyecto</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2017" />
-      <source>Alt+Shift+P</source>
-      <translation>Alt+Shift+P</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2023" />
+      <source>Alt+Shift+P</source>
+      <translation>Alt+Shift+P</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2029" />
       <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="2026" />
+      <location filename="../UI/UserInterface.py" line="2032" />
       <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="2038" />
+      <location filename="../UI/UserInterface.py" line="2044" />
       <source>&amp;Multiproject-Viewer</source>
       <translation>Visor de &amp;Multiproyecto</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2039" />
-      <source>Alt+Shift+M</source>
-      <translation>Alt+Shift+M</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2045" />
+      <source>Alt+Shift+M</source>
+      <translation>Alt+Shift+M</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2051" />
       <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="2048" />
+      <location filename="../UI/UserInterface.py" line="2054" />
       <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="2060" />
+      <location filename="../UI/UserInterface.py" line="2066" />
       <source>&amp;Debug-Viewer</source>
       <translation>Visor &amp;Depurador</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2061" />
-      <source>Alt+Shift+D</source>
-      <translation>Alt+Shift+D</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2067" />
+      <source>Alt+Shift+D</source>
+      <translation>Alt+Shift+D</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2073" />
       <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="2070" />
+      <location filename="../UI/UserInterface.py" line="2076" />
       <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="2082" />
+      <location filename="../UI/UserInterface.py" line="2088" />
       <source>&amp;Shell</source>
       <translation>&amp;Shell</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2083" />
-      <source>Alt+Shift+S</source>
-      <translation>Alt+Shift+S</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2089" />
+      <source>Alt+Shift+S</source>
+      <translation>Alt+Shift+S</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2095" />
       <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="2092" />
+      <location filename="../UI/UserInterface.py" line="2098" />
       <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="2104" />
+      <location filename="../UI/UserInterface.py" line="2110" />
       <source>&amp;File-Browser</source>
       <translation>Na&amp;vegador de archivos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2105" />
-      <source>Alt+Shift+F</source>
-      <translation>Alt+Shift+F</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2111" />
+      <source>Alt+Shift+F</source>
+      <translation>Alt+Shift+F</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2117" />
       <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="2114" />
+      <location filename="../UI/UserInterface.py" line="2120" />
       <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="2126" />
+      <location filename="../UI/UserInterface.py" line="2132" />
       <source>Lo&amp;g-Viewer</source>
       <translation>Visor de Lo&amp;g</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2127" />
-      <source>Alt+Shift+G</source>
-      <translation>Alt+Shift+G</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2133" />
+      <source>Alt+Shift+G</source>
+      <translation>Alt+Shift+G</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2139" />
       <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="2136" />
+      <location filename="../UI/UserInterface.py" line="2142" />
       <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="2148" />
+      <location filename="../UI/UserInterface.py" line="2154" />
       <source>&amp;Task-Viewer</source>
       <translation>Visor de &amp;Tareas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2149" />
-      <source>Alt+Shift+T</source>
-      <translation>Alt+Shift+T</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2155" />
+      <source>Alt+Shift+T</source>
+      <translation>Alt+Shift+T</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2161" />
       <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="2158" />
+      <location filename="../UI/UserInterface.py" line="2164" />
       <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="2171" />
+      <location filename="../UI/UserInterface.py" line="2177" />
       <source>Templ&amp;ate-Viewer</source>
       <translation>Visor de Pl&amp;antillas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2172" />
-      <source>Alt+Shift+A</source>
-      <translation>Alt+Shift+A</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2178" />
+      <source>Alt+Shift+A</source>
+      <translation>Alt+Shift+A</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2184" />
       <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="2181" />
+      <location filename="../UI/UserInterface.py" line="2187" />
       <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="2196" />
+      <location filename="../UI/UserInterface.py" line="2202" />
       <source>&amp;Left Toolbox</source>
       <translation>Caja de herramientas de &amp;la Izquierda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2203" />
+      <location filename="../UI/UserInterface.py" line="2209" />
       <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="2205" />
+      <location filename="../UI/UserInterface.py" line="2211" />
       <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="2219" />
+      <location filename="../UI/UserInterface.py" line="2225" />
       <source>&amp;Right Toolbox</source>
       <translation>Caja de herramientas de la De&amp;recha</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2226" />
+      <location filename="../UI/UserInterface.py" line="2232" />
       <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="2228" />
+      <location filename="../UI/UserInterface.py" line="2234" />
       <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="2242" />
+      <location filename="../UI/UserInterface.py" line="2248" />
       <source>&amp;Horizontal Toolbox</source>
       <translation>Caja de Herramientas &amp;Horizontal</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2249" />
+      <location filename="../UI/UserInterface.py" line="2255" />
       <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="2251" />
+      <location filename="../UI/UserInterface.py" line="2257" />
       <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="2264" />
+      <location filename="../UI/UserInterface.py" line="2270" />
       <source>Left Sidebar</source>
       <translation>Barra Lateral a la Izquierda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2265" />
+      <location filename="../UI/UserInterface.py" line="2271" />
       <source>&amp;Left Sidebar</source>
       <translation>Barra &amp;Lateral a la Izquierda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2272" />
+      <location filename="../UI/UserInterface.py" line="2278" />
       <source>Toggle the left sidebar window</source>
       <translation>Conmutar la barra lateral a la izquierda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2274" />
+      <location filename="../UI/UserInterface.py" line="2280" />
       <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="2287" />
+      <location filename="../UI/UserInterface.py" line="2293" />
       <source>Right Sidebar</source>
       <translation>Barra Lateral a la Derecha</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2288" />
+      <location filename="../UI/UserInterface.py" line="2294" />
       <source>&amp;Right Sidebar</source>
       <translation>Ba&amp;rra Lateral a la Derecha</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2295" />
+      <location filename="../UI/UserInterface.py" line="2301" />
       <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="2297" />
+      <location filename="../UI/UserInterface.py" line="2303" />
       <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="2310" />
+      <location filename="../UI/UserInterface.py" line="2316" />
       <source>Bottom Sidebar</source>
       <translation>Barra Lateral Inferior</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2311" />
+      <location filename="../UI/UserInterface.py" line="2317" />
       <source>&amp;Bottom Sidebar</source>
       <translation>&amp;Barra Lateral Inferior</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2318" />
+      <location filename="../UI/UserInterface.py" line="2324" />
       <source>Toggle the bottom sidebar window</source>
       <translation>Conmutar la barra lateral inferior</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2320" />
+      <location filename="../UI/UserInterface.py" line="2326" />
       <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="2333" />
+      <location filename="../UI/UserInterface.py" line="2339" />
       <source>Cooperation-Viewer</source>
       <translation>Visor de Cooperación</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2334" />
+      <location filename="../UI/UserInterface.py" line="2340" />
       <source>Co&amp;operation-Viewer</source>
       <translation>Visor de Co&amp;operación</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2335" />
-      <source>Alt+Shift+O</source>
-      <translation>Alt+Shift+O</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2341" />
+      <source>Alt+Shift+O</source>
+      <translation>Alt+Shift+O</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2347" />
       <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="2344" />
+      <location filename="../UI/UserInterface.py" line="2350" />
       <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="2359" />
+      <location filename="../UI/UserInterface.py" line="2365" />
       <source>&amp;IRC</source>
       <translation>&amp;IRC</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2360" />
-      <source>Ctrl+Alt+Shift+I</source>
-      <translation>Ctrl+Alt+Shift+I</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2366" />
+      <source>Ctrl+Alt+Shift+I</source>
+      <translation>Ctrl+Alt+Shift+I</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2372" />
       <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="2369" />
+      <location filename="../UI/UserInterface.py" line="2375" />
       <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="2380" />
+      <location filename="../UI/UserInterface.py" line="2386" />
       <source>Symbols-Viewer</source>
       <translation>Visor de Símbolos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2381" />
+      <location filename="../UI/UserInterface.py" line="2387" />
       <source>S&amp;ymbols-Viewer</source>
       <translation>Visor de S&amp;ímbolos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2382" />
-      <source>Alt+Shift+Y</source>
-      <translation>Alt+Shift+Y</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2388" />
+      <source>Alt+Shift+Y</source>
+      <translation>Alt+Shift+Y</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2394" />
       <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="2391" />
+      <location filename="../UI/UserInterface.py" line="2397" />
       <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="2405" />
+      <location filename="../UI/UserInterface.py" line="2411" />
       <source>Numbers-Viewer</source>
       <translation>Visor de Números</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2406" />
+      <location filename="../UI/UserInterface.py" line="2412" />
       <source>Num&amp;bers-Viewer</source>
       <translation>Visor de Nú&amp;meros</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2407" />
-      <source>Alt+Shift+B</source>
-      <translation>Alt+Shift+B</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2413" />
+      <source>Alt+Shift+B</source>
+      <translation>Alt+Shift+B</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2419" />
       <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="2416" />
+      <location filename="../UI/UserInterface.py" line="2422" />
       <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="2432" />
-      <source>Ctrl+Alt+Shift+D</source>
-      <translation>Ctrl+Alt+Shift+D</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2438" />
+      <source>Ctrl+Alt+Shift+D</source>
+      <translation>Ctrl+Alt+Shift+D</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2444" />
       <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="2443" />
+      <location filename="../UI/UserInterface.py" line="2449" />
       <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="2459" />
-      <source>Ctrl+Alt+Shift+P</source>
-      <translation>Ctrl+Alt+Shift+P</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2465" />
+      <source>Ctrl+Alt+Shift+P</source>
+      <translation>Ctrl+Alt+Shift+P</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2471" />
       <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="2468" />
+      <location filename="../UI/UserInterface.py" line="2474" />
       <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="2481" />
-      <source>Ctrl+Alt+Shift+C</source>
-      <translation>Ctrl+Alt+Shift+C</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2487" />
+      <source>Ctrl+Alt+Shift+C</source>
+      <translation>Ctrl+Alt+Shift+C</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2493" />
       <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="2490" />
+      <location filename="../UI/UserInterface.py" line="2496" />
       <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="2503" />
-      <source>Ctrl+Alt+Shift+M</source>
-      <translation>Ctrl+Alt+Shift+M</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2509" />
+      <source>Ctrl+Alt+Shift+M</source>
+      <translation>Ctrl+Alt+Shift+M</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2515" />
       <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="2512" />
+      <location filename="../UI/UserInterface.py" line="2518" />
       <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="2527" />
-      <source>Ctrl+Alt+Shift+R</source>
-      <translation>Ctrl+Alt+Shift+R</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2533" />
+      <source>Ctrl+Alt+Shift+R</source>
+      <translation>Ctrl+Alt+Shift+R</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2539" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation>Cambiar el foco de entrada a la ventana de Repositorio de Plugins.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2536" />
+      <location filename="../UI/UserInterface.py" line="2542" />
       <source>&lt;b&gt;Plugin Repository&lt;/b&gt;&lt;p&gt;This switches the input focus to the Plugin Repository window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Repositorio de Plugins&lt;/b&gt;&lt;p&gt;Cambia el foco de entrada a la ventana de Repositorio de Plugins.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2551" />
-      <source>Ctrl+Alt+V</source>
-      <translation>Ctrl+Alt+V</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2557" />
+      <source>Ctrl+Alt+V</source>
+      <translation>Ctrl+Alt+V</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2563" />
       <source>Switch the input focus to the Virtual Environments Manager window.</source>
       <translation>Cambiar el foco de entrada a la ventana de Gestión de Entornos Virtuales.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2562" />
+      <location filename="../UI/UserInterface.py" line="2568" />
       <source>&lt;b&gt;Virtual Environments&lt;/b&gt;&lt;p&gt;This switches the input focus to the Virtual Environments Manager window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Entornos Virtuales&lt;/b&gt;&lt;p&gt;Cambia el foco de entrada a la ventana de Gestión de Entornos Virtuales.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2578" />
-      <source>Ctrl+Alt+Shift+F</source>
-      <translation>Ctrl+Alt+Shift+F</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2584" />
+      <source>Ctrl+Alt+Shift+F</source>
+      <translation>Ctrl+Alt+Shift+F</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2590" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation>Cambiar el foco de entrada a la ventana de Buscar/Reemplazar en Archivos.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2587" />
+      <location filename="../UI/UserInterface.py" line="2593" />
       <source>&lt;b&gt;Find/Replace In Files&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find/Replace In Files window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Buscar/Reemplazar en Archivos&lt;/b&gt;&lt;p&gt;Cambia el foco de entrada a la ventana de Buscar/Reemplazar en Archivos.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2601" />
-      <source>Ctrl+Alt+Shift+L</source>
-      <translation>Ctrl+Alt+Shift+L</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2607" />
+      <source>Ctrl+Alt+Shift+L</source>
+      <translation>Ctrl+Alt+Shift+L</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2613" />
       <source>Switch the input focus to the Find File window.</source>
       <translation>Cambiar el foco de entrada a la ventana de Buscar Archivo.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2610" />
+      <location filename="../UI/UserInterface.py" line="2616" />
       <source>&lt;b&gt;Find File&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find File window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Buscar Archivo&lt;/b&gt;&lt;p&gt;Cambia el foco de entrada a la ventana de Buscar Archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2624" />
-      <location filename="../UI/UserInterface.py" line="2623" />
+      <location filename="../UI/UserInterface.py" line="2630" />
+      <location filename="../UI/UserInterface.py" line="2629" />
       <source>VCS Status List</source>
       <translation>Lista de Estado de VCS</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2625" />
-      <source>Alt+Shift+V</source>
-      <translation>Alt+Shift+V</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2631" />
+      <source>Alt+Shift+V</source>
+      <translation>Alt+Shift+V</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2637" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation>Cambiar el foco de entrada a la ventana de Lista de Estado de VCS.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2634" />
+      <location filename="../UI/UserInterface.py" line="2640" />
       <source>&lt;b&gt;VCS Status List&lt;/b&gt;&lt;p&gt;This switches the input focus to the VCS Status List window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Lista de Estado de VCS&lt;/b&gt;&lt;p&gt;Cambia el foco de entrada a la ventana de Lista de Estado de VCS.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2647" />
-      <source>Alt+Shift+H</source>
-      <translation>Alt+Shift+H</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2653" />
+      <source>Alt+Shift+H</source>
+      <translation>Alt+Shift+H</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2659" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation>Cambiar el foco de input a la ventana embebida de Visor de Ayuda.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2656" />
+      <location filename="../UI/UserInterface.py" line="2662" />
       <source>&lt;b&gt;Help Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Visor de Ayuda&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana embebida de Visor de Ayuda. Mostrará archivos de ayuda HTML y ayuda de las colecciones de ayuda de Qt.&lt;/p&gt;&lt;p&gt;Si se llama con una palabra seleccionada, dicha palabra se buscará en la colección de ayuda de Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2669" />
+      <location filename="../UI/UserInterface.py" line="2675" />
       <source>What's This?</source>
       <translation>¿Qué es esto?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2671" />
-      <source>&amp;What's This?</source>
-      <translation>¿&amp;Qué es esto?</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2672" />
-      <source>Shift+F1</source>
-      <translation>Shift+F1</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2677" />
+      <source>&amp;What's This?</source>
+      <translation>¿&amp;Qué es esto?</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2678" />
+      <source>Shift+F1</source>
+      <translation>Shift+F1</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2683" />
       <source>Context sensitive help</source>
       <translation>Ayuda sensible al contexto</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2679" />
+      <location filename="../UI/UserInterface.py" line="2685" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Mostrar ayuda sensible al contexto&lt;/b&gt;&lt;p&gt;En modo ¿Qué es esto? el puntero del ratón muestra una flecha con un interrogante, y se puede hacer click en elementos de la interfaz gráfica para obtener una descripción corta de lo que hacen y de cómo se utilizan. En los diálogos, se puede acceder a esta característica utilizando el botón de ayuda de contexto en la barra de título.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2692" />
+      <location filename="../UI/UserInterface.py" line="2698" />
       <source>Helpviewer</source>
       <translation>Visor de Ayuda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2694" />
-      <source>&amp;Helpviewer...</source>
-      <translation>Visor de &amp;Ayuda...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2695" />
-      <source>F1</source>
-      <translation>F1</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2700" />
+      <source>&amp;Helpviewer...</source>
+      <translation>Visor de &amp;Ayuda...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2701" />
+      <source>F1</source>
+      <translation>F1</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2706" />
       <source>Open the helpviewer window</source>
       <translation>Abrir la ventana del visor de ayuda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2702" />
+      <location filename="../UI/UserInterface.py" line="2708" />
       <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Visor de Ayuda&lt;/b&gt;&lt;p&gt;Mostrar el navegador web de eric web. Esta ventana mostraá archivos de ayuda HTML y ayuda de las colecciones de ayuda de Qt. Tiene la capacidad de navegar a enlaces, establecer marcadores, imprimir la ayuda mostrada y algunas otras características. Se puede usar también para navegar por internet.&lt;/p&gt;&lt;p&gt;Si se llama con una palabra seleccionada, dicha palabra se busca ne la colección de ayuda de Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2722" />
+      <location filename="../UI/UserInterface.py" line="2728" />
       <source>Show Versions</source>
       <translation>Mostrar Versiones</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2723" />
-      <source>Show &amp;Versions</source>
-      <translation>Mostrar Versione&amp;s</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2729" />
+      <source>Show &amp;Versions</source>
+      <translation>Mostrar Versione&amp;s</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2735" />
       <source>Display version information</source>
       <translation>Mostrar información de versiones</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2731" />
+      <location filename="../UI/UserInterface.py" line="2737" />
       <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="2743" />
+      <source>Copy Versions</source>
+      <translation>Copiar Versiones</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2744" />
-      <location filename="../UI/UserInterface.py" line="2737" />
+      <source>&amp;Copy Versions</source>
+      <translation>&amp;Copiar Versiones</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2751" />
+      <source>Copy version information to the clipboard</source>
+      <translation>Copiar información de versiones al portapapeles</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2754" />
+      <source>&lt;b&gt;Copy Versions&lt;/b&gt;&lt;p&gt;This generates version information and copies it to the clipboard.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Copiar Versiones&lt;/b&gt;&lt;p&gt;Esto genera información de versiones y la copia al portapapeles.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2770" />
+      <location filename="../UI/UserInterface.py" line="2763" />
       <source>Show Error Log</source>
       <translation>Mostrar Registro de Errores</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2738" />
-      <source>Show Error &amp;Log...</source>
-      <translation>Mostrar &amp;Registro de Errores...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2746" />
-      <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="2755" />
-      <source>Show Install Info</source>
-      <translation>Mostrar Información de Instalación</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2756" />
-      <source>Show Install &amp;Info...</source>
-      <translation>Mostrar &amp;Información de Instalación...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2762" />
-      <source>Show Installation Information</source>
-      <translation>Mostrar Información de Instalación</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2764" />
+      <source>Show Error &amp;Log...</source>
+      <translation>Mostrar &amp;Registro de Errores...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2772" />
+      <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="2781" />
+      <source>Show Install Info</source>
+      <translation>Mostrar Información de Instalación</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2782" />
+      <source>Show Install &amp;Info...</source>
+      <translation>Mostrar &amp;Información de Instalación...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2788" />
+      <source>Show Installation Information</source>
+      <translation>Mostrar Información de Instalación</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2790" />
       <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Mostrar información de instalación...&lt;/b&gt;&lt;p&gt;Abre un diálogo que muestra información sobre el proceso de instalación.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4634" />
-      <location filename="../UI/UserInterface.py" line="2774" />
+      <location filename="../UI/UserInterface.py" line="4673" />
+      <location filename="../UI/UserInterface.py" line="2800" />
       <source>Report Bug</source>
       <translation>Enviar informe de bugs</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2774" />
+      <location filename="../UI/UserInterface.py" line="2800" />
       <source>Report &amp;Bug...</source>
       <translation>Enviar informe de &amp;bugs...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2776" />
+      <location filename="../UI/UserInterface.py" line="2802" />
       <source>Report a bug</source>
       <translation>Enviar informe de bugs</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2778" />
+      <location filename="../UI/UserInterface.py" line="2804" />
       <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="2784" />
+      <location filename="../UI/UserInterface.py" line="2810" />
       <source>Request Feature</source>
       <translation>Solicitar nueva característica</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2785" />
+      <location filename="../UI/UserInterface.py" line="2811" />
       <source>Request &amp;Feature...</source>
       <translation>Solicitar nueva &amp;característica...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2791" />
+      <location filename="../UI/UserInterface.py" line="2817" />
       <source>Send a feature request</source>
       <translation>Enviar una solicitud de nueva característica</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2819" />
       <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="4094" />
-      <location filename="../UI/UserInterface.py" line="2804" />
+      <location filename="../UI/UserInterface.py" line="4121" />
+      <location filename="../UI/UserInterface.py" line="2830" />
       <source>Testing</source>
       <translation>Testado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2806" />
+      <location filename="../UI/UserInterface.py" line="2832" />
       <source>&amp;Testing...</source>
       <translation>&amp;Testado...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2812" />
+      <location filename="../UI/UserInterface.py" line="2838" />
       <source>Start the testing dialog</source>
       <translation>Iniciar el diálogo de testado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2814" />
+      <location filename="../UI/UserInterface.py" line="2840" />
       <source>&lt;b&gt;Testing&lt;/b&gt;&lt;p&gt;Perform test runs. The dialog gives the ability to select and run a test suite or auto discover them.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Testado&lt;/b&gt;&lt;p&gt;Llevar a cabo ejecuciones de test. El diálogo proporciona la capacidad de seleccionar y ejecutar una suite de tests o de autodescubrirlas.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2825" />
+      <location filename="../UI/UserInterface.py" line="2851" />
       <source>Restart Last Test</source>
       <translation>Reiniciar Último Test</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2827" />
+      <location filename="../UI/UserInterface.py" line="2853" />
       <source>&amp;Restart Last Test...</source>
       <translation>&amp;Reiniciar Último Test...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2833" />
+      <location filename="../UI/UserInterface.py" line="2859" />
       <source>Restarts the last test</source>
       <translation>Reinicia el último test</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2835" />
+      <location filename="../UI/UserInterface.py" line="2861" />
       <source>&lt;b&gt;Restart Last Test&lt;/b&gt;&lt;p&gt;Restarts the test performed last.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Reiniciar Último Test&lt;/b&gt;&lt;p&gt;Reinicia el último test llevado a cabo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2845" />
+      <location filename="../UI/UserInterface.py" line="2871" />
       <source>Rerun Failed Tests</source>
       <translation>Re-ejecutar Tests Fallidos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2847" />
+      <location filename="../UI/UserInterface.py" line="2873" />
       <source>Rerun Failed Tests...</source>
       <translation>Re-ejecutar Tests Fallidos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2854" />
+      <location filename="../UI/UserInterface.py" line="2880" />
       <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="2857" />
+      <location filename="../UI/UserInterface.py" line="2883" />
       <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last test run.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Re-ejecutar Tests Fallidos&lt;/b&gt;&lt;p&gt;Re-ejecutar todos los tests que fallaron durante la última ejecución de test.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2867" />
+      <location filename="../UI/UserInterface.py" line="2893" />
       <source>Test Script</source>
       <translation>Test de Script</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2869" />
+      <location filename="../UI/UserInterface.py" line="2895" />
       <source>Test &amp;Script...</source>
       <translation>Test de &amp;Script...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2875" />
+      <location filename="../UI/UserInterface.py" line="2901" />
       <source>Run tests of the current script</source>
       <translation>Ejecutar tests del script actual</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2877" />
-      <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Test de Script&lt;/b&gt;&lt;p&gt;Ejecuta tests con el script actual.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2884" />
-      <source>Test Project</source>
-      <translation>Test de Proyecto</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2886" />
-      <source>Test &amp;Project...</source>
-      <translation>Test de &amp;Proyecto...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2892" />
-      <source>Run tests of the current project</source>
-      <translation>Ejecuta tests del proyecto actual</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2894" />
-      <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Test de Proyecto&lt;/b&gt;&lt;p&gt;Ejecuta tests del proyecto actual.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2903" />
+      <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Test de Script&lt;/b&gt;&lt;p&gt;Ejecuta tests con el script actual.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2910" />
+      <source>Test Project</source>
+      <translation>Test de Proyecto</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2912" />
+      <source>Test &amp;Project...</source>
+      <translation>Test de &amp;Proyecto...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2918" />
+      <source>Run tests of the current project</source>
+      <translation>Ejecuta tests del proyecto actual</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2920" />
+      <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Test de Proyecto&lt;/b&gt;&lt;p&gt;Ejecuta tests del proyecto actual.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2929" />
       <source>Qt-Designer</source>
       <translation>Qt Designer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2905" />
+      <location filename="../UI/UserInterface.py" line="2931" />
       <source>Qt-&amp;Designer...</source>
       <translation>Qt-&amp;Designer...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2911" />
+      <location filename="../UI/UserInterface.py" line="2937" />
       <source>Start Qt-Designer</source>
       <translation>Iniciar Qt-Designer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2913" />
+      <location filename="../UI/UserInterface.py" line="2939" />
       <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="2922" />
-      <source>Qt-Linguist</source>
-      <translation>Qt-Linguist</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2924" />
-      <source>Qt-&amp;Linguist...</source>
-      <translation>Qt-&amp;Linguist...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2930" />
-      <source>Start Qt-Linguist</source>
-      <translation>Iniciar Qt Linguist</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2932" />
-      <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="2940" />
-      <source>UI Previewer</source>
-      <translation>Previsualizador de UI</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2942" />
-      <source>&amp;UI Previewer...</source>
-      <translation>Previsualizador de &amp;UI...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2948" />
-      <source>Start the UI Previewer</source>
-      <translation>Ejecutar el Previsualizador de UI</translation>
+      <source>Qt-Linguist</source>
+      <translation>Qt-Linguist</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2950" />
-      <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>
+      <source>Qt-&amp;Linguist...</source>
+      <translation>Qt-&amp;Linguist...</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2956" />
-      <source>Translations Previewer</source>
-      <translation>Previsualizador de Traducciones</translation>
+      <source>Start Qt-Linguist</source>
+      <translation>Iniciar Qt Linguist</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2958" />
-      <source>&amp;Translations Previewer...</source>
-      <translation>Previsualizador de &amp;Traducciones...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2964" />
-      <source>Start the Translations Previewer</source>
-      <translation>Ejecutar el Previsualizador de traducciones</translation>
+      <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="2966" />
+      <source>UI Previewer</source>
+      <translation>Previsualizador de UI</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2968" />
+      <source>&amp;UI Previewer...</source>
+      <translation>Previsualizador de &amp;UI...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2974" />
+      <source>Start the UI Previewer</source>
+      <translation>Ejecutar el Previsualizador de UI</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2976" />
+      <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="2982" />
+      <source>Translations Previewer</source>
+      <translation>Previsualizador de Traducciones</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2984" />
+      <source>&amp;Translations Previewer...</source>
+      <translation>Previsualizador de &amp;Traducciones...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2990" />
+      <source>Start the Translations Previewer</source>
+      <translation>Ejecutar el Previsualizador de traducciones</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2992" />
       <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="2975" />
+      <location filename="../UI/UserInterface.py" line="3001" />
       <source>Compare Files</source>
       <translation>Comparar Archivos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
+      <location filename="../UI/UserInterface.py" line="3003" />
       <source>&amp;Compare Files...</source>
       <translation>&amp;Comparar Archivos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3002" />
-      <location filename="../UI/UserInterface.py" line="2983" />
+      <location filename="../UI/UserInterface.py" line="3028" />
+      <location filename="../UI/UserInterface.py" line="3009" />
       <source>Compare two files</source>
       <translation>Comparar dos archivos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2985" />
+      <location filename="../UI/UserInterface.py" line="3011" />
       <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="2994" />
+      <location filename="../UI/UserInterface.py" line="3020" />
       <source>Compare Files side by side</source>
       <translation>Comparar Archivos uno al lado de otro</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2996" />
-      <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="3004" />
-      <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="3014" />
-      <source>SQL Browser</source>
-      <translation>Navegador SQL</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3016" />
-      <source>SQL &amp;Browser...</source>
-      <translation>&amp;Navegador SQL...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3022" />
-      <source>Browse a SQL database</source>
-      <translation>Navegar una base de datos SQL</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3024" />
-      <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="3038" />
+      <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="3030" />
-      <source>Mini Editor</source>
-      <translation>Mini Editor</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3032" />
-      <source>Mini &amp;Editor...</source>
-      <translation>Mini &amp;Editor...</translation>
+      <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="3040" />
+      <source>SQL Browser</source>
+      <translation>Navegador SQL</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3042" />
+      <source>SQL &amp;Browser...</source>
+      <translation>&amp;Navegador SQL...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3048" />
+      <source>Browse a SQL database</source>
+      <translation>Navegar una base de datos SQL</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3050" />
+      <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="3064" />
+      <location filename="../UI/UserInterface.py" line="3056" />
+      <source>Mini Editor</source>
+      <translation>Mini Editor</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3058" />
+      <source>Mini &amp;Editor...</source>
+      <translation>Mini &amp;Editor...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3066" />
       <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="3049" />
+      <location filename="../UI/UserInterface.py" line="3075" />
       <source>Hex Editor</source>
       <translation>Editor Hexadecimal</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3051" />
-      <source>&amp;Hex Editor...</source>
-      <translation>Editor &amp;Hexadecimal...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3057" />
-      <source>Start the eric Hex Editor</source>
-      <translation>Iniciar el Editor Hexadecimal de eric</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3059" />
-      <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Editor Hexadecimal&lt;/b&gt;&lt;p&gt;Inicia el Editor Hexadecimal de eric para visionado o edición de archivos binarios.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3069" />
-      <source>eric Web Browser</source>
-      <translation>Navegador Web de eric</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3071" />
-      <source>eric &amp;Web Browser...</source>
-      <translation>Navegador &amp;Web de eric...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3077" />
+      <source>&amp;Hex Editor...</source>
+      <translation>Editor &amp;Hexadecimal...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3083" />
+      <source>Start the eric Hex Editor</source>
+      <translation>Iniciar el Editor Hexadecimal de eric</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3085" />
+      <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Editor Hexadecimal&lt;/b&gt;&lt;p&gt;Inicia el Editor Hexadecimal de eric para visionado o edición de archivos binarios.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3095" />
+      <source>eric Web Browser</source>
+      <translation>Navegador Web de eric</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3097" />
+      <source>eric &amp;Web Browser...</source>
+      <translation>Navegador &amp;Web de eric...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3103" />
       <source>Start the eric Web Browser</source>
       <translation>Iniciar el Navegador Web de eric</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3079" />
+      <location filename="../UI/UserInterface.py" line="3105" />
       <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Navegador Web de eric&lt;/b&gt;&lt;p&gt;Navegar por Internet con el Navegador Web de eric.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3088" />
+      <location filename="../UI/UserInterface.py" line="3114" />
       <source>Icon Editor</source>
       <translation>Editor de Iconos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3090" />
+      <location filename="../UI/UserInterface.py" line="3116" />
       <source>&amp;Icon Editor...</source>
       <translation>Editor de &amp;Iconos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3096" />
+      <location filename="../UI/UserInterface.py" line="3122" />
       <source>Start the eric Icon Editor</source>
       <translation>Iniciar el Editor de Iconos de eric</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3098" />
+      <location filename="../UI/UserInterface.py" line="3124" />
       <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Editor de Iconos&lt;/b&gt;&lt;p&gt;Inicia el Editor de Iconos de eric para editar iconos sencillos.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6494" />
-      <location filename="../UI/UserInterface.py" line="3110" />
+      <location filename="../UI/UserInterface.py" line="6533" />
+      <location filename="../UI/UserInterface.py" line="3136" />
       <source>Snapshot</source>
       <translation>Captura de Pantalla</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3112" />
-      <source>&amp;Snapshot...</source>
-      <translation>Captura de &amp;Pantalla...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3118" />
-      <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="3120" />
-      <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="3130" />
-      <source>eric PDF Viewer</source>
-      <translation>Visor de PDF de eric</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3132" />
-      <source>eric PDF &amp;Viewer...</source>
-      <translation>&amp;Visor de PDF de eric...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3138" />
+      <source>&amp;Snapshot...</source>
+      <translation>Captura de &amp;Pantalla...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3144" />
+      <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="3146" />
+      <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="3156" />
+      <source>eric PDF Viewer</source>
+      <translation>Visor de PDF de eric</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3158" />
+      <source>eric PDF &amp;Viewer...</source>
+      <translation>&amp;Visor de PDF de eric...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3164" />
       <source>Start the eric PDF Viewer</source>
       <translation>Iniciar el Visor de PDF de eric</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3140" />
+      <location filename="../UI/UserInterface.py" line="3166" />
       <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Visor de PDF de eric&lt;/b&gt;&lt;p&gt;Inicia el visor de PDF de eric para visionar archivos PDF.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3149" />
+      <location filename="../UI/UserInterface.py" line="3175" />
       <source>Preferences</source>
       <translation>Preferencias</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3151" />
+      <location filename="../UI/UserInterface.py" line="3177" />
       <source>&amp;Preferences...</source>
       <translation>&amp;Preferencias...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3157" />
+      <location filename="../UI/UserInterface.py" line="3183" />
       <source>Set the prefered configuration</source>
       <translation>Establecer la configuración preferida</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3159" />
+      <location filename="../UI/UserInterface.py" line="3185" />
       <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="3170" />
+      <location filename="../UI/UserInterface.py" line="3196" />
       <source>Export Preferences</source>
       <translation>Exportar Preferencias</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3172" />
-      <source>E&amp;xport Preferences...</source>
-      <translation>E&amp;xportar Preferencias...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3178" />
-      <source>Export the current configuration</source>
-      <translation>Exportar la configuración actual</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3180" />
-      <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="3189" />
-      <source>Import Preferences</source>
-      <translation>Importar Preferencias</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3191" />
-      <source>I&amp;mport Preferences...</source>
-      <translation>I&amp;mportar Preferencias...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3198" />
+      <source>E&amp;xport Preferences...</source>
+      <translation>E&amp;xportar Preferencias...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3204" />
+      <source>Export the current configuration</source>
+      <translation>Exportar la configuración actual</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3206" />
+      <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="3215" />
+      <source>Import Preferences</source>
+      <translation>Importar Preferencias</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3217" />
+      <source>I&amp;mport Preferences...</source>
+      <translation>I&amp;mportar Preferencias...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3224" />
       <source>Import a previously exported configuration</source>
       <translation>Importar una configuración previamente exportada</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3201" />
+      <location filename="../UI/UserInterface.py" line="3227" />
       <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="3210" />
+      <location filename="../UI/UserInterface.py" line="3236" />
       <source>Export Theme</source>
       <translation>Exportar Tema</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3212" />
+      <location filename="../UI/UserInterface.py" line="3238" />
       <source>Export Theme...</source>
       <translation>Exportar Tema...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3218" />
+      <location filename="../UI/UserInterface.py" line="3244" />
       <source>Export the current theme</source>
       <translation>Exportar el tema actual</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3220" />
+      <location filename="../UI/UserInterface.py" line="3246" />
       <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Exportar Tema&lt;/b&gt;&lt;p&gt;Exportar el tema actual a un archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3229" />
+      <location filename="../UI/UserInterface.py" line="3255" />
       <source>Import Theme</source>
       <translation>Importar Tema</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3231" />
+      <location filename="../UI/UserInterface.py" line="3257" />
       <source>Import Theme...</source>
       <translation>Importar Tema...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3237" />
+      <location filename="../UI/UserInterface.py" line="3263" />
       <source>Import a previously exported theme</source>
       <translation>Importr un tema previamente exportado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
+      <location filename="../UI/UserInterface.py" line="3265" />
       <source>&lt;b&gt;Import Theme&lt;/b&gt;&lt;p&gt;Import a previously exported theme.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Importar Tema&lt;/b&gt;&lt;p&gt;Importar un tema previamente exportado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3248" />
+      <location filename="../UI/UserInterface.py" line="3274" />
       <source>Reload APIs</source>
       <translation>Recargar APIs</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3248" />
+      <location filename="../UI/UserInterface.py" line="3274" />
       <source>Reload &amp;APIs</source>
       <translation>Recargar &amp;APIs</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3250" />
+      <location filename="../UI/UserInterface.py" line="3276" />
       <source>Reload the API information</source>
       <translation>Recargar la información de API</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3252" />
-      <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="3266" />
-      <location filename="../UI/UserInterface.py" line="3258" />
-      <source>Show external tools</source>
-      <translation>Mostrar herramientas externas</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3260" />
-      <source>Show external &amp;tools</source>
-      <translation>Mostrar herramien&amp;tas externas</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3268" />
-      <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Mostrar herramientas externas&lt;/b&gt;&lt;p&gt;Abre un diálogo para mostrar la ruta y versiones de todas las herramientas externas que utiliza eric.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3278" />
-      <source>View Profiles</source>
-      <translation>Perfiles de Vista</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3280" />
-      <source>&amp;View Profiles...</source>
-      <translation>Perfiles de &amp;Vista...</translation>
+      <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="3292" />
+      <location filename="../UI/UserInterface.py" line="3284" />
+      <source>Show external tools</source>
+      <translation>Mostrar herramientas externas</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3286" />
+      <source>Show external &amp;tools</source>
+      <translation>Mostrar herramien&amp;tas externas</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3294" />
+      <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Mostrar herramientas externas&lt;/b&gt;&lt;p&gt;Abre un diálogo para mostrar la ruta y versiones de todas las herramientas externas que utiliza eric.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3304" />
+      <source>View Profiles</source>
+      <translation>Perfiles de Vista</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3306" />
+      <source>&amp;View Profiles...</source>
+      <translation>Perfiles de &amp;Vista...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3312" />
       <source>Configure view profiles</source>
       <translation>Configurar perfiles de vista</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3288" />
+      <location filename="../UI/UserInterface.py" line="3314" />
       <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="3299" />
+      <location filename="../UI/UserInterface.py" line="3325" />
       <source>Toolbars</source>
       <translation>Barras de Herramientas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3301" />
+      <location filename="../UI/UserInterface.py" line="3327" />
       <source>Tool&amp;bars...</source>
       <translation>&amp;Barras de Herramientas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3307" />
+      <location filename="../UI/UserInterface.py" line="3333" />
       <source>Configure toolbars</source>
       <translation>Configurar Barras de Herramientas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
+      <location filename="../UI/UserInterface.py" line="3335" />
       <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="3320" />
+      <location filename="../UI/UserInterface.py" line="3346" />
       <source>Keyboard Shortcuts</source>
       <translation>Atajos de Teclado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3322" />
-      <source>Keyboard &amp;Shortcuts...</source>
-      <translation>Atajo&amp;s de Teclado...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3328" />
-      <source>Set the keyboard shortcuts</source>
-      <translation>Establecer los atajos de teclado</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3330" />
-      <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="7453" />
-      <location filename="../UI/UserInterface.py" line="7434" />
-      <location filename="../UI/UserInterface.py" line="3340" />
-      <source>Export Keyboard Shortcuts</source>
-      <translation>Exportar Atajos de Teclado</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3342" />
-      <source>&amp;Export Keyboard Shortcuts...</source>
-      <translation>&amp;Exportar Atajos de Teclado...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3348" />
+      <source>Keyboard &amp;Shortcuts...</source>
+      <translation>Atajo&amp;s de Teclado...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3354" />
+      <source>Set the keyboard shortcuts</source>
+      <translation>Establecer los atajos de teclado</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3356" />
+      <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="7492" />
+      <location filename="../UI/UserInterface.py" line="7473" />
+      <location filename="../UI/UserInterface.py" line="3366" />
+      <source>Export Keyboard Shortcuts</source>
+      <translation>Exportar Atajos de Teclado</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3368" />
+      <source>&amp;Export Keyboard Shortcuts...</source>
+      <translation>&amp;Exportar Atajos de Teclado...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3374" />
       <source>Export the keyboard shortcuts</source>
       <translation>Exportar los atajos de teclado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3350" />
+      <location filename="../UI/UserInterface.py" line="3376" />
       <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="7472" />
-      <location filename="../UI/UserInterface.py" line="3359" />
+      <location filename="../UI/UserInterface.py" line="7511" />
+      <location filename="../UI/UserInterface.py" line="3385" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Importar Atajos de Teclado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3361" />
+      <location filename="../UI/UserInterface.py" line="3387" />
       <source>&amp;Import Keyboard Shortcuts...</source>
       <translation>&amp;Importar Atajos de Teclado...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3367" />
+      <location filename="../UI/UserInterface.py" line="3393" />
       <source>Import the keyboard shortcuts</source>
       <translation>Importar los atajos de teclado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3369" />
+      <location filename="../UI/UserInterface.py" line="3395" />
       <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="3379" />
+      <location filename="../UI/UserInterface.py" line="3405" />
       <source>Manage SSL Certificates</source>
       <translation>Gestionar Certificados SSL</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3381" />
+      <location filename="../UI/UserInterface.py" line="3407" />
       <source>Manage SSL Certificates...</source>
       <translation>Gestionar Certificados SSL...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3388" />
+      <location filename="../UI/UserInterface.py" line="3414" />
       <source>Manage the saved SSL certificates</source>
       <translation>Gestionar los certificados SSL guardados</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3391" />
+      <location filename="../UI/UserInterface.py" line="3417" />
       <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="3401" />
+      <location filename="../UI/UserInterface.py" line="3427" />
       <source>Edit Message Filters</source>
       <translation>Editar Filtros de Mensajes</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3403" />
+      <location filename="../UI/UserInterface.py" line="3429" />
       <source>Edit Message Filters...</source>
       <translation>Editar Filtros de Mensajes...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3410" />
+      <location filename="../UI/UserInterface.py" line="3436" />
       <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="3413" />
+      <location filename="../UI/UserInterface.py" line="3439" />
       <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="3432" />
-      <location filename="../UI/UserInterface.py" line="3426" />
-      <location filename="../UI/UserInterface.py" line="3424" />
-      <source>Clear private data</source>
-      <translation>Limpiar Datos Privados</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3434" />
-      <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="3445" />
-      <location filename="../UI/UserInterface.py" line="3444" />
-      <source>Activate current editor</source>
-      <translation>Activar editor actual</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3446" />
-      <source>Alt+Shift+E</source>
-      <translation>Alt+Shift+E</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3457" />
-      <location filename="../UI/UserInterface.py" line="3456" />
-      <source>Show next</source>
-      <translation>Mostrar siguente</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3458" />
+      <location filename="../UI/UserInterface.py" line="3452" />
+      <location filename="../UI/UserInterface.py" line="3450" />
+      <source>Clear private data</source>
+      <translation>Limpiar Datos Privados</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3460" />
+      <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="3471" />
+      <location filename="../UI/UserInterface.py" line="3470" />
+      <source>Activate current editor</source>
+      <translation>Activar editor actual</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3472" />
+      <source>Alt+Shift+E</source>
+      <translation>Alt+Shift+E</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3483" />
+      <location filename="../UI/UserInterface.py" line="3482" />
+      <source>Show next</source>
+      <translation>Mostrar siguente</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3484" />
       <source>Ctrl+Alt+Tab</source>
       <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3469" />
-      <location filename="../UI/UserInterface.py" line="3468" />
+      <location filename="../UI/UserInterface.py" line="3495" />
+      <location filename="../UI/UserInterface.py" line="3494" />
       <source>Show previous</source>
       <translation>Mostrar anterior</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3470" />
+      <location filename="../UI/UserInterface.py" line="3496" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3481" />
-      <location filename="../UI/UserInterface.py" line="3480" />
+      <location filename="../UI/UserInterface.py" line="3507" />
+      <location filename="../UI/UserInterface.py" line="3506" />
       <source>Switch between tabs</source>
       <translation>Alternar entre pestañas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3482" />
+      <location filename="../UI/UserInterface.py" line="3508" />
       <source>Ctrl+1</source>
       <translation>Ctrl+1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3492" />
+      <location filename="../UI/UserInterface.py" line="3518" />
       <source>Plugin Infos</source>
       <translation>Información sobre Plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3494" />
-      <source>&amp;Plugin Infos...</source>
-      <translation>Información sobre &amp;Plugins...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3500" />
-      <source>Show Plugin Infos</source>
-      <translation>Mostrar Información sobre Plugins</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3502" />
-      <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="3520" />
-      <location filename="../UI/UserInterface.py" line="3512" />
+      <source>&amp;Plugin Infos...</source>
+      <translation>Información sobre &amp;Plugins...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3526" />
+      <source>Show Plugin Infos</source>
+      <translation>Mostrar Información sobre Plugins</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3528" />
+      <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="3546" />
+      <location filename="../UI/UserInterface.py" line="3538" />
       <source>Install Plugins</source>
       <translation>Instalar Plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3514" />
+      <location filename="../UI/UserInterface.py" line="3540" />
       <source>&amp;Install Plugins...</source>
       <translation>&amp;Instalar Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3522" />
+      <location filename="../UI/UserInterface.py" line="3548" />
       <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="3539" />
-      <location filename="../UI/UserInterface.py" line="3531" />
+      <location filename="../UI/UserInterface.py" line="3565" />
+      <location filename="../UI/UserInterface.py" line="3557" />
       <source>Uninstall Plugin</source>
       <translation>Desinstalar Plugin</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3533" />
+      <location filename="../UI/UserInterface.py" line="3559" />
       <source>&amp;Uninstall Plugin...</source>
       <translation>Desinstalar Pl&amp;ugin...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3541" />
+      <location filename="../UI/UserInterface.py" line="3567" />
       <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="3552" />
+      <location filename="../UI/UserInterface.py" line="3578" />
       <source>Plugin &amp;Repository...</source>
       <translation>&amp;Repositorio de Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3558" />
+      <location filename="../UI/UserInterface.py" line="3584" />
       <source>Show Plugins available for download</source>
       <translation>Mostrar Plugins disponibles para descarga</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3560" />
+      <location filename="../UI/UserInterface.py" line="3586" />
       <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="3587" />
-      <location filename="../UI/UserInterface.py" line="3586" />
+      <location filename="../UI/UserInterface.py" line="3613" />
+      <location filename="../UI/UserInterface.py" line="3612" />
       <source>Qt5 Documentation</source>
       <translation>Documentación de Qt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3593" />
+      <location filename="../UI/UserInterface.py" line="3619" />
       <source>Open Qt5 Documentation</source>
       <translation>Abrir Documentación de Qt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3595" />
+      <location filename="../UI/UserInterface.py" line="3621" />
       <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation>&lt;b&gt;Documentación de Qt5&lt;/b&gt;&lt;p&gt;Muestra la Documentación de Qt5. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3608" />
-      <location filename="../UI/UserInterface.py" line="3607" />
+      <location filename="../UI/UserInterface.py" line="3634" />
+      <location filename="../UI/UserInterface.py" line="3633" />
       <source>Qt6 Documentation</source>
       <translation>Documentación de Qt6</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3614" />
+      <location filename="../UI/UserInterface.py" line="3640" />
       <source>Open Qt6 Documentation</source>
       <translation>Abrir Documentación de Qt6</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3616" />
+      <location filename="../UI/UserInterface.py" line="3642" />
       <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation>&lt;b&gt;Documentación de Qt6&lt;/b&gt;&lt;p&gt;Muestra la Documentación de Qt6. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3629" />
-      <location filename="../UI/UserInterface.py" line="3628" />
+      <location filename="../UI/UserInterface.py" line="3655" />
+      <location filename="../UI/UserInterface.py" line="3654" />
       <source>PyQt5 Documentation</source>
       <translation>Documentación de PyQt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3635" />
+      <location filename="../UI/UserInterface.py" line="3661" />
       <source>Open PyQt5 Documentation</source>
       <translation>Abrir Documentación de PyQt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3637" />
+      <location filename="../UI/UserInterface.py" line="3663" />
       <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation>&lt;b&gt;Documentación de PyQt5&lt;/b&gt;&lt;p&gt;Muestra la Documentación de PyQt5. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3650" />
-      <location filename="../UI/UserInterface.py" line="3649" />
-      <source>PyQt6 Documentation</source>
-      <translation>Documentación de PyQt6</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3656" />
-      <source>Open PyQt6 Documentation</source>
-      <translation>Abrir Documentación de PyQt6</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3658" />
-      <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-      <translation>&lt;b&gt;Documentación de PyQt6&lt;/b&gt;&lt;p&gt;Muestra la Documentación de PyQt6. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3676" />
       <location filename="../UI/UserInterface.py" line="3675" />
-      <source>Python 3 Documentation</source>
-      <translation>Documentación de Python 3</translation>
+      <source>PyQt6 Documentation</source>
+      <translation>Documentación de PyQt6</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3682" />
-      <source>Open Python 3 Documentation</source>
-      <translation>Abrir Documentación de Python 3</translation>
+      <source>Open PyQt6 Documentation</source>
+      <translation>Abrir Documentación de PyQt6</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3684" />
+      <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+      <translation>&lt;b&gt;Documentación de PyQt6&lt;/b&gt;&lt;p&gt;Muestra la Documentación de PyQt6. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3702" />
+      <location filename="../UI/UserInterface.py" line="3701" />
+      <source>Python 3 Documentation</source>
+      <translation>Documentación de Python 3</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3708" />
+      <source>Open Python 3 Documentation</source>
+      <translation>Abrir Documentación de Python 3</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3710" />
       <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="3703" />
-      <location filename="../UI/UserInterface.py" line="3702" />
-      <source>eric API Documentation</source>
-      <translation>Documentación de API de Eric</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3709" />
-      <source>Open eric API Documentation</source>
-      <translation>Abrir Documentación de API de Eric</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3711" />
-      <source>&lt;b&gt;eric API Documentation&lt;/b&gt;&lt;p&gt;Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Documentación de API de Eric&lt;/b&gt;&lt;p&gt;Mostrar la documentación de API de Eric. La ubicación de la documentación es el subdirectorio Documentation/Source del directorio de instalación de eric.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3729" />
       <location filename="../UI/UserInterface.py" line="3728" />
-      <source>PySide2 Documentation</source>
-      <translation>Documentación de PySide2</translation>
+      <source>eric API Documentation</source>
+      <translation>Documentación de API de Eric</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3735" />
-      <source>Open PySide2 Documentation</source>
-      <translation>Abrir Documentación de PySide2</translation>
+      <source>Open eric API Documentation</source>
+      <translation>Abrir Documentación de API de Eric</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3737" />
-      <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-      <translation>&lt;b&gt;Documentación de PySide2&lt;/b&gt;&lt;p&gt;Muestra la Documentación de PySide2. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.&lt;/p&gt;</translation>
+      <source>&lt;b&gt;eric API Documentation&lt;/b&gt;&lt;p&gt;Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Documentación de API de Eric&lt;/b&gt;&lt;p&gt;Mostrar la documentación de API de Eric. La ubicación de la documentación es el subdirectorio Documentation/Source del directorio de instalación de eric.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3755" />
       <location filename="../UI/UserInterface.py" line="3754" />
-      <source>PySide6 Documentation</source>
-      <translation>Documentación de PySide6</translation>
+      <source>PySide2 Documentation</source>
+      <translation>Documentación de PySide2</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3761" />
-      <source>Open PySide6 Documentation</source>
-      <translation>Abrir Documentación de PySide6</translation>
+      <source>Open PySide2 Documentation</source>
+      <translation>Abrir Documentación de PySide2</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3763" />
+      <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+      <translation>&lt;b&gt;Documentación de PySide2&lt;/b&gt;&lt;p&gt;Muestra la Documentación de PySide2. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3781" />
+      <location filename="../UI/UserInterface.py" line="3780" />
+      <source>PySide6 Documentation</source>
+      <translation>Documentación de PySide6</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3787" />
+      <source>Open PySide6 Documentation</source>
+      <translation>Abrir Documentación de PySide6</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3789" />
       <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation>&lt;b&gt;Documentación de PySide6&lt;/b&gt;&lt;p&gt;Muestra la Documentación de PySide6. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3865" />
+      <location filename="../UI/UserInterface.py" line="3891" />
       <source>E&amp;xtras</source>
       <translation>E&amp;xtras</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3875" />
+      <location filename="../UI/UserInterface.py" line="3901" />
       <source>Wi&amp;zards</source>
       <translation>Asis&amp;tentes</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3893" />
+      <location filename="../UI/UserInterface.py" line="3919" />
       <source>P&amp;lugins</source>
       <translation>P&amp;lugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3902" />
-      <source>Configure...</source>
-      <translation>Configurar...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3911" />
-      <source>&amp;Testing</source>
-      <translation>&amp;Tests</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3928" />
+      <source>Configure...</source>
+      <translation>Configurar...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3937" />
+      <source>&amp;Testing</source>
+      <translation>&amp;Tests</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3954" />
       <source>Select Tool Group</source>
       <translation>Seleccionar Grupo de Herramientas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3939" />
+      <location filename="../UI/UserInterface.py" line="3965" />
       <source>Se&amp;ttings</source>
       <translation>Con&amp;figuración</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3972" />
+      <location filename="../UI/UserInterface.py" line="3998" />
       <source>&amp;Window</source>
       <translation>Ven&amp;tana</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3981" />
+      <location filename="../UI/UserInterface.py" line="4007" />
       <source>&amp;Windows</source>
       <translation>&amp;Ventanas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3985" />
+      <location filename="../UI/UserInterface.py" line="4011" />
       <source>Central Park</source>
       <translation>Central Park</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3989" />
+      <location filename="../UI/UserInterface.py" line="4015" />
       <source>Left Side</source>
       <translation>Lado Izquierdo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4008" />
+      <location filename="../UI/UserInterface.py" line="4034" />
       <source>Right Side</source>
       <translation>Lado Derecho</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4027" />
+      <location filename="../UI/UserInterface.py" line="4053" />
       <source>Bottom Side</source>
       <translation>Lado Inferior</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4035" />
+      <location filename="../UI/UserInterface.py" line="4061" />
       <source>Plug-ins</source>
       <translation>Plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4041" />
+      <location filename="../UI/UserInterface.py" line="4067" />
       <source>&amp;Toolbars</source>
       <translation>&amp;Barra de Herramientas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4054" />
+      <location filename="../UI/UserInterface.py" line="4080" />
       <source>&amp;Help</source>
       <translation>Ay&amp;uda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4109" />
-      <location filename="../UI/UserInterface.py" line="4093" />
+      <location filename="../UI/UserInterface.py" line="4136" />
+      <location filename="../UI/UserInterface.py" line="4120" />
       <source>Tools</source>
       <translation>Herramientas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4111" />
-      <location filename="../UI/UserInterface.py" line="4097" />
+      <location filename="../UI/UserInterface.py" line="4138" />
+      <location filename="../UI/UserInterface.py" line="4124" />
       <source>Settings</source>
       <translation>Ajustes</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6222" />
-      <location filename="../UI/UserInterface.py" line="4112" />
-      <location filename="../UI/UserInterface.py" line="4098" />
+      <location filename="../UI/UserInterface.py" line="6261" />
+      <location filename="../UI/UserInterface.py" line="4139" />
+      <location filename="../UI/UserInterface.py" line="4125" />
       <source>Help</source>
       <translation>Ayuda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4113" />
-      <location filename="../UI/UserInterface.py" line="4099" />
+      <location filename="../UI/UserInterface.py" line="4140" />
+      <location filename="../UI/UserInterface.py" line="4126" />
       <source>Profiles</source>
       <translation>Perfiles</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
-      <location filename="../UI/UserInterface.py" line="4100" />
+      <location filename="../UI/UserInterface.py" line="4141" />
+      <location filename="../UI/UserInterface.py" line="4127" />
       <source>Plugins</source>
       <translation>Plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4110" />
+      <location filename="../UI/UserInterface.py" line="4137" />
       <source>Unittest</source>
       <translation>Test Unitario</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4284" />
-      <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="4293" />
-      <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="4302" />
-      <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="4311" />
-      <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>
+      <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="4320" />
-      <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>
+      <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="4329" />
+      <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="4338" />
+      <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="4347" />
+      <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="4356" />
       <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="4343" />
+      <location filename="../UI/UserInterface.py" line="4370" />
       <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="4414" />
-      <location filename="../UI/UserInterface.py" line="4373" />
+      <location filename="../UI/UserInterface.py" line="4441" />
+      <location filename="../UI/UserInterface.py" line="4400" />
       <source>External Tools/{0}</source>
       <translation>Herramientas Externas/{0}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4522" />
+      <location filename="../UI/UserInterface.py" line="4549" />
       <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="4571" />
+      <location filename="../UI/UserInterface.py" line="4598" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Security)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Seguridad)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4588" />
+      <location filename="../UI/UserInterface.py" line="4615" />
       <source>Desktop</source>
       <translation>Escritorio</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4592" />
+      <location filename="../UI/UserInterface.py" line="4619" />
       <source>Session Type</source>
       <translation>Tipo de Sesión</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4595" />
+      <location filename="../UI/UserInterface.py" line="4622" />
       <source>&lt;/table&gt;</source>
       <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4635" />
+      <location filename="../UI/UserInterface.py" line="4674" />
       <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="4970" />
+      <location filename="../UI/UserInterface.py" line="5009" />
       <source>Restart application</source>
       <translation>Reiniciar aplicación</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4971" />
+      <location filename="../UI/UserInterface.py" line="5010" />
       <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="4995" />
+      <location filename="../UI/UserInterface.py" line="5034" />
       <source>Upgrade PyQt</source>
       <translation>Actualizar PyQt</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4996" />
+      <location filename="../UI/UserInterface.py" line="5035" />
       <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
@@ -91316,13 +91336,13 @@
 ¿Desearía hacer la actualización ahora?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5046" />
-      <location filename="../UI/UserInterface.py" line="5020" />
+      <location filename="../UI/UserInterface.py" line="5085" />
+      <location filename="../UI/UserInterface.py" line="5059" />
       <source>Upgrade Eric</source>
       <translation>Actualizar Eric</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5021" />
+      <location filename="../UI/UserInterface.py" line="5060" />
       <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
@@ -91331,7 +91351,7 @@
 ¿Desearía hacer la actualización ahora?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5047" />
+      <location filename="../UI/UserInterface.py" line="5086" />
       <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
  Shall the upgrade be done now?</source>
@@ -91340,336 +91360,336 @@
 ¿Desearía hacer la actualización ahora?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5105" />
+      <location filename="../UI/UserInterface.py" line="5144" />
       <source>&amp;Builtin Tools</source>
       <translation>Herramientas de serie (&amp;builtin)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5124" />
+      <location filename="../UI/UserInterface.py" line="5163" />
       <source>&amp;Plugin Tools</source>
       <translation>Herramientas de Extensión (&amp;Plugin)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5127" />
+      <location filename="../UI/UserInterface.py" line="5166" />
       <source>&amp;User Tools</source>
       <translation>Herramientas de &amp;Usuario</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5153" />
+      <location filename="../UI/UserInterface.py" line="5192" />
       <source>Configure Tool Groups ...</source>
       <translation>Configurar Grupos de Herramientas ...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5157" />
-      <source>Configure current Tool Group ...</source>
-      <translation>Configurar Grupo de Herramientas actual ...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="5196" />
-      <location filename="../UI/UserInterface.py" line="5176" />
+      <source>Configure current Tool Group ...</source>
+      <translation>Configurar Grupo de Herramientas actual ...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="5235" />
+      <location filename="../UI/UserInterface.py" line="5215" />
       <source>No User Tools Configured</source>
       <translation>No se han Configurado Herramientas de Usuario</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5272" />
+      <location filename="../UI/UserInterface.py" line="5311" />
       <source>&amp;Show all</source>
       <translation>&amp;Ver todo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5274" />
+      <location filename="../UI/UserInterface.py" line="5313" />
       <source>&amp;Hide all</source>
       <translation>&amp;Ocultar todo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6359" />
-      <location filename="../UI/UserInterface.py" line="6348" />
-      <location filename="../UI/UserInterface.py" line="6300" />
-      <location filename="../UI/UserInterface.py" line="6290" />
-      <location filename="../UI/UserInterface.py" line="6121" />
-      <location filename="../UI/UserInterface.py" line="6111" />
-      <location filename="../UI/UserInterface.py" line="6053" />
-      <location filename="../UI/UserInterface.py" line="6043" />
+      <location filename="../UI/UserInterface.py" line="6398" />
+      <location filename="../UI/UserInterface.py" line="6387" />
+      <location filename="../UI/UserInterface.py" line="6339" />
+      <location filename="../UI/UserInterface.py" line="6329" />
+      <location filename="../UI/UserInterface.py" line="6160" />
+      <location filename="../UI/UserInterface.py" line="6150" />
+      <location filename="../UI/UserInterface.py" line="6092" />
+      <location filename="../UI/UserInterface.py" line="6082" />
       <source>Problem</source>
       <translation>Problema</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6360" />
-      <location filename="../UI/UserInterface.py" line="6349" />
-      <location filename="../UI/UserInterface.py" line="6301" />
-      <location filename="../UI/UserInterface.py" line="6291" />
-      <location filename="../UI/UserInterface.py" line="6122" />
-      <location filename="../UI/UserInterface.py" line="6112" />
-      <location filename="../UI/UserInterface.py" line="6054" />
-      <location filename="../UI/UserInterface.py" line="6044" />
+      <location filename="../UI/UserInterface.py" line="6399" />
+      <location filename="../UI/UserInterface.py" line="6388" />
+      <location filename="../UI/UserInterface.py" line="6340" />
+      <location filename="../UI/UserInterface.py" line="6330" />
+      <location filename="../UI/UserInterface.py" line="6161" />
+      <location filename="../UI/UserInterface.py" line="6151" />
+      <location filename="../UI/UserInterface.py" line="6093" />
+      <location filename="../UI/UserInterface.py" line="6083" />
       <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="6603" />
-      <location filename="../UI/UserInterface.py" line="6514" />
-      <location filename="../UI/UserInterface.py" line="6395" />
-      <location filename="../UI/UserInterface.py" line="6372" />
-      <location filename="../UI/UserInterface.py" line="6313" />
-      <location filename="../UI/UserInterface.py" line="6260" />
-      <location filename="../UI/UserInterface.py" line="6238" />
-      <location filename="../UI/UserInterface.py" line="6197" />
-      <location filename="../UI/UserInterface.py" line="6188" />
-      <location filename="../UI/UserInterface.py" line="6153" />
-      <location filename="../UI/UserInterface.py" line="6144" />
-      <location filename="../UI/UserInterface.py" line="6085" />
-      <location filename="../UI/UserInterface.py" line="6076" />
+      <location filename="../UI/UserInterface.py" line="6642" />
+      <location filename="../UI/UserInterface.py" line="6553" />
+      <location filename="../UI/UserInterface.py" line="6434" />
+      <location filename="../UI/UserInterface.py" line="6411" />
+      <location filename="../UI/UserInterface.py" line="6352" />
+      <location filename="../UI/UserInterface.py" line="6299" />
+      <location filename="../UI/UserInterface.py" line="6277" />
+      <location filename="../UI/UserInterface.py" line="6236" />
+      <location filename="../UI/UserInterface.py" line="6227" />
+      <location filename="../UI/UserInterface.py" line="6192" />
+      <location filename="../UI/UserInterface.py" line="6183" />
+      <location filename="../UI/UserInterface.py" line="6124" />
+      <location filename="../UI/UserInterface.py" line="6115" />
       <source>Process Generation Error</source>
       <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6077" />
+      <location filename="../UI/UserInterface.py" line="6116" />
       <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="6086" />
+      <location filename="../UI/UserInterface.py" line="6125" />
       <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="6145" />
+      <location filename="../UI/UserInterface.py" line="6184" />
       <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="6154" />
+      <location filename="../UI/UserInterface.py" line="6193" />
       <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="6189" />
+      <location filename="../UI/UserInterface.py" line="6228" />
       <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="6198" />
+      <location filename="../UI/UserInterface.py" line="6237" />
       <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="6223" />
+      <location filename="../UI/UserInterface.py" line="6262" />
       <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="6239" />
+      <location filename="../UI/UserInterface.py" line="6278" />
       <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="6261" />
+      <location filename="../UI/UserInterface.py" line="6300" />
       <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="6314" />
+      <location filename="../UI/UserInterface.py" line="6353" />
       <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="6373" />
+      <location filename="../UI/UserInterface.py" line="6412" />
       <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="6396" />
+      <location filename="../UI/UserInterface.py" line="6435" />
       <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="6495" />
+      <location filename="../UI/UserInterface.py" line="6534" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation>&lt;p&gt;La utilidad de captura de pantalla no está disponible para sesiones de escritorio de Wayland.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6515" />
+      <location filename="../UI/UserInterface.py" line="6554" />
       <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="6548" />
-      <location filename="../UI/UserInterface.py" line="6538" />
+      <location filename="../UI/UserInterface.py" line="6587" />
+      <location filename="../UI/UserInterface.py" line="6577" />
       <source>External Tools</source>
       <translation>Herramientas Externas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6539" />
+      <location filename="../UI/UserInterface.py" line="6578" />
       <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
       <translation>No se ha encontrado la entrada para la herramienta externa '{0}' en el grupo de herramientas '{1}'.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6549" />
+      <location filename="../UI/UserInterface.py" line="6588" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation>No se ha encontrado la entrada para el grupo de herramientas '{0}'.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6586" />
+      <location filename="../UI/UserInterface.py" line="6625" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>Comenzando proceso '{0} {1}'.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6604" />
+      <location filename="../UI/UserInterface.py" line="6643" />
       <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="6683" />
+      <location filename="../UI/UserInterface.py" line="6722" />
       <source>Process '{0}' has exited.
 </source>
       <translation>El proceso '{0}' ha finalizado.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6970" />
-      <location filename="../UI/UserInterface.py" line="6908" />
-      <location filename="../UI/UserInterface.py" line="6864" />
-      <location filename="../UI/UserInterface.py" line="6790" />
-      <location filename="../UI/UserInterface.py" line="6726" />
+      <location filename="../UI/UserInterface.py" line="7009" />
+      <location filename="../UI/UserInterface.py" line="6947" />
+      <location filename="../UI/UserInterface.py" line="6903" />
+      <location filename="../UI/UserInterface.py" line="6829" />
+      <location filename="../UI/UserInterface.py" line="6765" />
       <source>Documentation Missing</source>
       <translation>Falta documentación</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6971" />
-      <location filename="../UI/UserInterface.py" line="6909" />
-      <location filename="../UI/UserInterface.py" line="6865" />
-      <location filename="../UI/UserInterface.py" line="6791" />
-      <location filename="../UI/UserInterface.py" line="6727" />
+      <location filename="../UI/UserInterface.py" line="7010" />
+      <location filename="../UI/UserInterface.py" line="6948" />
+      <location filename="../UI/UserInterface.py" line="6904" />
+      <location filename="../UI/UserInterface.py" line="6830" />
+      <location filename="../UI/UserInterface.py" line="6766" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation>&lt;P&gt;El punto de entrada de documentación "&lt;b&gt;{0}&lt;/b&gt;" no ha podido encontrarse.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6952" />
-      <location filename="../UI/UserInterface.py" line="6834" />
+      <location filename="../UI/UserInterface.py" line="6991" />
+      <location filename="../UI/UserInterface.py" line="6873" />
       <source>Documentation</source>
       <translation>Documentación</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6835" />
+      <location filename="../UI/UserInterface.py" line="6874" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation>&lt;P&gt;El punto de entrada de documentación de PyQt{0} no ha sido configurado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6953" />
+      <location filename="../UI/UserInterface.py" line="6992" />
       <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="7132" />
-      <location filename="../UI/UserInterface.py" line="7068" />
+      <location filename="../UI/UserInterface.py" line="7171" />
+      <location filename="../UI/UserInterface.py" line="7107" />
       <source>Start Web Browser</source>
       <translation>Iniciar Navegador Web</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7069" />
+      <location filename="../UI/UserInterface.py" line="7108" />
       <source>The eric web browser could not be started.</source>
       <translation>El navegador web de eric no se ha podido iniciar.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7133" />
+      <location filename="../UI/UserInterface.py" line="7172" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El navegador web de eric no se ha iniciado.&lt;/p&gt;&lt;p&gt;Razón: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7179" />
+      <location filename="../UI/UserInterface.py" line="7218" />
       <source>Open Browser</source>
       <translation>Abrir Navegador</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7179" />
+      <location filename="../UI/UserInterface.py" line="7218" />
       <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="7474" />
-      <location filename="../UI/UserInterface.py" line="7436" />
+      <location filename="../UI/UserInterface.py" line="7513" />
+      <location filename="../UI/UserInterface.py" line="7475" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation>Archivo de Atajos de Teclado (*.ekj)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7454" />
+      <location filename="../UI/UserInterface.py" line="7493" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de atajos de teclado &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7682" />
+      <location filename="../UI/UserInterface.py" line="7721" />
       <source>Read Session</source>
       <translation>Cargar sesión</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7683" />
+      <location filename="../UI/UserInterface.py" line="7722" />
       <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="7706" />
+      <location filename="../UI/UserInterface.py" line="7745" />
       <source>Save Session</source>
       <translation>Guardar Sesión</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7731" />
-      <location filename="../UI/UserInterface.py" line="7708" />
+      <location filename="../UI/UserInterface.py" line="7770" />
+      <location filename="../UI/UserInterface.py" line="7747" />
       <source>eric Session Files (*.esj)</source>
       <translation>Archivos de Sesión de eric (*.esj)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7776" />
+      <location filename="../UI/UserInterface.py" line="7815" />
       <source>Crash Session found!</source>
       <translation>¡Se ha hallado una sesión perdida!</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7777" />
+      <location filename="../UI/UserInterface.py" line="7816" />
       <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="8154" />
+      <location filename="../UI/UserInterface.py" line="8193" />
       <source>Drop Error</source>
       <translation>Error de volcado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8155" />
+      <location filename="../UI/UserInterface.py" line="8194" />
       <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="8341" />
+      <location filename="../UI/UserInterface.py" line="8380" />
       <source>Upgrade available</source>
       <translation>Actualización disponible</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8342" />
+      <location filename="../UI/UserInterface.py" line="8381" />
       <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Una versión más moderna del package de &lt;b&gt;eric-ide&lt;/b&gt; se encuentra disponible en &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Instalado: {1}&lt;br/&gt;Disponible: &lt;b&gt;{2}&lt;/b&gt;Actualizar &lt;b&gt;eric-ide&lt;/b&gt;?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8387" />
+      <location filename="../UI/UserInterface.py" line="8426" />
       <source>First time usage</source>
       <translation>Usado por primera vez</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8388" />
+      <location filename="../UI/UserInterface.py" line="8427" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation>eric todavía no está configurado. El diálogo de configuración va a ser iniciado.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8410" />
+      <location filename="../UI/UserInterface.py" line="8449" />
       <source>Select Workspace Directory</source>
       <translation>Seleccionar Directorio para el Espacio de Trabajo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8575" />
+      <location filename="../UI/UserInterface.py" line="8617" />
       <source>Unsaved Data Detected</source>
       <translation>Detectados Datos sin Guardar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8576" />
+      <location filename="../UI/UserInterface.py" line="8618" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation>Algunos editores contienen datos sin guardar. ¿Desea guardarlos?</translation>
     </message>
@@ -91750,7 +91770,7 @@
   <context>
     <name>Utilities</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="1051" />
+      <location filename="../Utilities/__init__.py" line="1052" />
       <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;Puede utilizar %-códigos como marcadores en la cadena. Los valores sportados son:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;columna del cursos en el editor actual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directorio del editor actual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;nombre de archivo del editor actual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;directorio home del usuario actual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;línea del cursor en el editor actual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;ruta del proyecto actual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;texto seleccionado en el editor actual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;nombre de usuario del usuario actual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;signo de porcentaje&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
@@ -92102,40 +92122,40 @@
       <translation>&lt;b&gt;Ventana de Visor de Variables Locales&lt;/b&gt;&lt;p&gt;Esta ventana muestra las variables locales  del programa en depuración.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1055" />
+      <location filename="../Debugger/VariablesViewer.py" line="1056" />
       <source>Show Details...</source>
       <translation>Mostrar detalles...</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1057" />
-      <source>Expand</source>
-      <translation>Expandir</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1058" />
-      <source>Collapse</source>
-      <translation>Contraer</translation>
-    </message>
-    <message>
       <location filename="../Debugger/VariablesViewer.py" line="1059" />
+      <source>Expand Subitems</source>
+      <translation>Expandir Subelementos</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/VariablesViewer.py" line="1062" />
+      <source>Collapse Subitems</source>
+      <translation>Colapsar Subelementos</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/VariablesViewer.py" line="1064" />
       <source>Collapse All</source>
       <translation>Contraer Todo</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1067" />
-      <location filename="../Debugger/VariablesViewer.py" line="1061" />
+      <location filename="../Debugger/VariablesViewer.py" line="1072" />
+      <location filename="../Debugger/VariablesViewer.py" line="1066" />
       <source>Refresh</source>
       <translation>Actualizar</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1069" />
-      <location filename="../Debugger/VariablesViewer.py" line="1063" />
+      <location filename="../Debugger/VariablesViewer.py" line="1074" />
+      <location filename="../Debugger/VariablesViewer.py" line="1068" />
       <source>Configure...</source>
       <translation>Configurar...</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1071" />
-      <location filename="../Debugger/VariablesViewer.py" line="1064" />
+      <location filename="../Debugger/VariablesViewer.py" line="1076" />
+      <location filename="../Debugger/VariablesViewer.py" line="1069" />
       <source>Variables Type Filter...</source>
       <translation>Fitro por Tipo de Variable...</translation>
     </message>
@@ -96736,91 +96756,91 @@
       <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; tiene cambios sin guardar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5972" />
+      <location filename="../ViewManager/ViewManager.py" line="5969" />
       <source>Line: {0:5}</source>
       <translation>Línea: {0:5}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5978" />
+      <location filename="../ViewManager/ViewManager.py" line="5975" />
       <source>Pos: {0:5}</source>
       <translation>Pos: {0:5}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5998" />
+      <location filename="../ViewManager/ViewManager.py" line="5995" />
       <source>Language: {0}</source>
       <translation>Lenguaje: {0}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6007" />
+      <location filename="../ViewManager/ViewManager.py" line="6004" />
       <source>EOL Mode: {0}</source>
       <translation>Modo de EOL: {0}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6503" />
-      <location filename="../ViewManager/ViewManager.py" line="6460" />
+      <location filename="../ViewManager/ViewManager.py" line="6500" />
+      <location filename="../ViewManager/ViewManager.py" line="6457" />
       <source>&amp;Clear</source>
       <translation>&amp;Limpiar</translation>
     </message>
     <message>
+      <location filename="../ViewManager/ViewManager.py" line="6494" />
+      <source>&amp;Add</source>
+      <translation>&amp;Agregar</translation>
+    </message>
+    <message>
       <location filename="../ViewManager/ViewManager.py" line="6497" />
-      <source>&amp;Add</source>
-      <translation>&amp;Agregar</translation>
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="6500" />
       <source>&amp;Edit...</source>
       <translation>&amp;Editar...</translation>
     </message>
     <message>
+      <location filename="../ViewManager/ViewManager.py" line="7567" />
+      <location filename="../ViewManager/ViewManager.py" line="7553" />
+      <location filename="../ViewManager/ViewManager.py" line="7521" />
+      <source>Edit Spelling Dictionary</source>
+      <translation>Editar Diccionario Ortográfico</translation>
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7524" />
+      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;El archivo de diccionario ortográfico &lt;b&gt;{0}&lt;/b&gt; no se puede leer.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7540" />
+      <source>Editing {0}</source>
+      <translation>Editando {0}</translation>
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7556" />
+      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;El archivo de diccionario ortográfico &lt;b&gt;{0}&lt;/b&gt; no se puede escribir.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../ViewManager/ViewManager.py" line="7570" />
-      <location filename="../ViewManager/ViewManager.py" line="7556" />
-      <location filename="../ViewManager/ViewManager.py" line="7524" />
-      <source>Edit Spelling Dictionary</source>
-      <translation>Editar Diccionario Ortográfico</translation>
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7527" />
-      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;El archivo de diccionario ortográfico &lt;b&gt;{0}&lt;/b&gt; no se puede leer.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7543" />
-      <source>Editing {0}</source>
-      <translation>Editando {0}</translation>
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7559" />
-      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;El archivo de diccionario ortográfico &lt;b&gt;{0}&lt;/b&gt; no se puede escribir.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7573" />
       <source>The spelling dictionary was saved successfully.</source>
       <translation>El diccionario ortográfico se ha guardado con éxito.</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6682" />
+      <location filename="../ViewManager/ViewManager.py" line="6679" />
       <source>Clear Editor</source>
       <translation>Limpiar Editor</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6683" />
+      <location filename="../ViewManager/ViewManager.py" line="6680" />
       <source>Do you really want to delete all text of the current editor?</source>
       <translation>¿Desea realmente borrar todo el texto del editor actual?</translation>
     </message>
     <message>
+      <location filename="../ViewManager/ViewManager.py" line="8102" />
+      <location filename="../ViewManager/ViewManager.py" line="8085" />
+      <source>File System Watcher Error</source>
+      <translation>Error del Monitor del Sistema de Archivos</translation>
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="8086" />
+      <source>&lt;p&gt;The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should &lt;ul&gt;&lt;li&gt;sudo nano /etc/sysctl.conf&lt;/li&gt;&lt;li&gt;add to the bottom "fs.inotify.max_user_instances = 1024"&lt;/li&gt;&lt;li&gt;save and close the editor&lt;/li&gt;&lt;li&gt;sudo sysctl -p&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Error Message: {0}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Los recursos del sistema operativo para monitores del sistema de archivos se han agotado. Este límite se debería incrementar. En un sistema Linux se debería  &lt;ul&gt;&lt;li&gt;sudo nano /etc/sysctl.conf&lt;/li&gt;&lt;li&gt;añadir al final del archivo "fs.inotify.max_user_instances = 1024"&lt;/li&gt;&lt;li&gt;guardar y cerrar el editor&lt;/li&gt;&lt;li&gt;sudo sysctl -p&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Mensaje de Error: {0}&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../ViewManager/ViewManager.py" line="8103" />
-      <location filename="../ViewManager/ViewManager.py" line="8086" />
-      <source>File System Watcher Error</source>
-      <translation>Error del Monitor del Sistema de Archivos</translation>
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="8087" />
-      <source>&lt;p&gt;The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should &lt;ul&gt;&lt;li&gt;sudo nano /etc/sysctl.conf&lt;/li&gt;&lt;li&gt;add to the bottom "fs.inotify.max_user_instances = 1024"&lt;/li&gt;&lt;li&gt;save and close the editor&lt;/li&gt;&lt;li&gt;sudo sysctl -p&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Error Message: {0}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Los recursos del sistema operativo para monitores del sistema de archivos se han agotado. Este límite se debería incrementar. En un sistema Linux se debería  &lt;ul&gt;&lt;li&gt;sudo nano /etc/sysctl.conf&lt;/li&gt;&lt;li&gt;añadir al final del archivo "fs.inotify.max_user_instances = 1024"&lt;/li&gt;&lt;li&gt;guardar y cerrar el editor&lt;/li&gt;&lt;li&gt;sudo sysctl -p&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Mensaje de Error: {0}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="8104" />
       <source>The file system watcher reported an error with code &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error Message: {1}&lt;/p&gt;</source>
       <translation>El monitor del sistema de archivos ha reportado un error con código &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Mensaje de Error: {1}&lt;/p&gt;</translation>
     </message>
@@ -98709,16 +98729,6 @@
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
-      <source>Select to delete all web databases</source>
-      <translation>Seleccionar para borrar todas las bases de datos web</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
-      <source>Web &amp;Databases</source>
-      <translation>Bases de &amp;Datos Web</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
       <source>Select to delete all remembered zoom settings</source>
       <translation>Seleccionar para borrar todos los ajustes de zoom guardados</translation>
     </message>
@@ -98982,6 +98992,16 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
+      <source>Select to render all web contents using a dark theme.</source>
+      <translation>Seleccionar para mostrar todos los contenidos web utilizando un tema oscuro.</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
+      <source>Force Dark Mode</source>
+      <translation>Forzar Tema Oscuro</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
       <source>Startup</source>
       <translation>Inicio</translation>
     </message>
@@ -99939,355 +99959,355 @@
   <context>
     <name>WebBrowserView</name>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="366" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="353" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="341" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="329" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="368" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="355" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="343" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="331" />
       <source>eric Web Browser</source>
       <translation>Navegador Web de eric</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="330" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="332" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; no existe.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="367" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="342" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="369" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="344" />
       <source>&lt;p&gt;Could not start a viewer for file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se ha podido ejecutar un visor para el archivo &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="354" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="356" />
       <source>&lt;p&gt;Could not start an application for URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se pudo ejecutar una aplicación para la URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="608" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="610" />
       <source>Match {0} of {1}</source>
       <translation>Coincidencia {0} of {1}</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="634" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="636" />
       <source>Inspect Element...</source>
       <translation>Inspeccionar Elemento...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="666" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="668" />
       <source>No suggestions</source>
       <translation>No hay sugerencias</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="723" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="725" />
       <source>Open Link in New Tab	Ctrl+LMB</source>
       <translation>Abrir enlace en nueva pestaña	Ctrl+LMB</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="728" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="730" />
       <source>Open Link in New Window</source>
       <translation>Abrir Enlace en Nueva Ventana</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="734" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="736" />
       <source>Open Link in New Private Window</source>
       <translation>Abrir Enlace en Nueva Ventana Privada</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="741" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="743" />
       <source>Save Lin&amp;k</source>
       <translation>Guardar &amp;Enlace</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="745" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="747" />
       <source>Bookmark this Link</source>
       <translation>Añadir este Enlace a Marcadores</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="751" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="753" />
       <source>Copy URL to Clipboard</source>
       <translation>Copiar URL al Portapapeles</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="755" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="757" />
       <source>Send URL</source>
       <translation>Enviar URL</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="764" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="766" />
       <source>Scan Link with VirusTotal</source>
       <translation>Analizar enlace con VirusTotal</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="782" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="784" />
       <source>Open Image in New Tab</source>
       <translation>Abrir Imagen en Nueva Pestaña</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="789" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="791" />
       <source>Save Image</source>
       <translation>Guardar imagen</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="792" />
-      <source>Copy Image to Clipboard</source>
-      <translation>Copiar Imagen al Portapapeles</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="794" />
+      <source>Copy Image to Clipboard</source>
+      <translation>Copiar Imagen al Portapapeles</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="796" />
       <source>Copy Image URL to Clipboard</source>
       <translation>Copiar URL de la Imagen al Portapapeles</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="799" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="801" />
       <source>Send Image URL</source>
       <translation>Enviar URL de Imagen</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="818" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="810" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="820" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="812" />
       <source>Search image in {0}</source>
       <translation>Buscar imagen en {0}</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="814" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="816" />
       <source>Search image with...</source>
       <translation>Buscar imagen con...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="825" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="827" />
       <source>Block Image</source>
       <translation>Bloquear Imagen</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="835" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="837" />
       <source>Scan Image with VirusTotal</source>
       <translation>Analizar Imagen con VirusTotal</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="855" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="857" />
       <source>Play</source>
       <translation>Reproducir</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="861" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="863" />
       <source>Pause</source>
       <translation>Pausa</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="867" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="869" />
       <source>Unmute</source>
       <translation>Con sonido</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="873" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="875" />
       <source>Mute</source>
       <translation>Sin sonido</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="878" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="880" />
       <source>Copy Media URL to Clipboard</source>
       <translation>Copiar URL del Archivo de Media al Portapapeles</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="883" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="885" />
       <source>Send Media URL</source>
       <translation>Enviar URL de Archivo de Media</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="889" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="891" />
       <source>Save Media</source>
       <translation>Guardar Medio</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="910" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="912" />
       <source>Send Text</source>
       <translation>Enviar Texto</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="917" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="919" />
       <source>Search with '{0}'</source>
       <translation>Buscar con '{0}'</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="921" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="923" />
       <source>Search with...</source>
       <translation>Buscar con...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1078" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="947" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1080" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="949" />
       <source>Google Translate</source>
       <translation>Google Translate</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="957" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="959" />
       <source>Dictionary</source>
       <translation>Diccionario</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="965" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="967" />
       <source>Go to web address</source>
       <translation>Ir a la dirección web</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="994" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="996" />
       <source>Add New Page</source>
       <translation>Añadir Página Nueva</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="999" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1001" />
       <source>Configure Speed Dial</source>
       <translation>Configurar Marcación Rápida</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1005" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1007" />
       <source>Reload All Dials</source>
       <translation>Recargar todos los marcadores rápidos</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1009" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1011" />
       <source>Reset to Default Dials</source>
       <translation>Restablecer Marcadores por Defecto</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1014" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1016" />
       <source>Bookmark this Page</source>
       <translation>Añadir esta Página a Marcadores</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1018" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1020" />
       <source>Copy Page URL to Clipboard</source>
       <translation>Copiar URL de la Página al Portapapeles</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1023" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1025" />
       <source>Send Page URL</source>
       <translation>Enviar URL de Página</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1029" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1031" />
       <source>User Agent</source>
       <translation>Agente de Usuario</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1057" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1059" />
       <source>Validate Page</source>
       <translation>Validar Página</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1120" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1122" />
       <source>Add to web search toolbar</source>
       <translation>Añadir a la barra de búsqueda web</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1804" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1806" />
       <source>Empty Page</source>
       <translation>Página en Blanco</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1868" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="1867" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1870" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1869" />
       <source>Render Process terminated abnormally</source>
       <translation>El Proceso de Dibujado ha terminado anomalamente</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1873" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1875" />
       <source>The render process crashed while loading this page.</source>
       <translation>El proceso de dibujado ha fallado mientras se cargaba esta página.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1878" />
-      <source>The render process was killed.</source>
-      <translation>El proceso de dibujado se ha eliminado.</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="1880" />
+      <source>The render process was killed.</source>
+      <translation>El proceso de dibujado se ha eliminado.</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="1882" />
       <source>The render process terminated while loading this page.</source>
       <translation>El proceso de dibujado ha terminado mientras se cargaba esta página.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1884" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1886" />
       <source>Try reloading the page or closing some tabs to make more memory available.</source>
       <translation>Intente recargar la página o cerrar algunas pestañas para que haya más memoria disponible.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2012" />
-      <source>Web Archive (*.mhtml *.mht)</source>
-      <translation>Archivo Web (*.mhtml *.mht)</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2013" />
-      <source>HTML File (*.html *.htm)</source>
-      <translation>Archivo HTML (*.html *.htm)</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2014" />
+      <source>Web Archive (*.mhtml *.mht)</source>
+      <translation>Archivo Web (*.mhtml *.mht)</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2015" />
+      <source>HTML File (*.html *.htm)</source>
+      <translation>Archivo HTML (*.html *.htm)</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2016" />
       <source>HTML File with all resources (*.html *.htm)</source>
       <translation>Archivo HTML con todos los recursos (*.html *.htm)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2036" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2038" />
       <source>Save Web Page</source>
       <translation>Guardar Página Web</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2428" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2430" />
       <source>eric7 {0} ({1})</source>
       <translation>eric7 {0} ({1})</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2439" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2441" />
       <source>Print Page</source>
       <translation>Imprimir Página</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2440" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2442" />
       <source>There is already a print job in progress. Printing is temporarily disabled until the current job is finished.</source>
       <translation>Ya hay un trabajo de impresión en curso. La impresión está deshabilitada temporalmente hasta que el trabajo actual termine.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2555" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="2485" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2557" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2487" />
       <source>Print to PDF</source>
       <translation>Imprimir como PDF</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2486" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2488" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo&lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2556" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2558" />
       <source>&lt;p&gt;The PDF file &lt;b&gt;{0}&lt;/b&gt; could not be generated.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo PDF &lt;b&gt;{0}&lt;/b&gt; no se ha podido generar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2590" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2592" />
       <source>Quota Request</source>
       <translation>Solicitud de Cuota</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2591" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2593" />
       <source>&lt;p&gt; Allow the website at &lt;b&gt;{0}&lt;/b&gt; to use &lt;b&gt;{1}&lt;/b&gt; of persistent storage?&lt;/p&gt;</source>
       <translation>&lt;p&gt; ¿Permitir al sitio web &lt;b&gt;{0}&lt;/b&gt; utilizar &lt;b&gt;{1}&lt;/b&gt; de almacenamiento persistente?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2634" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2636" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Read&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation>&lt;p&gt;¿Conceder al website en &lt;b&gt;{0}&lt;/b&gt; acceso de &lt;b&gt;Lectura&lt;/b&gt; a '{1}'?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2642" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2644" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Write&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation>&lt;p&gt;¿Conceder al website en &lt;b&gt;{0}&lt;/b&gt; acceso de &lt;b&gt;Escritura&lt;/b&gt; a '{1}'?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2647" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2649" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Read and Write&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation>&lt;p&gt;¿Conceder al website en &lt;b&gt;{0}&lt;/b&gt; acceso de &lt;b&gt;Lectura y Escritura&lt;/b&gt; a '{1}'?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2654" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2656" />
       <source>File System Access Request</source>
       <translation>Solicitado Acceso al Sistema de Archivos</translation>
     </message>
@@ -100401,10 +100421,10 @@
       <translation>Navegador Web de eric (Modo Privado)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4099" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3007" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2991" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2976" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4105" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3013" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2997" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2982" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="207" />
       <source>eric Web Browser</source>
       <translation>Navegador Web de eric</translation>
@@ -100415,2076 +100435,2076 @@
       <translation>Contenido</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1758" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1758" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1764" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1764" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="306" />
       <source>Index</source>
       <translation>Índice</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1769" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1768" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1774" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="318" />
       <source>Search</source>
       <translation>Buscar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2115" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2114" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2121" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2120" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="325" />
       <source>JavaScript Console</source>
       <translation>Consola de Javascript</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="737" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="743" />
       <source>New Tab</source>
       <translation>Nueva pestaña</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="739" />
-      <source>&amp;New Tab</source>
-      <translation>Nueva pes&amp;taña</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="740" />
-      <source>Ctrl+T</source>
-      <comment>File|New Tab</comment>
-      <translation>Ctrl+T</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="745" />
+      <source>&amp;New Tab</source>
+      <translation>Nueva pes&amp;taña</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="746" />
+      <source>Ctrl+T</source>
+      <comment>File|New Tab</comment>
+      <translation>Ctrl+T</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="751" />
       <source>Open a new web browser tab</source>
       <translation>Abrir una nueva pestaña de navegador web</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="747" />
-      <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Nueva pestaña&lt;/b&gt;&lt;p&gt;Abre una nueva pestaña con un navegador web.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="753" />
+      <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Nueva pestaña&lt;/b&gt;&lt;p&gt;Abre una nueva pestaña con un navegador web.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="759" />
       <source>New Window</source>
       <translation>Nueva Ventana</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="755" />
-      <source>New &amp;Window</source>
-      <translation>Nueva &amp;Ventana</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="756" />
-      <source>Ctrl+N</source>
-      <comment>File|New Window</comment>
-      <translation>Ctrl+N</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="761" />
+      <source>New &amp;Window</source>
+      <translation>Nueva &amp;Ventana</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="762" />
+      <source>Ctrl+N</source>
+      <comment>File|New Window</comment>
+      <translation>Ctrl+N</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="767" />
       <source>Open a new web browser window</source>
       <translation>Abrir una nueva ventana de navegador web</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="763" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="769" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new web browser window in the current privacy mode.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nueva Ventana&lt;/b&gt;&lt;p&gt;Abre una nueva ventana de navegador web en el modo de privacidad actual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2889" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="773" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2895" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="779" />
       <source>New Private Window</source>
       <translation>Nueva Ventana Privada</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="781" />
       <source>New &amp;Private Window</source>
       <translation>Nueva Ventana &amp;Privada</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="776" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="782" />
       <source>Ctrl+Shift+P</source>
       <comment>File|New Private Window</comment>
       <translation>Ctrl+Shift+P</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="782" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="788" />
       <source>Open a new private web browser window</source>
       <translation>Abrir una nueva ventana privada de navegación web</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="785" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="791" />
       <source>&lt;b&gt;New Private Window&lt;/b&gt;&lt;p&gt;This opens a new private web browser window by starting a new web browser instance in private mode.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nueva Ventana Privada&lt;/b&gt;&lt;p&gt;Abre una nueva ventana privada de navegador web iniciando una nueva instancia del navegador en web en modo privado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2927" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2904" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="795" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2933" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2910" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="801" />
       <source>Open File</source>
       <translation>Abrir archivo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="797" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="803" />
       <source>&amp;Open File</source>
       <translation>&amp;Abrir Archivo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="798" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="804" />
       <source>Ctrl+O</source>
       <comment>File|Open</comment>
       <translation>Ctrl+O</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="803" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="809" />
       <source>Open a file for display</source>
       <translation>Abrir un archivo para mostrar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="805" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="811" />
       <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new file for display. It pops up a file selection dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Abrir Archivo&lt;/b&gt;&lt;p&gt;Abre un nuevo archivo para mostrar. Abre un diálogo de selección de archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="815" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="821" />
       <source>Open File in New Tab</source>
       <translation>Abrir Archivo en Nueva Pestaña</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="817" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="823" />
       <source>Open File in New &amp;Tab</source>
       <translation>Abrir Archivo en Nueva Pes&amp;taña</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="818" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="824" />
       <source>Shift+Ctrl+O</source>
       <comment>File|Open in new tab</comment>
       <translation>Shift+Ctrl+O</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="823" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="829" />
       <source>Open a file for display in a new tab</source>
       <translation>Abre un fichero para mostrar en una nueva pestaña</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="825" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="831" />
       <source>&lt;b&gt;Open File in New Tab&lt;/b&gt;&lt;p&gt;This opens a new file for display in a new tab. It pops up a file selection dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Abrir Archivo en Nueva Pestaña&lt;/b&gt;&lt;p&gt;Abre un nuevo archivo para mostrar en una nueva pestaña. Abre un diálogo de selección de archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="836" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="842" />
       <source>Save As</source>
       <translation>Guardar como</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="838" />
-      <source>&amp;Save As...</source>
-      <translation>Guardar co&amp;mo...</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="839" />
-      <source>Shift+Ctrl+S</source>
-      <comment>File|Save As</comment>
-      <translation>Shift+Ctrl+S</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="844" />
+      <source>&amp;Save As...</source>
+      <translation>Guardar co&amp;mo...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="845" />
+      <source>Shift+Ctrl+S</source>
+      <comment>File|Save As</comment>
+      <translation>Shift+Ctrl+S</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="850" />
       <source>Save the current page to disk</source>
       <translation>Guardar página actual en disco</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="846" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="852" />
       <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current page to disk.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Guardar Como...&lt;/b&gt;&lt;p&gt;Guarda la página actual en disco.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="854" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="860" />
       <source>Save Page Screen</source>
       <translation>Guardar Pantalla de Página</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="856" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="862" />
       <source>Save Page Screen...</source>
       <translation>Guardar Pantalla de Página...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="863" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="869" />
       <source>Save the visible part of the current page as a screen shot</source>
       <translation>Guardar la parte visible de la página actual como una captura de pantalla</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="866" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="872" />
       <source>&lt;b&gt;Save Page Screen...&lt;/b&gt;&lt;p&gt;Saves the visible part of the current page as a screen shot.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Guardar Captura de Pantalla de la Página...&lt;/b&gt;&lt;p&gt;Guarda la parte visible de la página actual como una captura de pantalla.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="877" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="883" />
       <source>Import Bookmarks</source>
       <translation>Importar Marcadores</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="878" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="884" />
       <source>&amp;Import Bookmarks...</source>
       <translation>&amp;Importar Marcadores...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="885" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="891" />
       <source>Import bookmarks from other browsers</source>
       <translation>Importar marcadores desde otros navegadores</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="888" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="894" />
       <source>&lt;b&gt;Import Bookmarks&lt;/b&gt;&lt;p&gt;Import bookmarks from other browsers.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Importar Marcadores&lt;/b&gt;&lt;p&gt;Importar marcadores desde otros navegadores.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="897" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="903" />
       <source>Export Bookmarks</source>
       <translation>Exportar Marcadores</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="898" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="904" />
       <source>&amp;Export Bookmarks...</source>
       <translation>&amp;Exportar Marcadores...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="905" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="911" />
       <source>Export the bookmarks into a file</source>
       <translation>Exportar marcadores a un archivo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="908" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="914" />
       <source>&lt;b&gt;Export Bookmarks&lt;/b&gt;&lt;p&gt;Export the bookmarks into a file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Exportar Marcadores&lt;/b&gt;&lt;p&gt;Exportar los marcadores a un archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2537" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="917" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2543" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="923" />
       <source>Print</source>
       <translation>Imprimir</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="919" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="925" />
       <source>&amp;Print</source>
       <translation>Im&amp;primir</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="920" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="926" />
       <source>Ctrl+P</source>
       <comment>File|Print</comment>
       <translation>Ctrl+P</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="925" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="931" />
       <source>Print the displayed help</source>
       <translation>Imprimir la ayuda que se está mostrando</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="927" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="933" />
       <source>&lt;b&gt;Print&lt;/b&gt;&lt;p&gt;Print the displayed help text.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Imprimir&lt;/b&gt;&lt;p&gt;Imprimir el texto de ayuda mostrado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="935" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="933" />
-      <source>Print as PDF</source>
-      <translation>Imprimir como PDF</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="941" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="939" />
+      <source>Print as PDF</source>
+      <translation>Imprimir como PDF</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="947" />
       <source>Print the displayed help as PDF</source>
       <translation>Imprimir la ayuda mostrada como PDF</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="943" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="949" />
       <source>&lt;b&gt;Print as PDF&lt;/b&gt;&lt;p&gt;Print the displayed help text as a PDF file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Imprimir como PDF&lt;/b&gt;&lt;p&gt;Imprimir la ayuda mostrada como un archivo PDF.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="954" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="952" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="960" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="958" />
       <source>Print Preview</source>
       <translation>Vista Previa de Impresión</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="961" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="967" />
       <source>Print preview of the displayed help</source>
       <translation>Presentación preliminar de la ayuda mostrada</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="964" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="970" />
       <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the displayed help text.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Presentación Preliminar&lt;/b&gt;&lt;p&gt;Presentación preliminar del texto de ayuda mostrado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="975" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="973" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="981" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="979" />
       <source>Send Page Link</source>
       <translation>Enviar Enlace de Página</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="982" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="988" />
       <source>Send the link of the current page via email</source>
       <translation>Enviar por email un enlace a la página actual</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="985" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="991" />
       <source>&lt;b&gt;Send Page Link&lt;/b&gt;&lt;p&gt;Send the link of the current page via email.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Enviar Enlace de Página&lt;/b&gt;&lt;p&gt;Enviar por email un enlace a la página actual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="994" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1000" />
       <source>Close</source>
       <translation>Cerrar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="996" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1002" />
       <source>&amp;Close</source>
       <translation>&amp;Cerrar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="997" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1003" />
       <source>Ctrl+W</source>
       <comment>File|Close</comment>
       <translation>Ctrl+W</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1002" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1008" />
       <source>Close the current help window</source>
       <translation>Cierra la ventana actual</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1004" />
-      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Cerrar&lt;/b&gt;&lt;p&gt;Cierra la ventana de navegador web actual.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1010" />
+      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Cerrar&lt;/b&gt;&lt;p&gt;Cierra la ventana de navegador web actual.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1016" />
       <source>Close All</source>
       <translation>Cerrar todo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1011" />
-      <source>Close &amp;All</source>
-      <translation>Cerrar &amp;Todo</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1017" />
+      <source>Close &amp;All</source>
+      <translation>Cerrar &amp;Todo</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1023" />
       <source>Close all help windows</source>
       <translation>Cerrar todas las ventanas de ayuda</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1019" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1025" />
       <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all web browser windows except the first one.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Cerrar Todo&lt;/b&gt;&lt;p&gt;Cierra todas las ventanas de navegador web excepto la primera.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1028" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1034" />
       <source>Quit</source>
       <translation>Salir</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3319" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1030" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3325" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1036" />
       <source>&amp;Quit</source>
       <translation>&amp;Salir</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1031" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1037" />
       <source>Ctrl+Q</source>
       <comment>File|Quit</comment>
       <translation>Ctrl+Q</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1036" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1042" />
       <source>Quit the eric Web Browser</source>
       <translation>Salir del Navegador Web de eric</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1038" />
-      <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Salir&lt;/b&gt;&lt;p&gt;Salir del Navegador Web de eric.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1044" />
+      <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Salir&lt;/b&gt;&lt;p&gt;Salir del Navegador Web de eric.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1050" />
       <source>Backward</source>
       <translation>Atrás</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1046" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1052" />
       <source>&amp;Backward</source>
       <translation>&amp;Atrás</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1047" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1053" />
       <source>Alt+Left</source>
       <comment>Go|Backward</comment>
       <translation>Alt+Left</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1052" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1058" />
       <source>Move one screen backward</source>
       <translation>Ir una pantalla hacia atrás</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1054" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1060" />
       <source>&lt;b&gt;Backward&lt;/b&gt;&lt;p&gt;Moves one screen backward. If none is available, this action is disabled.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Atrás&lt;/b&gt;&lt;p&gt;Mueve una ventana hacia atrás. Si no hay ninguna disponible, esta acción estará deshabilitada.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1064" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1070" />
       <source>Forward</source>
       <translation>Adelante</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1066" />
-      <source>&amp;Forward</source>
-      <translation>A&amp;delante</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1067" />
-      <source>Alt+Right</source>
-      <comment>Go|Forward</comment>
-      <translation>Alt+Right</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1072" />
+      <source>&amp;Forward</source>
+      <translation>A&amp;delante</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1073" />
+      <source>Alt+Right</source>
+      <comment>Go|Forward</comment>
+      <translation>Alt+Right</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1078" />
       <source>Move one screen forward</source>
       <translation>Ir una pantalla hacia adelante</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1074" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1080" />
       <source>&lt;b&gt;Forward&lt;/b&gt;&lt;p&gt;Moves one screen forward. If none is available, this action is disabled.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Adelante&lt;/b&gt;&lt;p&gt;Mueve una ventana hacia adelante. Si no hay ninguna disponible, esta acción estará deshabilitada.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1084" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1090" />
       <source>Home</source>
       <translation>Inicio</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1086" />
-      <source>&amp;Home</source>
-      <translation>&amp;Inicio</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1087" />
-      <source>Ctrl+Home</source>
-      <comment>Go|Home</comment>
-      <translation>Ctrl+Home</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1092" />
+      <source>&amp;Home</source>
+      <translation>&amp;Inicio</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1093" />
+      <source>Ctrl+Home</source>
+      <comment>Go|Home</comment>
+      <translation>Ctrl+Home</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1098" />
       <source>Move to the initial screen</source>
       <translation>Mover a la pantalla inicial</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1094" />
-      <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Inicio&lt;/b&gt;&lt;p&gt;Navega a la pantalla inicial.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1100" />
+      <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Inicio&lt;/b&gt;&lt;p&gt;Navega a la pantalla inicial.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1106" />
       <source>Reload</source>
       <translation>Recargar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1102" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1108" />
       <source>&amp;Reload</source>
       <translation>&amp;Recargar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1103" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1109" />
       <source>Ctrl+R</source>
       <comment>Go|Reload</comment>
       <translation>Ctrl+R</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1104" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1110" />
       <source>F5</source>
       <comment>Go|Reload</comment>
       <translation>F5</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1108" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1114" />
       <source>Reload the current screen</source>
       <translation>Recargar la pantalla actual</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1110" />
-      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Recargar&lt;/b&gt;&lt;p&gt;Recarga la pantalla actual.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1116" />
+      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Recargar&lt;/b&gt;&lt;p&gt;Recarga la pantalla actual.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1122" />
       <source>Stop</source>
       <translation>Detener</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1118" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1124" />
       <source>&amp;Stop</source>
       <translation>&amp;Detener</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1119" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1125" />
       <source>Ctrl+.</source>
       <comment>Go|Stop</comment>
       <translation>Ctrl+.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1120" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1126" />
       <source>Esc</source>
       <comment>Go|Stop</comment>
       <translation>Esc</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1124" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1130" />
       <source>Stop loading</source>
       <translation>Detener carga</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1126" />
-      <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Detener&lt;/b&gt;&lt;p&gt;Detiene la carga de la pestaña actual.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1132" />
+      <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Detener&lt;/b&gt;&lt;p&gt;Detiene la carga de la pestaña actual.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1138" />
       <source>Copy</source>
       <translation>Copiar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1134" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1140" />
       <source>&amp;Copy</source>
       <translation>&amp;Copiar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1135" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1141" />
       <source>Ctrl+C</source>
       <comment>Edit|Copy</comment>
       <translation>Ctrl+C</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1140" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1146" />
       <source>Copy the selected text</source>
       <translation>Copiar el texto seleccionado</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1142" />
-      <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;Copiar&lt;/b&gt;&lt;p&gt;Copiar el texto seleccionado al portapapeles.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1148" />
+      <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;Copiar&lt;/b&gt;&lt;p&gt;Copiar el texto seleccionado al portapapeles.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1154" />
       <source>Cut</source>
       <translation>Cortar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1150" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1156" />
       <source>Cu&amp;t</source>
       <translation>Cor&amp;tar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1151" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1157" />
       <source>Ctrl+X</source>
       <comment>Edit|Cut</comment>
       <translation>Ctrl+X</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1156" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1162" />
       <source>Cut the selected text</source>
       <translation>Cortar el texto seleccionado</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1158" />
-      <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;Cortar&lt;/b&gt;&lt;p&gt;Cortar el texto seleccionado al portapapeles.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1164" />
+      <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;Cortar&lt;/b&gt;&lt;p&gt;Cortar el texto seleccionado al portapapeles.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1170" />
       <source>Paste</source>
       <translation>Pegar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1166" />
-      <source>&amp;Paste</source>
-      <translation>&amp;Pegar</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1167" />
-      <source>Ctrl+V</source>
-      <comment>Edit|Paste</comment>
-      <translation>Ctrl+V</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1172" />
+      <source>&amp;Paste</source>
+      <translation>&amp;Pegar</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1173" />
+      <source>Ctrl+V</source>
+      <comment>Edit|Paste</comment>
+      <translation>Ctrl+V</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1178" />
       <source>Paste text from the clipboard</source>
       <translation>Pegar texto desde el portapapeles</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1174" />
-      <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Pegar&lt;/b&gt;&lt;p&gt;Pegar texto desde el portapapeles.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1180" />
+      <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Pegar&lt;/b&gt;&lt;p&gt;Pegar texto desde el portapapeles.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1186" />
       <source>Undo</source>
       <translation>Deshacer</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1182" />
-      <source>&amp;Undo</source>
-      <translation>&amp;Deshacer</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1183" />
-      <source>Ctrl+Z</source>
-      <comment>Edit|Undo</comment>
-      <translation>Ctrl+Z</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1188" />
+      <source>&amp;Undo</source>
+      <translation>&amp;Deshacer</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1189" />
+      <source>Ctrl+Z</source>
+      <comment>Edit|Undo</comment>
+      <translation>Ctrl+Z</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1194" />
       <source>Undo the last edit action</source>
       <translation>Deshacer la última acción de edición</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1190" />
-      <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Deshacer&lt;/b&gt;&lt;p&gt;Deshacer la última acción de edición.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1196" />
+      <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Deshacer&lt;/b&gt;&lt;p&gt;Deshacer la última acción de edición.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1202" />
       <source>Redo</source>
       <translation>Rehacer</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1198" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1204" />
       <source>&amp;Redo</source>
       <translation>&amp;Rehacer</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1199" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1205" />
       <source>Ctrl+Shift+Z</source>
       <comment>Edit|Redo</comment>
       <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1204" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1210" />
       <source>Redo the last edit action</source>
       <translation>Rehacer la última acción de edición</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1206" />
-      <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Rehacer&lt;/b&gt;&lt;p&gt;Rehacer la última acción de edición.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1212" />
+      <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Rehacer&lt;/b&gt;&lt;p&gt;Rehacer la última acción de edición.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1218" />
       <source>Select All</source>
       <translation>Seleccionar todo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1214" />
-      <source>&amp;Select All</source>
-      <translation>Seleccionar &amp;todo</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1215" />
-      <source>Ctrl+A</source>
-      <comment>Edit|Select All</comment>
-      <translation>Ctrl+A</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1220" />
+      <source>&amp;Select All</source>
+      <translation>Seleccionar &amp;todo</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1221" />
+      <source>Ctrl+A</source>
+      <comment>Edit|Select All</comment>
+      <translation>Ctrl+A</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1226" />
       <source>Select all text</source>
       <translation>Seleccionar todo el texto</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1222" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1228" />
       <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current browser.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Seleccionar todo&lt;/b&gt;&lt;p&gt;Selecciona todo el texto del navegador actual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1232" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1231" />
-      <source>Unselect</source>
-      <translation>Eliminar selección</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1233" />
-      <source>Alt+Ctrl+A</source>
-      <comment>Edit|Unselect</comment>
-      <translation>Alt+Ctrl+A</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1238" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1237" />
+      <source>Unselect</source>
+      <translation>Eliminar selección</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1239" />
+      <source>Alt+Ctrl+A</source>
+      <comment>Edit|Unselect</comment>
+      <translation>Alt+Ctrl+A</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1244" />
       <source>Clear current selection</source>
       <translation>Deshacer selección actual</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1240" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1246" />
       <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Eliminar Selección&lt;/b&gt;&lt;p&gt;Deshacer la selección en el navegador actual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1249" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1255" />
       <source>Find...</source>
       <translation>Buscar...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1251" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1257" />
       <source>&amp;Find...</source>
       <translation>&amp;Buscar...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1252" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1258" />
       <source>Ctrl+F</source>
       <comment>Edit|Find</comment>
       <translation>Ctrl+F</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1257" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1263" />
       <source>Find text in page</source>
       <translation>Buscar texto en página</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1259" />
-      <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Buscar&lt;/b&gt;&lt;p&gt;Buscar texto en la página actual.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1265" />
+      <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Buscar&lt;/b&gt;&lt;p&gt;Buscar texto en la página actual.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1271" />
       <source>Find next</source>
       <translation>Buscar siguiente</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1267" />
-      <source>Find &amp;next</source>
-      <translation>Buscar sigui&amp;ente</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1268" />
-      <source>F3</source>
-      <comment>Edit|Find next</comment>
-      <translation>F3</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1273" />
+      <source>Find &amp;next</source>
+      <translation>Buscar sigui&amp;ente</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1274" />
+      <source>F3</source>
+      <comment>Edit|Find next</comment>
+      <translation>F3</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1279" />
       <source>Find next occurrence of text in page</source>
       <translation>Busca la siguiente aparición del texto</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1275" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1281" />
       <source>&lt;b&gt;Find next&lt;/b&gt;&lt;p&gt;Find the next occurrence of text in the current page.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Buscar siguiente&lt;/b&gt;&lt;p&gt;Buscar la siguiente aparición del texto en la página actual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1284" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1290" />
       <source>Find previous</source>
       <translation>Buscar anterior</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1286" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1292" />
       <source>Find &amp;previous</source>
       <translation>Buscar a&amp;nterior</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1287" />
-      <source>Shift+F3</source>
-      <comment>Edit|Find previous</comment>
-      <translation>Shift+F3</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1293" />
+      <source>Shift+F3</source>
+      <comment>Edit|Find previous</comment>
+      <translation>Shift+F3</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1299" />
       <source>Find previous occurrence of text in page</source>
       <translation>Busca la anterior ocurrencia del texto</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1296" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1302" />
       <source>&lt;b&gt;Find previous&lt;/b&gt;&lt;p&gt;Find the previous occurrence of text in the current page.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Buscar anterior&lt;/b&gt;&lt;p&gt;Buscar la anterior ocurrencia del texto en la página actual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1306" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1312" />
       <source>Manage Bookmarks</source>
       <translation>Gestionar marcadores</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1307" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1313" />
       <source>&amp;Manage Bookmarks...</source>
       <translation>&amp;Gestionar marcadores...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1308" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1314" />
       <source>Ctrl+Shift+B</source>
       <comment>Help|Manage bookmarks</comment>
       <translation>Ctrl+Shift+B</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1314" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1320" />
       <source>Open a dialog to manage the bookmarks.</source>
       <translation>Abrir un diálogo para gestionar los marcadores.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1317" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1323" />
       <source>&lt;b&gt;Manage Bookmarks...&lt;/b&gt;&lt;p&gt;Open a dialog to manage the bookmarks.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Gestionar Bookmarks...&lt;/b&gt;&lt;p&gt;Abrir un diálogo para gestionar los marcadores.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1326" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1332" />
       <source>Add Bookmark</source>
       <translation>Añadir Marcador</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1328" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1334" />
       <source>Add &amp;Bookmark...</source>
       <translation>Añadir &amp;marcador...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1329" />
-      <source>Ctrl+D</source>
-      <comment>Help|Add bookmark</comment>
-      <translation>Ctrl+D</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1335" />
+      <source>Ctrl+D</source>
+      <comment>Help|Add bookmark</comment>
+      <translation>Ctrl+D</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1341" />
       <source>Open a dialog to add a bookmark.</source>
       <translation>Abrir un diálogo para añadir un marcador.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1337" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1343" />
       <source>&lt;b&gt;Add Bookmark&lt;/b&gt;&lt;p&gt;Open a dialog to add the current URL as a bookmark.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Añadir Marcador&lt;/b&gt;&lt;p&gt;Abre un diálogo para añadir la URL actual como un marcador.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1346" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1352" />
       <source>Add Folder</source>
       <translation>Añadir carpeta</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1347" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1353" />
       <source>Add &amp;Folder...</source>
       <translation>Añadir &amp;Carpeta...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1354" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1360" />
       <source>Open a dialog to add a new bookmarks folder.</source>
       <translation>Abrir un diálogo para añadir una nueva carpeta de marcadores.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1357" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1363" />
       <source>&lt;b&gt;Add Folder...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Añadir Carpeta...&lt;/b&gt;&lt;p&gt;Abrir un diálogo para añadir una nueva carpeta de marcadores.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1366" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1372" />
       <source>Bookmark All Tabs</source>
       <translation>Todas las Pestañas a Marcadores</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1367" />
-      <source>Bookmark All Tabs...</source>
-      <translation>Todas las Pestañas a Marcadores...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1373" />
+      <source>Bookmark All Tabs...</source>
+      <translation>Todas las Pestañas a Marcadores...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1379" />
       <source>Bookmark all open tabs.</source>
       <translation>Todas las pestañas abiertas a marcadores.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1375" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1381" />
       <source>&lt;b&gt;Bookmark All Tabs...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder for all open tabs.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Todas las Pestañas a Marcadores...&lt;/b&gt;&lt;p&gt;Abrir un diálogo para añadir una nueva carpeta de marcadores para todas las pestañas abiertas.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1385" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1391" />
       <source>What's This?</source>
       <translation>¿Qué es esto?</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1387" />
-      <source>&amp;What's This?</source>
-      <translation>¿&amp;Qué es esto?</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1388" />
-      <source>Shift+F1</source>
-      <comment>Help|What's This?'</comment>
-      <translation>Shift+F1</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1393" />
+      <source>&amp;What's This?</source>
+      <translation>¿&amp;Qué es esto?</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1394" />
+      <source>Shift+F1</source>
+      <comment>Help|What's This?'</comment>
+      <translation>Shift+F1</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1399" />
       <source>Context sensitive help</source>
       <translation>Ayuda sensible al contexto</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1395" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1401" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Mostrar ayuda sensible al contexto&lt;/b&gt;&lt;p&gt;En modo ¿Qué es esto? el puntero del ratón muestra una flecha con un interrogante, y se puede hacer click en elementos de la interfaz gráfica para obtener una descripción corta de lo que hacen y de cómo se utilizan. En los diálogos, se puede acceder a esta característica utilizando el botón de ayuda de contexto en la barra de título.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1408" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1414" />
       <source>About</source>
       <translation>Acerca de</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1408" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1414" />
       <source>&amp;About</source>
       <translation>&amp;Acerca de</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1410" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1416" />
       <source>Display information about this software</source>
       <translation>Muestra información acerca de este software</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1412" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1418" />
       <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;Muestra información acerca de este software.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1421" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1427" />
       <source>About Qt</source>
       <translation>Acerca de Qt</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1422" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1428" />
       <source>About &amp;Qt</source>
       <translation>Acerca de &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1429" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1435" />
       <source>Display information about the Qt toolkit</source>
       <translation>Muestra información sobre las herramientas Qt</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1432" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1438" />
       <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;Muestra información sobre las herramientas Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1441" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1447" />
       <source>Zoom in</source>
       <translation>Aumentar zoom</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1443" />
-      <source>Zoom &amp;in</source>
-      <translation>A&amp;umentar Zoom</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1444" />
-      <source>Ctrl++</source>
-      <comment>View|Zoom in</comment>
-      <translation>Ctrl++</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1445" />
-      <source>Zoom In</source>
-      <comment>View|Zoom in</comment>
-      <translation>Aumentar Zoom</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1449" />
-      <source>Zoom in on the web page</source>
-      <translation>Aumentar zoom en la página web</translation>
+      <source>Zoom &amp;in</source>
+      <translation>A&amp;umentar Zoom</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1450" />
+      <source>Ctrl++</source>
+      <comment>View|Zoom in</comment>
+      <translation>Ctrl++</translation>
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1451" />
+      <source>Zoom In</source>
+      <comment>View|Zoom in</comment>
+      <translation>Aumentar Zoom</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1455" />
+      <source>Zoom in on the web page</source>
+      <translation>Aumentar zoom en la página web</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1457" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the web page. This makes the web page bigger.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Aumentar Zoom&lt;/b&gt;&lt;p&gt;Aumenta el zoom sobre la página web. Esto provoca que la página sea mayor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1461" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1467" />
       <source>Zoom out</source>
       <translation>Disminuir zoom</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1463" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1469" />
       <source>Zoom &amp;out</source>
       <translation>Dismi&amp;nuir Zoom</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1464" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1470" />
       <source>Ctrl+-</source>
       <comment>View|Zoom out</comment>
       <translation>Ctrl+-</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1465" />
-      <source>Zoom Out</source>
-      <comment>View|Zoom out</comment>
-      <translation>Disminuir Zoom</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1469" />
-      <source>Zoom out on the web page</source>
-      <translation>Disminuir zoom en la página web</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1471" />
+      <source>Zoom Out</source>
+      <comment>View|Zoom out</comment>
+      <translation>Disminuir Zoom</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1475" />
+      <source>Zoom out on the web page</source>
+      <translation>Disminuir zoom en la página web</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1477" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the web page. This makes the web page smaller.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Disminuir zoom&lt;/b&gt;&lt;p&gt;Disminuir el zoom sobre la página web. Esto provoca que la página sea menor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1481" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1487" />
       <source>Zoom reset</source>
       <translation>Restablecer zoom</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1483" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1489" />
       <source>Zoom &amp;reset</source>
       <translation>&amp;Restablecer zoom</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1484" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1490" />
       <source>Ctrl+0</source>
       <comment>View|Zoom reset</comment>
       <translation>Ctrl+0</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1489" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1495" />
       <source>Reset the zoom of the web page</source>
       <translation>Restablecer el zoom aplicado a la página web</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1491" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1497" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the web page. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Restablecer zoom&lt;/b&gt;&lt;p&gt;Restablece el zoom aplicado a la página web. Establece el factor de zoom a 100%.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1502" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1501" />
-      <source>Show page source</source>
-      <translation>Mostrar código fuente</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1503" />
-      <source>Ctrl+U</source>
-      <translation>Ctrl+U</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1508" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1507" />
+      <source>Show page source</source>
+      <translation>Mostrar código fuente</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1509" />
+      <source>Ctrl+U</source>
+      <translation>Ctrl+U</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1514" />
       <source>Show the page source in an editor</source>
       <translation>Muestra el código fuente en un editor</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1510" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1516" />
       <source>&lt;b&gt;Show page source&lt;/b&gt;&lt;p&gt;Show the page source in an editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Mostrar codigo fuente&lt;/b&gt;&lt;p&gt;Muestra el código fuente en un editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1520" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1526" />
       <source>Full Screen</source>
       <translation>Pantalla Completa</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1522" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1528" />
       <source>&amp;Full Screen</source>
       <translation>&amp;Pantalla Completa</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1529" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1535" />
       <source>Meta+Ctrl+F</source>
       <translation>Meta+Ctrl+F</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1531" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1537" />
       <source>F11</source>
       <translation>F11</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1538" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1537" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1544" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1543" />
       <source>Show next tab</source>
       <translation>Mostrar siguiente pestaña</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1539" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1545" />
       <source>Ctrl+Alt+Tab</source>
       <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1550" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1549" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1556" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1555" />
       <source>Show previous tab</source>
       <translation>Mostrar pestaña anterior</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1551" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1557" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1562" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1561" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1568" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1567" />
       <source>Switch between tabs</source>
       <translation>Alternar entre pestañas</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1563" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1569" />
       <source>Ctrl+1</source>
       <translation>Ctrl+1</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1573" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1579" />
       <source>Preferences</source>
       <translation>Preferencias</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1575" />
-      <source>&amp;Preferences...</source>
-      <translation>&amp;Preferencias...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1581" />
+      <source>&amp;Preferences...</source>
+      <translation>&amp;Preferencias...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1587" />
       <source>Set the prefered configuration</source>
       <translation>Establecer la configuración preferida</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1583" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1589" />
       <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="../WebBrowser/WebBrowserWindow.py" line="1593" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1599" />
       <source>Languages</source>
       <translation>Idiomas</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1595" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1601" />
       <source>&amp;Languages...</source>
       <translation>&amp;Idiomas...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1602" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1608" />
       <source>Configure the accepted languages for web pages</source>
       <translation>Configurar los idiomas aceptados para páginas web</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1605" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1611" />
       <source>&lt;b&gt;Languages&lt;/b&gt;&lt;p&gt;Configure the accepted languages for web pages.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Idiomas&lt;/b&gt;&lt;p&gt;Configurar los idiomas aceptados para páginas web..&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1614" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1620" />
       <source>Cookies</source>
       <translation>Cookies</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1616" />
-      <source>C&amp;ookies...</source>
-      <translation>C&amp;ookies...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1622" />
+      <source>C&amp;ookies...</source>
+      <translation>C&amp;ookies...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1628" />
       <source>Configure cookies handling</source>
       <translation>Configurar gestión de cookies</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1624" />
-      <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configurar gestión de cookies.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1630" />
+      <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configurar gestión de cookies.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1636" />
       <source>Personal Information</source>
       <translation>Información Personal</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1632" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1638" />
       <source>Personal Information...</source>
       <translation>Información Personal...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1639" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1645" />
       <source>Configure personal information for completing form fields</source>
       <translation>Configurar información personal para completar campos de formulario</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1642" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1648" />
       <source>&lt;b&gt;Personal Information...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the personal information used for completing form fields.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Información Personal...&lt;/b&gt;&lt;p&gt;Abre un diálogo para configurar la información personal usada para completar campos de formulario.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1652" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1658" />
       <source>GreaseMonkey Scripts</source>
       <translation>Scripts de GreaseMonkey</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1654" />
-      <source>GreaseMonkey Scripts...</source>
-      <translation>Scripts de GreaseMonkey...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1660" />
+      <source>GreaseMonkey Scripts...</source>
+      <translation>Scripts de GreaseMonkey...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1666" />
       <source>Configure the GreaseMonkey Scripts</source>
       <translation>Configurar los Scripts de GreaseMonkey</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1662" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1668" />
       <source>&lt;b&gt;GreaseMonkey Scripts...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available GreaseMonkey Scripts.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Scripts de GreaseMonkey...&lt;/b&gt;&lt;p&gt;Abre un diálogo para configurar los Scripts de GreaseMonkey disponibles.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1672" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1678" />
       <source>Edit Message Filters</source>
       <translation>Editar Filtros de Mensajes</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1674" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1680" />
       <source>Edit Message Filters...</source>
       <translation>Editar Filtros de Mensajes...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1681" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1687" />
       <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="../WebBrowser/WebBrowserWindow.py" line="1684" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1690" />
       <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="../WebBrowser/WebBrowserWindow.py" line="1695" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1701" />
       <source>Edit HTML5 Feature Permissions</source>
       <translation>Editar Permisos de Características HTML5</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1697" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1703" />
       <source>Edit HTML5 Feature Permissions...</source>
       <translation>Editar Permisos de Características HTML5...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1704" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1710" />
       <source>Edit the remembered HTML5 feature permissions</source>
       <translation>Editar los permisos de características HTML5 recordados</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1707" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1713" />
       <source>&lt;b&gt;Edit HTML5 Feature Permissions&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the remembered HTML5 feature permissions.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Editar Permisos de Características HTML5&lt;/b&gt;&lt;p&gt;Abre un diálogo para editar los permisos de características HTML5 recordados.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1720" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1718" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1726" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1724" />
       <source>Sync with Table of Contents</source>
       <translation>Sincronizar con la Tabla de Contenidos</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1733" />
       <source>Synchronizes the table of contents with current page</source>
       <translation>Sincroniza la tabla de contenidos con la página actual</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1730" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1736" />
       <source>&lt;b&gt;Sync with Table of Contents&lt;/b&gt;&lt;p&gt;Synchronizes the table of contents with current page.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Sincronizar con la Tabla de Contenidos&lt;/b&gt;Sincroniza la tabla de contenidos con la página actual&lt;p&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1741" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1740" />
-      <source>Table of Contents</source>
-      <translation>Tabla de Contenidos</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1747" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1746" />
+      <source>Table of Contents</source>
+      <translation>Tabla de Contenidos</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1753" />
       <source>Shows the table of contents window</source>
       <translation>Muestra la ventana de la tabla de contenidos</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1749" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1755" />
       <source>&lt;b&gt;Table of Contents&lt;/b&gt;&lt;p&gt;Shows the table of contents window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Tabla de Contenidos&lt;/b&gt;&lt;p&gt;Muestra la ventana de la tabla de contenidos.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1760" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1766" />
       <source>Shows the index window</source>
       <translation>Muestra la ventana del índice</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1762" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1768" />
       <source>&lt;b&gt;Index&lt;/b&gt;&lt;p&gt;Shows the index window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Índice&lt;/b&gt;&lt;p&gt;Muestra la ventana del índice.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1781" />
       <source>Shows the search window</source>
       <translation>Muestra la ventana de búsqueda</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1777" />
-      <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Buscar&lt;/b&gt;&lt;p&gt;Muestra la ventana de búsqueda.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1783" />
+      <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Buscar&lt;/b&gt;&lt;p&gt;Muestra la ventana de búsqueda.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1789" />
       <source>Manage QtHelp Documents</source>
       <translation>Gestionar Documentos de QtHelp</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1784" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1790" />
       <source>Manage QtHelp &amp;Documents</source>
       <translation>Gestionar &amp;Documentos de QtHelp</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1791" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1797" />
       <source>Shows a dialog to manage the QtHelp documentation set</source>
       <translation>Muestra un diálogo para gestionar el conjunto de documentación de QtHelp</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1794" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1800" />
       <source>&lt;b&gt;Manage QtHelp Documents&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the QtHelp documentation set.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Gestionar Documentos de QtHelp&lt;/b&gt;&lt;p&gt;Muestra un diálogo para gestionar el conjunto de documentación de QtHelp.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1804" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1810" />
       <source>Reindex Documentation</source>
       <translation>Reindexar Documentación</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1805" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1811" />
       <source>&amp;Reindex Documentation</source>
       <translation>&amp;Reindexar Documentación</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1812" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1818" />
       <source>Reindexes the documentation set</source>
       <translation>Reindexa el conjunto de documentación</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1815" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1821" />
       <source>&lt;b&gt;Reindex Documentation&lt;/b&gt;&lt;p&gt;Reindexes the documentation set.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Reindexar Documentación&lt;/b&gt;&lt;p&gt;Reindexa el conjunto de documentación.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1840" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1834" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1828" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1826" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1832" />
       <source>Clear private data</source>
       <translation>Limpiar Datos Privados</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1836" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1842" />
       <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like browsing history, search history or the favicons database.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Limpiar datos privados&lt;/b&gt;&lt;p&gt;Limpia los datos privados como historial de navegación, de búsqueda o base de datos de favicons.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1846" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1852" />
       <source>Clear icons database</source>
       <translation>Limpiar base de datos de iconos</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1847" />
-      <source>Clear &amp;icons database</source>
-      <translation>Limpiar base de datos de &amp;iconos</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1853" />
+      <source>Clear &amp;icons database</source>
+      <translation>Limpiar base de datos de &amp;iconos</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1859" />
       <source>Clear the database of favicons</source>
       <translation>Limpiar base de datos de favicons</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1855" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1861" />
       <source>&lt;b&gt;Clear icons database&lt;/b&gt;&lt;p&gt;Clears the database of favicons of previously visited URLs.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Limpiar base de datos de iconos&lt;/b&gt;&lt;p&gt;Limpia la base de datos de favicons de URLs previamente visitadas.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1867" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1865" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1873" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1871" />
       <source>Manage Saved Favicons</source>
       <translation>Gestionar Favicons Guardados</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1874" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1880" />
       <source>Show a dialog to manage the saved favicons</source>
       <translation>Muestra un diálogo para gestionar los iconos de páginas web almacenados</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1877" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1883" />
       <source>&lt;b&gt;Manage Saved Favicons&lt;/b&gt;&lt;p&gt;This shows a dialog to manage the saved favicons of previously visited URLs.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Gestionar Favicons Guardados&lt;/b&gt;&lt;p&gt;Esto muestra un diálogo para gestionar los favicons almacenados de URLs visitadas previamente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1887" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1893" />
       <source>Configure Search Engines</source>
       <translation>Configurar Motores de Búsqueda</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1888" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1894" />
       <source>Configure Search &amp;Engines...</source>
       <translation>Configurar Motor&amp;es de Búsqueda...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1895" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1901" />
       <source>Configure the available search engines</source>
       <translation>Configurar los motores de búsqueda disponibles</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1898" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1904" />
       <source>&lt;b&gt;Configure Search Engines...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available search engines.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Configurar Motores de Búsqueda...&lt;/b&gt;&lt;p&gt;Abre un diálogo para configurar los motores de búsqueda disponibles.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1908" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1914" />
       <source>Manage Saved Passwords</source>
       <translation>Gestionar Contraseñas Almacenadas</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1910" />
-      <source>Manage Saved Passwords...</source>
-      <translation>Gestionar Contraseñas Almacenadas...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1916" />
+      <source>Manage Saved Passwords...</source>
+      <translation>Gestionar Contraseñas Almacenadas...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1922" />
       <source>Manage the saved passwords</source>
       <translation>Gestionar las contraseñas almacenadas</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1918" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1924" />
       <source>&lt;b&gt;Manage Saved Passwords...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved passwords.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Gestionar Contraseñas Almacenadas&lt;/b&gt;&lt;p&gt;Abre un diálogo para gestionar las contraseñas almacenadas.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1927" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1933" />
       <source>Ad Block</source>
       <translation>Ad Block</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1929" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1935" />
       <source>&amp;Ad Block...</source>
       <translation>&amp;Ad Block...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1936" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1942" />
       <source>Configure AdBlock subscriptions and rules</source>
       <translation>Configurar las suscripciones y reglas de AdBlock</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1939" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1945" />
       <source>&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure AdBlock subscriptions and rules.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Abre un diálogo para configurar las suscripciones y reglas de AdBlock&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1949" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1955" />
       <source>Manage SSL Certificate Errors</source>
       <translation>Gestionar Errores de Certificados SSL</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1951" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1957" />
       <source>Manage SSL Certificate Errors...</source>
       <translation>Gestionar Errores de Certificados SSL...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1958" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1964" />
       <source>Manage the accepted SSL certificate Errors</source>
       <translation>Gestionar los Errores de certificados SSL aceptados</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1961" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1967" />
       <source>&lt;b&gt;Manage SSL Certificate Errors...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the accepted SSL certificate errors.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Gestionar Errores de Certificados SSL&lt;/b&gt;&lt;p&gt;Abre un diálogo para gestionar los errores de certificados SSL aceptados.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1971" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1977" />
       <source>Manage Safe Browsing</source>
       <translation>Gestionar Navegación Segura</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1973" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1979" />
       <source>Manage Safe Browsing...</source>
       <translation>Gestionar Navegación Segura...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1980" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1986" />
       <source>Configure Safe Browsing and manage local cache</source>
       <translation>Configurar la Navegación Segura y gestionar la caché local</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1983" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1989" />
       <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Gestionar Navegación Segura&lt;/b&gt;&lt;p&gt;Abre un diálogo para configurar la Navegación Segura y gestionar la caché local.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1994" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1993" />
-      <source>Downloads</source>
-      <translation>Descargas</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2000" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1999" />
+      <source>Downloads</source>
+      <translation>Descargas</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2006" />
       <source>Shows the downloads window</source>
       <translation>Muestra la ventana de descargas</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2002" />
-      <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Descargas&lt;/b&gt;&lt;p&gt;Muestra la ventana de descargas.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2008" />
+      <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Descargas&lt;/b&gt;&lt;p&gt;Muestra la ventana de descargas.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2014" />
       <source>RSS Feeds Dialog</source>
       <translation>Diálogo de RSS Feeds</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2010" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2016" />
       <source>&amp;RSS Feeds Dialog...</source>
       <translation>Diálogo de &amp;RSS Feeds...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2011" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2017" />
       <source>Ctrl+Shift+F</source>
       <comment>Help|RSS Feeds Dialog</comment>
       <translation>Ctrl+Shift+F</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2017" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2023" />
       <source>Open a dialog showing the configured RSS feeds.</source>
       <translation>Abrir un diálogo mostrando los RSS feeds configurados.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2020" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2026" />
       <source>&lt;b&gt;RSS Feeds Dialog...&lt;/b&gt;&lt;p&gt;Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Diálogo de RSS Feeds ...&lt;/b&gt;&lt;p&gt;Abrir un diálogo para mostrar todos los RSS feeds configurados. Puede utilizarse para gestionar los feeds y cómo mostrar sus contenidos.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2031" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2037" />
       <source>Siteinfo Dialog</source>
       <translation>Diálogo Siteinfo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2033" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2039" />
       <source>&amp;Siteinfo Dialog...</source>
       <translation>Diálogo &amp;Siteinfo...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2034" />
-      <source>Ctrl+Shift+I</source>
-      <comment>Help|Siteinfo Dialog</comment>
-      <translation>Ctrl+Shift+I</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2040" />
+      <source>Ctrl+Shift+I</source>
+      <comment>Help|Siteinfo Dialog</comment>
+      <translation>Ctrl+Shift+I</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2046" />
       <source>Open a dialog showing some information about the current site.</source>
       <translation>Abrir un diálogo para mostrar información acerca del site actual.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2043" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2049" />
       <source>&lt;b&gt;Siteinfo Dialog...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the current site.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Diálogo Siteinfo...&lt;/b&gt;&lt;p&gt;Abre un diálogo que muestra información acerca del site actual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2053" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2059" />
       <source>Manage User Agent Settings</source>
       <translation>Gestionar Ajustes de Agente de Usuario</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2054" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2060" />
       <source>Manage &amp;User Agent Settings</source>
       <translation>Gestionar Ajustes de Agente de &amp;Usuario</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2061" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2067" />
       <source>Shows a dialog to manage the User Agent settings</source>
       <translation>Muestra un diálogo para gestionar los ajustes de Agente de Usuario</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2064" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2070" />
       <source>&lt;b&gt;Manage User Agent Settings&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the User Agent settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Gestionar Ajustes de Agente de Usuario&lt;/b&gt;&lt;p&gt;Muestra un diálogo para gestionar los ajustes de Agente de Usuario.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2073" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2079" />
       <source>Synchronize data</source>
       <translation>Sincronizar datos</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2075" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2081" />
       <source>&amp;Synchronize Data...</source>
       <translation>&amp;Sincronizar Datos...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2082" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2088" />
       <source>Shows a dialog to synchronize data via the network</source>
       <translation>Muestra un diálogo para sincronizar datos a través de la red</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2085" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2091" />
       <source>&lt;b&gt;Synchronize Data...&lt;/b&gt;&lt;p&gt;This shows a dialog to synchronize data via the network.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Sincronizar Datos...&lt;/b&gt;&lt;p&gt;Muestra un diálogo para sincronizar datos a través de la red.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2095" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2101" />
       <source>Manage Saved Zoom Values</source>
       <translation>Gestionar Valores de Zoom Guardados</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2097" />
-      <source>Manage Saved Zoom Values...</source>
-      <translation>Gestionar Valores de Zoom Guardados...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2103" />
+      <source>Manage Saved Zoom Values...</source>
+      <translation>Gestionar Valores de Zoom Guardados...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2109" />
       <source>Manage the saved zoom values</source>
       <translation>Gestionar los valores de zoom guardados</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2105" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2111" />
       <source>&lt;b&gt;Manage Saved Zoom Values...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved zoom values.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Gestionar los Valores de Zoom Guardados...&lt;/b&gt;&lt;p&gt;Abre un diálogo para gestionar los valores de zoom almacenados.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2122" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2128" />
       <source>Toggle the JavaScript console window</source>
       <translation>Conmutar la ventana de consola de JavaScript</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2125" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2131" />
       <source>&lt;b&gt;JavaScript Console&lt;/b&gt;&lt;p&gt;This toggles the JavaScript console window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Consola de JavaScript&lt;/b&gt;&lt;p&gt;Conmuta la ventana de consola de JavaScript.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2135" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2134" />
-      <source>Tab Manager</source>
-      <translation>Gestor de Pestañas</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2141" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2140" />
+      <source>Tab Manager</source>
+      <translation>Gestor de Pestañas</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2147" />
       <source>Shows the tab manager window</source>
       <translation>Muestra la ventana de gestor de pestañas</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2143" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2149" />
       <source>&lt;b&gt;Tab Manager&lt;/b&gt;&lt;p&gt;Shows the tab manager window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Gestor de Pestañas&lt;/b&gt;&lt;p&gt;Muestra la ventana del gestor de pestañas.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2151" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2157" />
       <source>Session Manager</source>
       <translation>Gestor de Sesiones</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2152" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2158" />
       <source>Session Manager...</source>
       <translation>Gestor de Sesiones...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2159" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2165" />
       <source>Shows the session manager window</source>
       <translation>Muestra la ventana de gestor de sesiones</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2162" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2168" />
       <source>&lt;b&gt;Session Manager&lt;/b&gt;&lt;p&gt;Shows the session manager window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Gestor de Sesiones&lt;/b&gt;&lt;p&gt;Muestra la ventana del gestor de sesiones.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2173" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2171" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2179" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2177" />
       <source>Scan current site</source>
       <translation>Analizar sitio actual</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5180" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5170" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2187" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2185" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5185" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5175" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2193" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2191" />
       <source>IP Address Report</source>
       <translation>Informe de Dirección IP</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5194" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2199" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2197" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5199" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2205" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2203" />
       <source>Domain Report</source>
       <translation>Informe de Dominio</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2217" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2223" />
       <source>Keyboard Shortcuts</source>
       <translation>Atajos de Teclado</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2219" />
-      <source>Keyboard &amp;Shortcuts...</source>
-      <translation>Atajo&amp;s de Teclado...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2225" />
+      <source>Keyboard &amp;Shortcuts...</source>
+      <translation>Atajo&amp;s de Teclado...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2231" />
       <source>Set the keyboard shortcuts</source>
       <translation>Establecer los atajos de teclado</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2227" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2233" />
       <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="../WebBrowser/WebBrowserWindow.py" line="5600" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5581" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2237" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5605" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5586" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2243" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Exportar Atajos de Teclado</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2239" />
-      <source>&amp;Export Keyboard Shortcuts...</source>
-      <translation>&amp;Exportar Atajos de Teclado...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2245" />
+      <source>&amp;Export Keyboard Shortcuts...</source>
+      <translation>&amp;Exportar Atajos de Teclado...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2251" />
       <source>Export the keyboard shortcuts</source>
       <translation>Exportar los atajos de teclado</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2247" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2253" />
       <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;Exportar los atajos de teclado de la aplicación.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5620" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2256" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5625" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2262" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Importar Atajos de Teclado</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2258" />
-      <source>&amp;Import Keyboard Shortcuts...</source>
-      <translation>&amp;Importar Atajos de Teclado...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2264" />
+      <source>&amp;Import Keyboard Shortcuts...</source>
+      <translation>&amp;Importar Atajos de Teclado...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2270" />
       <source>Import the keyboard shortcuts</source>
       <translation>Importar los atajos de teclado</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2266" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2272" />
       <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;Importar los atajos de teclado de la aplicación.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2275" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2281" />
       <source>Protocol Handler Manager</source>
       <translation>Organizador de Gestores de Protocolo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2276" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2282" />
       <source>Protocol Handler Manager...</source>
       <translation>Organizador de Gestores de Protocolo...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2283" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2289" />
       <source>Shows the protocol handler manager window</source>
       <translation>Muestra la ventana de organizador de gestores de protocolo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2286" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2292" />
       <source>&lt;b&gt;Protocol Handler Manager&lt;/b&gt;&lt;p&gt;Shows the protocol handler manager window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Organizador de Gestores de Protocolo&lt;/b&gt;&lt;p&gt;Muestra la ventana de organizador de gestores de protocolo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2330" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2336" />
       <source>&amp;File</source>
       <translation>&amp;Archivo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2524" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2338" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2530" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2344" />
       <source>Sessions</source>
       <translation>Sesiones</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2362" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2368" />
       <source>&amp;Edit</source>
       <translation>&amp;Editar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2596" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2378" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2602" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2384" />
       <source>&amp;View</source>
       <translation>&amp;Ver</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2389" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2395" />
       <source>Text Encoding</source>
       <translation>Codificación de Texto</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2398" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2404" />
       <source>H&amp;istory</source>
       <translation>&amp;Historial</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2414" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2420" />
       <source>&amp;Bookmarks</source>
       <translation>&amp;Marcadores</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2430" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2436" />
       <source>&amp;Settings</source>
       <translation>Con&amp;figuración</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2460" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2466" />
       <source>Global User Agent</source>
       <translation>Agente de Usuario Global</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2627" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2472" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2633" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2478" />
       <source>&amp;Tools</source>
       <translation>&amp;Herramientas</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2634" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2479" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2640" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2485" />
       <source>&amp;VirusTotal</source>
       <translation>&amp;VirusTotal</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2598" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2485" />
-      <source>&amp;Windows</source>
-      <translation>&amp;Ventanas</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2604" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2491" />
+      <source>&amp;Windows</source>
+      <translation>&amp;Ventanas</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2610" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2497" />
       <source>QtHelp</source>
       <translation>QtHelp</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2496" />
-      <source>&amp;Toolbars</source>
-      <translation>&amp;Barra de Herramientas</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2502" />
+      <source>&amp;Toolbars</source>
+      <translation>&amp;Barra de Herramientas</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2508" />
       <source>&amp;Help</source>
       <translation>A&amp;yuda</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2531" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2537" />
       <source>Save</source>
       <translation>Guardar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2551" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2557" />
       <source>Show All History...</source>
       <translation>Mostrar Todo el Historial...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2721" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2558" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2564" />
       <source>Settings</source>
       <translation>Ajustes</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2652" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2658" />
       <source>File</source>
       <translation>Archivo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2676" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2682" />
       <source>Edit</source>
       <translation>Editar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2688" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2694" />
       <source>View</source>
       <translation>Ver</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2697" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2703" />
       <source>Find</source>
       <translation>Buscar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2705" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2711" />
       <source>Filter</source>
       <translation>Filtro</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2712" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2718" />
       <source>Filtered by: </source>
       <translation>Filtrado por: </translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2732" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2738" />
       <source>Tools</source>
       <translation>Herramientas</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2740" />
-      <source>Help</source>
-      <translation>Ayuda</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2746" />
+      <source>Help</source>
+      <translation>Ayuda</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2752" />
       <source>VirusTotal</source>
       <translation>VirusTotal</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2890" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2896" />
       <source>&lt;p&gt;Could not start the process.&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 proceso.&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="../WebBrowser/WebBrowserWindow.py" line="2894" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2900" />
       <source>OK</source>
       <translation>OK</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2929" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2906" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2935" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2912" />
       <source>HTML Files (*.html *.htm *.mhtml *.mht);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source>
       <translation>Archivos HTML (*.html *.htm *.mhtml *.mht);;Archivos PDF (*.pdf);;Archivos CHM (*.chm);;Todos los Archivos (*)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2977" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2983" />
       <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chromium {2} with Security Patches {3}.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Navegador Web de eric- {0}&lt;/b&gt;&lt;p&gt;El Navegador Web de eric is una combinación de navegador de archivos de ayuda y de HTML. Es parte del conjunto de herramientas de desarrollo de eric.&lt;/p&gt;&lt;p&gt;Está basado en QtWebEngine {1} y Chromium {2} con Parches de Seguridad.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2992" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2998" />
       <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chromium {2}.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Navegador Web de eric- {0}&lt;/b&gt;&lt;p&gt;El Navegador Web de eric is una combinación de navegador de archivos de ayuda y de HTML. Es parte del conjunto de herramientas de desarrollo de eric.&lt;/p&gt;&lt;p&gt;Está basado en QtWebEngine {1} y Chromium {2}.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3127" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3133" />
       <source>Saved Tabs</source>
       <translation>Pestañas Guardadas</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3310" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3316" />
       <source>Are you sure you want to close the web browser?</source>
       <translation>¿Realmente desea cerrar el navegador web?</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3311" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3317" />
       <source>Are you sure you want to close the web browser?
 You have {0} windows with {1} tabs open.</source>
       <translation>¿Desea realmente cerrar el navegador web?
 Tiene {0} ventanas con {1} pestañas abiertas.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3910" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3916" />
       <source>Could not find any associated content.</source>
       <translation>No se ha podido encontrar contenido asociado.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3956" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3962" />
       <source>Unfiltered</source>
       <translation>Sin filtrar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4012" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4018" />
       <source>Updating search index</source>
       <translation>Actualizando índice de búsqueda</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4088" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4094" />
       <source>Looking for Documentation...</source>
       <translation>Buscando Documentación...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4121" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4127" />
       <source>Help Engine</source>
       <translation>Motor de Ayuda</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4717" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4722" />
       <source>System</source>
       <translation>Sistema</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4721" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4726" />
       <source>ISO</source>
       <translation>ISO</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4724" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4729" />
       <source>Unicode</source>
       <translation>Unicode</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4732" />
       <source>Windows</source>
       <translation>Windows</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4730" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4735" />
       <source>IBM</source>
       <translation>IBM</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4733" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4738" />
       <source>Apple</source>
       <translation>Apple</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4736" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4741" />
       <source>Other</source>
       <translation>Otro</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4763" />
-      <source>Menu Bar</source>
-      <translation>Barra de Menú</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="4768" />
-      <source>Bookmarks</source>
-      <translation>Marcadores</translation>
+      <source>Menu Bar</source>
+      <translation>Barra de Menú</translation>
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="4773" />
+      <source>Bookmarks</source>
+      <translation>Marcadores</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4778" />
       <source>Status Bar</source>
       <translation>Barra de Estado</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4788" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4793" />
       <source>&amp;Show all</source>
       <translation>Mo&amp;strar todo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4790" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4795" />
       <source>&amp;Hide all</source>
       <translation>&amp;Ocultar todo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5136" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5141" />
       <source>VirusTotal Scan</source>
       <translation>Análisis con VirusTotal</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5137" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5142" />
       <source>&lt;p&gt;The VirusTotal scan could not be scheduled.&lt;p&gt;
 &lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El análisis con VirusTotal no se ha podido programar.&lt;p&gt;
 &lt;p&gt;Razón: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5171" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5176" />
       <source>Enter a valid IPv4 address in dotted quad notation:</source>
       <translation>Introducir una dirección IPv4 válida en notación decimal punteada:</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5181" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5186" />
       <source>The given IP address is not in dotted quad notation.</source>
       <translation>La dirección IP no se ha proporcionado en notación decimal punteada.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5195" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5200" />
       <source>Enter a valid domain name:</source>
       <translation>Introducir un nombre de dominio válido:</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5622" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5583" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5627" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5588" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation>Archivo de Atajos de Teclado (*.ekj)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5601" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5606" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de atajos de teclado &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Sobreescribirlo?&lt;/p&gt;</translation>
     </message>
--- a/src/eric7/i18n/eric7_fr.ts	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/i18n/eric7_fr.ts	Sun Jun 02 09:51:20 2024 +0200
@@ -1826,42 +1826,42 @@
       <translation>{0} n'est pas configuré.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="217" />
+      <location filename="../Utilities/BackgroundService.py" line="230" />
       <source>Initialization of Background Service</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="218" />
-      <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="231" />
+      <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="244" />
       <source>Restart background client?</source>
       <translation>Redémarrer le client en arrière plan ?</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="232" />
+      <location filename="../Utilities/BackgroundService.py" line="245" />
       <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It's used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Yes'&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Retry'&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'No'&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="261" />
+      <location filename="../Utilities/BackgroundService.py" line="274" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="502" />
+      <location filename="../Utilities/BackgroundService.py" line="515" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="511" />
+      <location filename="../Utilities/BackgroundService.py" line="524" />
       <source>Background client disconnected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="512" />
+      <location filename="../Utilities/BackgroundService.py" line="525" />
       <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
       <translation type="unfinished" />
     </message>
@@ -9379,665 +9379,665 @@
   <context>
     <name>DebugUI</name>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="210" />
+      <location filename="../Debugger/DebugUI.py" line="207" />
       <source>Notification</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2342" />
-      <location filename="../Debugger/DebugUI.py" line="237" />
+      <location filename="../Debugger/DebugUI.py" line="2339" />
+      <location filename="../Debugger/DebugUI.py" line="234" />
       <source>Run Script</source>
       <translation>Lancer le script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="239" />
+      <location filename="../Debugger/DebugUI.py" line="236" />
       <source>&amp;Run Script...</source>
       <translation>&amp;Lancer le script...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="245" />
+      <location filename="../Debugger/DebugUI.py" line="242" />
       <source>Run the current Script</source>
       <translation>Lance le script courant</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="247" />
+      <location filename="../Debugger/DebugUI.py" line="244" />
       <source>&lt;b&gt;Run Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Lancer le script&lt;/b&gt;&lt;p&gt;Entrer les arguments de la ligne de commande et lancer le script sans le débogueur. Si le script a des modifications, elles doivent d'abord être enregistrées.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2348" />
-      <location filename="../Debugger/DebugUI.py" line="2342" />
-      <location filename="../Debugger/DebugUI.py" line="258" />
+      <location filename="../Debugger/DebugUI.py" line="2345" />
+      <location filename="../Debugger/DebugUI.py" line="2339" />
+      <location filename="../Debugger/DebugUI.py" line="255" />
       <source>Run Project</source>
       <translation>Lancer le projet</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="260" />
+      <location filename="../Debugger/DebugUI.py" line="257" />
       <source>Run &amp;Project...</source>
       <translation>Lancer &amp;projet...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="266" />
+      <location filename="../Debugger/DebugUI.py" line="263" />
       <source>Run the current Project</source>
       <translation>Lance le projet courant</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="268" />
+      <location filename="../Debugger/DebugUI.py" line="265" />
       <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Lancer le projet&lt;/b&gt;&lt;p&gt;Entrer les arguments de la ligne de commande et lancer le projet sans le débogueur. Si des fichiers du projet on été modifiés ils doivent d'abord être enregistrées.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="280" />
+      <location filename="../Debugger/DebugUI.py" line="277" />
       <source>Coverage run of Script</source>
       <translation>Lancer le script en mode Coverage</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="282" />
+      <location filename="../Debugger/DebugUI.py" line="279" />
       <source>Coverage run of Script...</source>
       <translation>Lancer le script en mode Coverage...</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="286" />
+      <source>Perform a coverage run of the current Script</source>
+      <translation>Lance le script courant en mode Coverage</translation>
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="289" />
-      <source>Perform a coverage run of the current Script</source>
-      <translation>Lance le script courant en mode Coverage</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="292" />
       <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Lancement du script en mode Coverage&lt;/b&gt;&lt;p&gt;Indiquer les paramètres de la ligne de commande et lancer le script en exploitant les outils d'analyse 'Coverage'. Si le fichier a été modifié, il doit être sauvé avant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="303" />
+      <location filename="../Debugger/DebugUI.py" line="300" />
       <source>Coverage run of Project</source>
       <translation>Lancer le projet en mode Coverage</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="305" />
+      <location filename="../Debugger/DebugUI.py" line="302" />
       <source>Coverage run of Project...</source>
       <translation>Lancer le projet en mode Coverage...</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="309" />
+      <source>Perform a coverage run of the current Project</source>
+      <translation>Lance le projet courant en mode coverage</translation>
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="312" />
-      <source>Perform a coverage run of the current Project</source>
-      <translation>Lance le projet courant en mode coverage</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="315" />
       <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Lancement du projet en mode Coverage&lt;/b&gt;&lt;p&gt;Indiquer les paramètres de la ligne de commande et lancer le projet courant en exploitant les outils d'analyse 'Coverage'. Si des fichiers du projet ont été modifiés, ils doivent être sauvés avant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="327" />
+      <location filename="../Debugger/DebugUI.py" line="324" />
       <source>Profile Script</source>
       <translation>Profiler le script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="329" />
+      <location filename="../Debugger/DebugUI.py" line="326" />
       <source>Profile Script...</source>
       <translation>Profiler le script....</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="335" />
+      <location filename="../Debugger/DebugUI.py" line="332" />
       <source>Profile the current Script</source>
       <translation>Profiler le script courant</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="337" />
+      <location filename="../Debugger/DebugUI.py" line="334" />
       <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profiler le script&lt;/b&gt;&lt;p&gt;Entrer les arguments de la ligne de commande et profiler le script. Si le script a subi des modifications, celles-ci doivent d'abord être enregistrées.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="347" />
+      <location filename="../Debugger/DebugUI.py" line="344" />
       <source>Profile Project</source>
       <translation>Profiler le projet</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="349" />
+      <location filename="../Debugger/DebugUI.py" line="346" />
       <source>Profile Project...</source>
       <translation>Profiler le projet...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="355" />
+      <location filename="../Debugger/DebugUI.py" line="352" />
       <source>Profile the current Project</source>
       <translation>Profile le projet courant</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="357" />
+      <location filename="../Debugger/DebugUI.py" line="354" />
       <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profiler le projet&lt;/b&gt;&lt;p&gt;Entrer les arguments de la ligne de commande et profiler le projet. Si des fichiers du projet ont été modifiés, ils doivent d'abord être enregistrés.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2528" />
-      <location filename="../Debugger/DebugUI.py" line="368" />
+      <location filename="../Debugger/DebugUI.py" line="2525" />
+      <location filename="../Debugger/DebugUI.py" line="365" />
       <source>Debug Script</source>
       <translation>Déboguer le script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="370" />
+      <location filename="../Debugger/DebugUI.py" line="367" />
       <source>&amp;Debug Script...</source>
       <translation>&amp;Déboguer le script...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="376" />
+      <location filename="../Debugger/DebugUI.py" line="373" />
       <source>Debug the current Script</source>
       <translation>Débogue le script courant</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="378" />
+      <location filename="../Debugger/DebugUI.py" line="375" />
       <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Deboguer le script&lt;/b&gt;&lt;p&gt;Entrer les arguments de la ligne de commande et donner la ligne qui correspond à la première instruction Python. Si le fichier a été modifié, il doit d'abord être sauvé.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2534" />
-      <location filename="../Debugger/DebugUI.py" line="2528" />
-      <location filename="../Debugger/DebugUI.py" line="390" />
+      <location filename="../Debugger/DebugUI.py" line="2531" />
+      <location filename="../Debugger/DebugUI.py" line="2525" />
+      <location filename="../Debugger/DebugUI.py" line="387" />
       <source>Debug Project</source>
       <translation>Déboguer le projet</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="392" />
+      <location filename="../Debugger/DebugUI.py" line="389" />
       <source>Debug &amp;Project...</source>
       <translation>Déboguer le &amp;Projet...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="398" />
+      <location filename="../Debugger/DebugUI.py" line="395" />
       <source>Debug the current Project</source>
       <translation>Déboguer le projet en cours</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="400" />
+      <location filename="../Debugger/DebugUI.py" line="397" />
       <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Deboguer le projet&lt;/b&gt;&lt;p&gt;Entrer les arguments de la ligne de commande et donner la ligne correspondant à la première instruction Python du script principal du projet en cours.Si des fichiers du projet ont été modifiés, ils doivent d'abord être sauvés.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="414" />
-      <location filename="../Debugger/DebugUI.py" line="412" />
+      <location filename="../Debugger/DebugUI.py" line="411" />
+      <location filename="../Debugger/DebugUI.py" line="409" />
       <source>Restart</source>
       <translation>Redémarrer</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="420" />
+      <location filename="../Debugger/DebugUI.py" line="417" />
       <source>Restart the last debugged script</source>
       <translation>Relance le dernier script débogué</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="422" />
+      <location filename="../Debugger/DebugUI.py" line="419" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="631" />
-      <location filename="../Debugger/DebugUI.py" line="436" />
-      <location filename="../Debugger/DebugUI.py" line="434" />
+      <location filename="../Debugger/DebugUI.py" line="628" />
+      <location filename="../Debugger/DebugUI.py" line="433" />
+      <location filename="../Debugger/DebugUI.py" line="431" />
       <source>Stop</source>
       <translation>Arrêt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="442" />
+      <location filename="../Debugger/DebugUI.py" line="439" />
       <source>Stop the running script.</source>
       <translation>Arrête le run en cours.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="444" />
+      <location filename="../Debugger/DebugUI.py" line="441" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="455" />
+      <location filename="../Debugger/DebugUI.py" line="452" />
       <source>Continue</source>
       <translation>Continuer</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="457" />
+      <location filename="../Debugger/DebugUI.py" line="454" />
       <source>&amp;Continue</source>
       <translation>&amp;Continuer</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="463" />
+      <location filename="../Debugger/DebugUI.py" line="460" />
       <source>Continue running the program from the current line</source>
       <translation>Continuer le programme à partir de la ligne courante</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="465" />
+      <location filename="../Debugger/DebugUI.py" line="462" />
       <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Continuer&lt;/b&gt;&lt;p&gt;Continue le programme à partir de la ligne courante. Le programme s'arrêtera à la fin si aucun point d'arrêt n'est rencontré.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="476" />
+      <location filename="../Debugger/DebugUI.py" line="473" />
       <source>Continue to Cursor</source>
       <translation>Continuer jusqu'au curseur</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="478" />
+      <location filename="../Debugger/DebugUI.py" line="475" />
       <source>Continue &amp;To Cursor</source>
       <translation>Continuer &amp;jusqu'au curseur</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="485" />
+      <location filename="../Debugger/DebugUI.py" line="482" />
       <source>Continue running the program from the current line to the current cursor position</source>
       <translation>Continue le programme en cours de la ligne en cours jusqu'à la position du curseur</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="491" />
+      <location filename="../Debugger/DebugUI.py" line="488" />
       <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Continuer jusqu'au curseur&lt;/b&gt;&lt;p&gt;Continue le programme depuis la ligne courante jusqu'au curseur.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="501" />
+      <location filename="../Debugger/DebugUI.py" line="498" />
       <source>Continue Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="503" />
+      <location filename="../Debugger/DebugUI.py" line="500" />
       <source>Continue &amp;Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="510" />
+      <location filename="../Debugger/DebugUI.py" line="507" />
       <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="516" />
+      <location filename="../Debugger/DebugUI.py" line="513" />
       <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="527" />
+      <location filename="../Debugger/DebugUI.py" line="524" />
       <source>Move Instruction Pointer to Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="529" />
+      <location filename="../Debugger/DebugUI.py" line="526" />
       <source>&amp;Jump To Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="536" />
+      <location filename="../Debugger/DebugUI.py" line="533" />
       <source>Skip the code from the current line to the current cursor position</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="542" />
+      <location filename="../Debugger/DebugUI.py" line="539" />
       <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="556" />
+      <location filename="../Debugger/DebugUI.py" line="553" />
       <source>Single Step</source>
       <translation>Instruction suivante (Single Step)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="558" />
+      <location filename="../Debugger/DebugUI.py" line="555" />
       <source>Sin&amp;gle Step</source>
       <translation>Instruction &amp;suivante (Single Step)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="564" />
+      <location filename="../Debugger/DebugUI.py" line="561" />
       <source>Execute a single Python statement</source>
       <translation>Execute une seule instruction Python</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="566" />
+      <location filename="../Debugger/DebugUI.py" line="563" />
       <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Un seul Pas&lt;/b&gt;&lt;p&gt;Execute une seule instruction Python. Si l'instruction est dans un &lt;tt&gt;import&lt;/tt&gt; , un constructeur de classe, ou un appel à une méthode ou à une fonction, alors le contrôle est rendu au débogueur à l'instruction suivante.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="578" />
+      <location filename="../Debugger/DebugUI.py" line="575" />
       <source>Step Over</source>
       <translation>Bloc d'instructions suivant (Step Over)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="580" />
+      <location filename="../Debugger/DebugUI.py" line="577" />
       <source>Step &amp;Over</source>
       <translation>&amp;Bloc d'instructions suivant (Step Over)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="587" />
+      <location filename="../Debugger/DebugUI.py" line="584" />
       <source>Execute a single Python statement staying in the current frame</source>
       <translation>Execute une seule instruction Python en restant dans le même niveau d'instructions</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="593" />
+      <location filename="../Debugger/DebugUI.py" line="590" />
       <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Bloc suivant&lt;/b&gt;&lt;p&gt;Execute une seule instruction Python en restant au même niveau (profondeur) d'instructions. Si l'instruction est dans un &lt;tt&gt;import&lt;/tt&gt; , un constructeur de classe, ou un appel à une méthode ou à une fonction, alors le contrôle est rendu au débogueur quand l'instruction est terminée.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="606" />
+      <location filename="../Debugger/DebugUI.py" line="603" />
       <source>Step Out</source>
       <translation>Sortie du bloc (Step Out)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="608" />
+      <location filename="../Debugger/DebugUI.py" line="605" />
       <source>Step Ou&amp;t</source>
       <translation>Sortie du bloc (Step &amp;Out)</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="612" />
+      <source>Execute Python statements until leaving the current frame</source>
+      <translation>Débogue les instructions Python à partir de la sortie du bloc courant</translation>
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="615" />
-      <source>Execute Python statements until leaving the current frame</source>
-      <translation>Débogue les instructions Python à partir de la sortie du bloc courant</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="618" />
       <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Sortie du Bloc (Step Out)&lt;/b&gt;&lt;p&gt;Débogue les instructions Python à partir de la sortie du bloc courant. Si les instructions sont dans un &lt;tt&gt;import&lt;/tt&gt; , un constructeur de classe, ou dans une méthode ou une fonction, alors le contrôle est rendu au débogueur au début du bloc suivant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="633" />
+      <location filename="../Debugger/DebugUI.py" line="630" />
       <source>&amp;Stop</source>
       <translation>&amp;Arrêt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="639" />
+      <location filename="../Debugger/DebugUI.py" line="636" />
       <source>Stop debugging</source>
       <translation>Arrêter le débogage</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="641" />
+      <location filename="../Debugger/DebugUI.py" line="638" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Arrêt&lt;/b&gt;&lt;p&gt;Arrête le débogage courant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="647" />
+      <location filename="../Debugger/DebugUI.py" line="644" />
       <source>Variables Type Filter</source>
       <translation>Filtre sur les types de variables</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="648" />
+      <location filename="../Debugger/DebugUI.py" line="645" />
       <source>Varia&amp;bles Type Filter...</source>
       <translation>Filtre sur les types de varia&amp;bles...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="654" />
+      <location filename="../Debugger/DebugUI.py" line="651" />
       <source>Configure variables type filter</source>
       <translation>Configurer le filtre de variables</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="656" />
+      <location filename="../Debugger/DebugUI.py" line="653" />
       <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Filtre de Variables&lt;/b&gt;&lt;p&gt;Configure le filtre de variables. Seuls les types de variables non sélectionnés sont affichés dans la fenêtre des variables globales (resp. locales) pendant la session de débogage.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="667" />
+      <location filename="../Debugger/DebugUI.py" line="664" />
       <source>Exceptions Filter</source>
       <translation>Filtre d'exceptions</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="668" />
+      <location filename="../Debugger/DebugUI.py" line="665" />
       <source>&amp;Exceptions Filter...</source>
       <translation>Filtre d'&amp;exceptions...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="674" />
+      <location filename="../Debugger/DebugUI.py" line="671" />
       <source>Configure exceptions filter</source>
       <translation>Configuration du filtre d'exceptions</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="676" />
+      <location filename="../Debugger/DebugUI.py" line="673" />
       <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Filtre d'exceptions&lt;/b&gt;&lt;p&gt;Configuration du filtre d'exceptions. Seuls les types d'exceptions listés sont signalés pendant le débogage.&lt;/p&gt;&lt;p&gt;Notez que toutes les exceptions non prises en charge sont signalés, indépendamment de la liste de filtres.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="688" />
+      <location filename="../Debugger/DebugUI.py" line="685" />
       <source>Ignored Exceptions</source>
       <translation>Exceptions ignorées</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="689" />
+      <location filename="../Debugger/DebugUI.py" line="686" />
       <source>&amp;Ignored Exceptions...</source>
       <translation>Exceptions &amp;ignorées...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="695" />
+      <location filename="../Debugger/DebugUI.py" line="692" />
       <source>Configure ignored exceptions</source>
       <translation>Configuration des exceptions ignorées</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="697" />
+      <location filename="../Debugger/DebugUI.py" line="694" />
       <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Exceptions ignorées&lt;/b&gt;&lt;p&gt;Configuration des exceptions ignorées. Seuls les types d'exception non listés seront indiqués pendant le débogage.&lt;/p&gt;&lt;p&gt;Les exceptions non gérées ne pourront pas être ignorées.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="719" />
-      <location filename="../Debugger/DebugUI.py" line="713" />
-      <location filename="../Debugger/DebugUI.py" line="711" />
+      <location filename="../Debugger/DebugUI.py" line="716" />
+      <location filename="../Debugger/DebugUI.py" line="710" />
+      <location filename="../Debugger/DebugUI.py" line="708" />
       <source>Toggle Breakpoint</source>
       <translation>Placer/Supprimer un point d'arrêt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="714" />
+      <location filename="../Debugger/DebugUI.py" line="711" />
       <source>Shift+F11</source>
       <comment>Debug|Toggle Breakpoint</comment>
       <translation>Shift+F11</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="721" />
+      <location filename="../Debugger/DebugUI.py" line="718" />
       <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Placer/supprimer un point d'arrêt&lt;/b&gt;&lt;p&gt;Place ou enlève un point d'arrêt sur la ligne courante de l'éditeur en cours.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="739" />
-      <location filename="../Debugger/DebugUI.py" line="731" />
+      <location filename="../Debugger/DebugUI.py" line="736" />
+      <location filename="../Debugger/DebugUI.py" line="728" />
       <source>Edit Breakpoint</source>
       <translation>Edition Point d'arrêt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="733" />
+      <location filename="../Debugger/DebugUI.py" line="730" />
       <source>Edit Breakpoint...</source>
       <translation>Éditer le point d'arrêt...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="734" />
+      <location filename="../Debugger/DebugUI.py" line="731" />
       <source>Shift+F12</source>
       <comment>Debug|Edit Breakpoint</comment>
       <translation>Shift+F12</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="741" />
+      <location filename="../Debugger/DebugUI.py" line="738" />
       <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Edition Point d'arrêt&lt;/b&gt;&lt;p&gt;Edite les propriétés des points d'arrêt au travers d'une boite de dialogue. Ceci s'applique à la ligne courante de l'éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="759" />
-      <location filename="../Debugger/DebugUI.py" line="753" />
-      <location filename="../Debugger/DebugUI.py" line="751" />
+      <location filename="../Debugger/DebugUI.py" line="756" />
+      <location filename="../Debugger/DebugUI.py" line="750" />
+      <location filename="../Debugger/DebugUI.py" line="748" />
       <source>Next Breakpoint</source>
       <translation>Point d'arrêt suivant</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="754" />
+      <location filename="../Debugger/DebugUI.py" line="751" />
       <source>Ctrl+Shift+PgDown</source>
       <comment>Debug|Next Breakpoint</comment>
       <translation>Ctrl+Shift+PgDown</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="761" />
+      <location filename="../Debugger/DebugUI.py" line="758" />
       <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Point d'arrêt suivant&lt;/b&gt;&lt;p&gt;Avance au point d'arrêt suivant dans l'éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="778" />
-      <location filename="../Debugger/DebugUI.py" line="772" />
-      <location filename="../Debugger/DebugUI.py" line="770" />
+      <location filename="../Debugger/DebugUI.py" line="775" />
+      <location filename="../Debugger/DebugUI.py" line="769" />
+      <location filename="../Debugger/DebugUI.py" line="767" />
       <source>Previous Breakpoint</source>
       <translation>Point d'arrêt précédent</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="773" />
+      <location filename="../Debugger/DebugUI.py" line="770" />
       <source>Ctrl+Shift+PgUp</source>
       <comment>Debug|Previous Breakpoint</comment>
       <translation>Ctrl+Shift+PgUp</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="780" />
+      <location filename="../Debugger/DebugUI.py" line="777" />
       <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Point d'arrêt précédent&lt;/b&gt;&lt;p&gt;Remonte au point d'arrêt précédent dans l'éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="796" />
-      <location filename="../Debugger/DebugUI.py" line="790" />
-      <location filename="../Debugger/DebugUI.py" line="789" />
+      <location filename="../Debugger/DebugUI.py" line="793" />
+      <location filename="../Debugger/DebugUI.py" line="787" />
+      <location filename="../Debugger/DebugUI.py" line="786" />
       <source>Clear Breakpoints</source>
       <translation>Suppression des point d'arrêts</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="798" />
+      <location filename="../Debugger/DebugUI.py" line="795" />
       <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Suppression des points d'arrêts&lt;/b&gt;&lt;p&gt;Supprime les points d'arrêts de tous les éditeurs.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="822" />
+      <location filename="../Debugger/DebugUI.py" line="819" />
       <source>&amp;Debug</source>
       <translation>&amp;Débogage</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="824" />
+      <location filename="../Debugger/DebugUI.py" line="821" />
       <source>Sta&amp;rt</source>
       <translation>Déma&amp;rrer</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="826" />
+      <location filename="../Debugger/DebugUI.py" line="823" />
       <source>&amp;Breakpoints</source>
       <translation>&amp;Point d'arrêts</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="869" />
-      <location filename="../Debugger/DebugUI.py" line="867" />
+      <location filename="../Debugger/DebugUI.py" line="866" />
+      <location filename="../Debugger/DebugUI.py" line="864" />
       <source>Start</source>
       <translation>Lancer</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="882" />
-      <location filename="../Debugger/DebugUI.py" line="880" />
+      <location filename="../Debugger/DebugUI.py" line="879" />
+      <location filename="../Debugger/DebugUI.py" line="877" />
       <source>Debug</source>
       <translation>Débogage</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1345" />
+      <location filename="../Debugger/DebugUI.py" line="1342" />
       <source>Message: {0}</source>
       <translation>Message : {0}</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1349" />
+      <location filename="../Debugger/DebugUI.py" line="1346" />
       <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1354" />
+      <location filename="../Debugger/DebugUI.py" line="1351" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1366" />
+      <location filename="../Debugger/DebugUI.py" line="1363" />
       <source>Program terminated</source>
       <translation>Programme terminé</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1402" />
+      <location filename="../Debugger/DebugUI.py" line="1399" />
       <source>The program being debugged contains an unspecified syntax error.</source>
       <translation>Le programme débogué contient une erreur de syntaxe non identifiée.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1422" />
+      <location filename="../Debugger/DebugUI.py" line="1419" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; contient une erreur de syntaxe &lt;b&gt;{1}&lt;/b&gt; à la ligne &lt;b&gt;{2}&lt;/b&gt;, caractère &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1450" />
+      <location filename="../Debugger/DebugUI.py" line="1447" />
       <source>An unhandled exception occured. See the shell window for details.</source>
       <translation>Une erreur imprévue est apparue. Regardez les détails dans la fenêtre shell.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1497" />
+      <location filename="../Debugger/DebugUI.py" line="1494" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1515" />
+      <location filename="../Debugger/DebugUI.py" line="1512" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1573" />
+      <location filename="../Debugger/DebugUI.py" line="1570" />
       <source>&lt;p&gt;The program generate the signal "{0}".&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1591" />
+      <location filename="../Debugger/DebugUI.py" line="1588" />
       <source>The program being debugged has terminated unexpectedly.</source>
       <translation>Le programme débogué s'est terminé de façon prématurée.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1652" />
+      <location filename="../Debugger/DebugUI.py" line="1649" />
       <source>No locals available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1699" />
+      <location filename="../Debugger/DebugUI.py" line="1696" />
       <source>Breakpoint Condition Error</source>
       <translation>Erreur de condition pour le point d'arrêt</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1700" />
+      <location filename="../Debugger/DebugUI.py" line="1697" />
       <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1757" />
+      <location filename="../Debugger/DebugUI.py" line="1754" />
       <source>Watch Expression Error</source>
       <translation>Erreur dans l'expression</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1758" />
+      <location filename="../Debugger/DebugUI.py" line="1755" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1786" />
+      <location filename="../Debugger/DebugUI.py" line="1783" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;L'expression de contrôle '&lt;b&gt;{0}&lt;/b&gt;' existe déjà.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1791" />
+      <location filename="../Debugger/DebugUI.py" line="1788" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;L'expression de contrôle '&lt;b&gt;{0}&lt;/b&gt;' pour la variable &lt;b&gt;{1}&lt;/b&gt; existe déjà.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1797" />
+      <location filename="../Debugger/DebugUI.py" line="1794" />
       <source>Watch expression already exists</source>
       <translation>L'expression existe déjà</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1962" />
-      <location filename="../Debugger/DebugUI.py" line="1953" />
+      <location filename="../Debugger/DebugUI.py" line="1959" />
+      <location filename="../Debugger/DebugUI.py" line="1950" />
       <source>Coverage Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1955" />
+      <location filename="../Debugger/DebugUI.py" line="1952" />
       <source>Coverage Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2349" />
-      <location filename="../Debugger/DebugUI.py" line="2158" />
-      <location filename="../Debugger/DebugUI.py" line="1963" />
+      <location filename="../Debugger/DebugUI.py" line="2346" />
+      <location filename="../Debugger/DebugUI.py" line="2155" />
+      <location filename="../Debugger/DebugUI.py" line="1960" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>Il n'y a pas de script principal défini dans le projet en cours. Abandon</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2157" />
-      <location filename="../Debugger/DebugUI.py" line="2148" />
+      <location filename="../Debugger/DebugUI.py" line="2154" />
+      <location filename="../Debugger/DebugUI.py" line="2145" />
       <source>Profile Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2150" />
+      <location filename="../Debugger/DebugUI.py" line="2147" />
       <source>Profile Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2535" />
+      <location filename="../Debugger/DebugUI.py" line="2532" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation>Il n'y a pas de script principal défini dans le projet en cours. Débogage impossible.</translation>
     </message>
@@ -10756,12 +10756,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1451" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1458" />
       <source>Debug Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1452" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1459" />
       <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -12589,7 +12589,7 @@
   <context>
     <name>Editor</name>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3527" />
+      <location filename="../QScintilla/Editor.py" line="3525" />
       <location filename="../QScintilla/Editor.py" line="470" />
       <location filename="../QScintilla/Editor.py" line="455" />
       <source>Open File</source>
@@ -12661,7 +12661,7 @@
       <translation>Décommenter</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9939" />
+      <location filename="../QScintilla/Editor.py" line="9937" />
       <location filename="../QScintilla/Editor.py" line="969" />
       <source>Generate Docstring</source>
       <translation type="unfinished" />
@@ -12939,7 +12939,7 @@
       <translation type="unfinished">Orthographe</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9026" />
+      <location filename="../QScintilla/Editor.py" line="9024" />
       <location filename="../QScintilla/Editor.py" line="1367" />
       <source>Check spelling...</source>
       <translation>Correction orthographique...</translation>
@@ -13000,7 +13000,7 @@
       <translation>Éditer le point d'arrêt...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6498" />
+      <location filename="../QScintilla/Editor.py" line="6496" />
       <location filename="../QScintilla/Editor.py" line="1452" />
       <source>Enable breakpoint</source>
       <translation>Activer le point d'arrêt</translation>
@@ -13162,444 +13162,444 @@
       <translation>Le fichier est en lecture seule. Sauvez d'abord votre fichier sous un autre nom.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="2701" />
+      <location filename="../QScintilla/Editor.py" line="2699" />
       <source>Add Breakpoint</source>
       <translation type="unfinished">Ajouter un point d'arrêt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="2702" />
+      <location filename="../QScintilla/Editor.py" line="2700" />
       <source>No Python byte code will be created for the selected line. No break point will be set!</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3056" />
+      <location filename="../QScintilla/Editor.py" line="3054" />
       <source>Printing...</source>
       <translation>Impression....</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="3071" />
+      <source>Printing completed</source>
+      <translation>Impression terminée</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="3073" />
-      <source>Printing completed</source>
-      <translation>Impression terminée</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="3075" />
       <source>Error while printing</source>
       <translation>Erreur durant l'impression</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3078" />
+      <location filename="../QScintilla/Editor.py" line="3076" />
       <source>Printing aborted</source>
       <translation>Impression abandonnée</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3460" />
+      <location filename="../QScintilla/Editor.py" line="3458" />
       <source>File Modified</source>
       <translation>Fichier Modifié</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3461" />
+      <location filename="../QScintilla/Editor.py" line="3459" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; a des modifications non enregistrées.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3528" />
+      <location filename="../QScintilla/Editor.py" line="3526" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; ne peut être ouvert.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3719" />
-      <location filename="../QScintilla/Editor.py" line="3700" />
-      <location filename="../QScintilla/Editor.py" line="3660" />
+      <location filename="../QScintilla/Editor.py" line="3717" />
+      <location filename="../QScintilla/Editor.py" line="3698" />
+      <location filename="../QScintilla/Editor.py" line="3658" />
       <source>Save File</source>
       <translation>Enregistrer Fichier</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3661" />
+      <location filename="../QScintilla/Editor.py" line="3659" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; ne peut être enregistré.&lt;br/&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3720" />
+      <location filename="../QScintilla/Editor.py" line="3718" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3864" />
+      <location filename="../QScintilla/Editor.py" line="3862" />
       <source>Save File to Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3865" />
+      <location filename="../QScintilla/Editor.py" line="3863" />
       <source>Enter the complete device file path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5653" />
+      <location filename="../QScintilla/Editor.py" line="5651" />
       <source>Autocompletion</source>
       <translation>Autocompletion</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5654" />
+      <location filename="../QScintilla/Editor.py" line="5652" />
       <source>Autocompletion is not available because there is no autocompletion source set.</source>
       <translation>L'autocompletion n'est pas disponible car aucune source d'autocomplétion n'est définie.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5788" />
+      <location filename="../QScintilla/Editor.py" line="5786" />
       <source>Auto-Completion Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5789" />
+      <location filename="../QScintilla/Editor.py" line="5787" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6085" />
+      <location filename="../QScintilla/Editor.py" line="6083" />
       <source>Call-Tips Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6086" />
+      <location filename="../QScintilla/Editor.py" line="6084" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6502" />
+      <location filename="../QScintilla/Editor.py" line="6500" />
       <source>Disable breakpoint</source>
       <translation>Désactiver le point d'arrêt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6917" />
+      <location filename="../QScintilla/Editor.py" line="6915" />
       <source>Code Coverage</source>
       <translation>Code Coverage</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6918" />
+      <location filename="../QScintilla/Editor.py" line="6916" />
       <source>Please select a coverage file</source>
       <translation>Sélectionner un fichier coverage</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6993" />
-      <location filename="../QScintilla/Editor.py" line="6985" />
+      <location filename="../QScintilla/Editor.py" line="6991" />
+      <location filename="../QScintilla/Editor.py" line="6983" />
       <source>Show Code Coverage Annotations</source>
       <translation>Afficher les annotations de Code Coverage</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6986" />
+      <location filename="../QScintilla/Editor.py" line="6984" />
       <source>All lines have been covered.</source>
       <translation>Toutes les lignes ont été executées.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6994" />
+      <location filename="../QScintilla/Editor.py" line="6992" />
       <source>There is no coverage file available.</source>
       <translation>Impossible de trouver le fichier de coverage.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7102" />
+      <location filename="../QScintilla/Editor.py" line="7100" />
       <source>Profile Data</source>
       <translation>Profiler de données</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7103" />
+      <location filename="../QScintilla/Editor.py" line="7101" />
       <source>Please select a profile file</source>
       <translation>Sélectionner un fichier profile</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7265" />
-      <location filename="../QScintilla/Editor.py" line="7259" />
+      <location filename="../QScintilla/Editor.py" line="7263" />
+      <location filename="../QScintilla/Editor.py" line="7257" />
       <source>Syntax Error</source>
       <translation>Erreur de syntaxe</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7266" />
+      <location filename="../QScintilla/Editor.py" line="7264" />
       <source>No syntax error message available.</source>
       <translation>Aucun message d'erreur de syntaxe..</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7513" />
-      <location filename="../QScintilla/Editor.py" line="7507" />
+      <location filename="../QScintilla/Editor.py" line="7511" />
+      <location filename="../QScintilla/Editor.py" line="7505" />
       <source>Warning</source>
       <translation>Warning</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7513" />
+      <location filename="../QScintilla/Editor.py" line="7511" />
       <source>No warning messages available.</source>
       <translation>Pas de message d'alerte disponible.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7592" />
+      <location filename="../QScintilla/Editor.py" line="7590" />
       <source>Info: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7608" />
-      <location filename="../QScintilla/Editor.py" line="7594" />
+      <location filename="../QScintilla/Editor.py" line="7606" />
+      <location filename="../QScintilla/Editor.py" line="7592" />
       <source>Error: {0}</source>
       <translation>Erreur : {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7596" />
+      <location filename="../QScintilla/Editor.py" line="7594" />
       <source>Style: {0}</source>
       <translation>Style : {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7601" />
+      <location filename="../QScintilla/Editor.py" line="7599" />
       <source>Warning: {0}</source>
       <translation>Alerte : {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7729" />
       <source>Macro Name</source>
       <translation>Nom de la macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7729" />
       <source>Select a macro name:</source>
       <translation>Sélectionner un nom de macro:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7757" />
+      <location filename="../QScintilla/Editor.py" line="7755" />
       <source>Load macro file</source>
       <translation>Charger un fichier macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7803" />
-      <location filename="../QScintilla/Editor.py" line="7759" />
-      <source>Macro files (*.macro)</source>
-      <translation>Fichier Macro (*.macro)</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7781" />
-      <location filename="../QScintilla/Editor.py" line="7771" />
-      <source>Error loading macro</source>
-      <translation>Erreur lors du chargement de la macro</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7772" />
-      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Le fichier macro &lt;b&gt;{0}&lt;/b&gt; ne peut être lu.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7782" />
-      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Le fichier macro &lt;b&gt;{0}&lt;/b&gt; est corrompu.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="7801" />
+      <location filename="../QScintilla/Editor.py" line="7757" />
+      <source>Macro files (*.macro)</source>
+      <translation>Fichier Macro (*.macro)</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7779" />
+      <location filename="../QScintilla/Editor.py" line="7769" />
+      <source>Error loading macro</source>
+      <translation>Erreur lors du chargement de la macro</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7770" />
+      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Le fichier macro &lt;b&gt;{0}&lt;/b&gt; ne peut être lu.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7780" />
+      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Le fichier macro &lt;b&gt;{0}&lt;/b&gt; est corrompu.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7799" />
       <source>Save macro file</source>
       <translation>Enregistrer le fichier macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7819" />
+      <location filename="../QScintilla/Editor.py" line="7817" />
       <source>Save macro</source>
       <translation>Enregistrer la macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7820" />
+      <location filename="../QScintilla/Editor.py" line="7818" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier macro &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7835" />
+      <location filename="../QScintilla/Editor.py" line="7833" />
       <source>Error saving macro</source>
       <translation>Erreur lors de l'enregistrement de la macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7836" />
+      <location filename="../QScintilla/Editor.py" line="7834" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier macro &lt;b&gt;{0}&lt;/b&gt; ne peut être écrit.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7849" />
+      <location filename="../QScintilla/Editor.py" line="7847" />
       <source>Start Macro Recording</source>
       <translation>Démarrer l'enregistrement de la macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7850" />
+      <location filename="../QScintilla/Editor.py" line="7848" />
       <source>Macro recording is already active. Start new?</source>
       <translation>L'enregistrement de macro est déjà actif. En démarrer une nouvelle ?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7876" />
+      <location filename="../QScintilla/Editor.py" line="7874" />
       <source>Macro Recording</source>
       <translation>Enregistrement de macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7877" />
+      <location filename="../QScintilla/Editor.py" line="7875" />
       <source>Enter name of the macro:</source>
       <translation>Entrer le nom de la macro:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8060" />
+      <location filename="../QScintilla/Editor.py" line="8058" />
       <source>{0} (ro)</source>
       <translation type="unfinished">{0} (ro)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8245" />
+      <location filename="../QScintilla/Editor.py" line="8243" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8251" />
+      <location filename="../QScintilla/Editor.py" line="8249" />
       <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
       <translation>&lt;br&gt;&lt;b&gt;Alerte :&lt;/b&gt; Vous allez perdre vos modifications à la réouverture.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8258" />
+      <location filename="../QScintilla/Editor.py" line="8256" />
       <source>File changed</source>
       <translation>Fichier modifié</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8351" />
+      <location filename="../QScintilla/Editor.py" line="8349" />
       <source>Reload File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8352" />
+      <location filename="../QScintilla/Editor.py" line="8350" />
       <source>&lt;p&gt;The editor contains unsaved modifications.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reloading it.&lt;/p&gt;&lt;p&gt;Shall the editor really be reloaded?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8452" />
+      <location filename="../QScintilla/Editor.py" line="8450" />
       <source>Drop Error</source>
       <translation>Erreur de suppression</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8453" />
+      <location filename="../QScintilla/Editor.py" line="8451" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; n'est pas un fichier.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="8472" />
+      <source>Resources</source>
+      <translation>Ressources</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="8474" />
-      <source>Resources</source>
-      <translation>Ressources</translation>
+      <source>Add file...</source>
+      <translation>Ajouter un fichier...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="8475" />
+      <source>Add files...</source>
+      <translation>Ajouter des fichiers...</translation>
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="8476" />
-      <source>Add file...</source>
-      <translation>Ajouter un fichier...</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="8477" />
-      <source>Add files...</source>
-      <translation>Ajouter des fichiers...</translation>
+      <source>Add aliased file...</source>
+      <translation>Ajouter un fichier alias...</translation>
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="8478" />
-      <source>Add aliased file...</source>
-      <translation>Ajouter un fichier alias...</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="8480" />
       <source>Add localized resource...</source>
       <translation>Ajouter une ressource localisée...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8483" />
+      <location filename="../QScintilla/Editor.py" line="8481" />
       <source>Add resource frame</source>
       <translation>Ajouter un cadre ressource</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8503" />
+      <location filename="../QScintilla/Editor.py" line="8501" />
       <source>Add file resource</source>
       <translation>Ajoute un fichier ressource</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8517" />
+      <location filename="../QScintilla/Editor.py" line="8515" />
       <source>Add file resources</source>
       <translation>Ajoute des fichiers ressources</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8541" />
-      <location filename="../QScintilla/Editor.py" line="8535" />
+      <location filename="../QScintilla/Editor.py" line="8539" />
+      <location filename="../QScintilla/Editor.py" line="8533" />
       <source>Add aliased file resource</source>
       <translation>Ajoute un alias de fichier ressource</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8542" />
+      <location filename="../QScintilla/Editor.py" line="8540" />
       <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8617" />
+      <location filename="../QScintilla/Editor.py" line="8615" />
       <source>Package Diagram</source>
       <translation>Diagramme de package</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8618" />
+      <location filename="../QScintilla/Editor.py" line="8616" />
       <source>Include class attributes?</source>
       <translation>Inclure les attributs de classes ?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8638" />
+      <location filename="../QScintilla/Editor.py" line="8636" />
       <source>Imports Diagram</source>
       <translation>Diagramme des modules</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8639" />
+      <location filename="../QScintilla/Editor.py" line="8637" />
       <source>Include imports from external modules?</source>
       <translation>Inclure l'importation de modules externes?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8658" />
+      <location filename="../QScintilla/Editor.py" line="8656" />
       <source>Application Diagram</source>
       <translation>Diagramme de l'application</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8659" />
+      <location filename="../QScintilla/Editor.py" line="8657" />
       <source>Include module names?</source>
       <translation>Inclure les noms de modules ?</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="9028" />
+      <source>Add to dictionary</source>
+      <translation>Ajouter au dictionnaire</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="9030" />
-      <source>Add to dictionary</source>
-      <translation>Ajouter au dictionnaire</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="9032" />
       <source>Ignore All</source>
       <translation>Tout ignorer</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9479" />
+      <location filename="../QScintilla/Editor.py" line="9477" />
       <source>Sort Lines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9480" />
+      <location filename="../QScintilla/Editor.py" line="9478" />
       <source>The selection contains illegal data for a numerical sort.</source>
       <translation>La sélection contient des données illégales pour un tri numérique.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9573" />
+      <location filename="../QScintilla/Editor.py" line="9571" />
       <source>Register Mouse Click Handler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9574" />
+      <location filename="../QScintilla/Editor.py" line="9572" />
       <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9667" />
+      <location filename="../QScintilla/Editor.py" line="9665" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9673" />
+      <location filename="../QScintilla/Editor.py" line="9671" />
       <source>{0:4d}    {1}
     =&gt;  {2}</source>
       <comment>line number, source code, file name</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9742" />
+      <location filename="../QScintilla/Editor.py" line="9740" />
       <source>EditorConfig Properties</source>
       <translation>Propriétés d'EditorConfig</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9743" />
+      <location filename="../QScintilla/Editor.py" line="9741" />
       <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Les propriétés d'EditorConfig du fichier &lt;b&gt;{0}&lt;/b&gt; n'ont pas pu être chargées.&lt;/p&gt;</translation>
     </message>
@@ -18823,12 +18823,12 @@
   <context>
     <name>EricApplication</name>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="227" />
+      <location filename="../EricWidgets/EricApplication.py" line="226" />
       <source>Loading Style Sheet</source>
       <translation type="unfinished">Chargement d'une feuille de style</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="230" />
+      <location filename="../EricWidgets/EricApplication.py" line="229" />
       <source>&lt;p&gt;The Qt Style Sheet file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;La feuille de style Qt &lt;b&gt;{0}&lt;/b&gt; ne peut être lue.&lt;br&gt;Raison: {1}&lt;/p&gt;</translation>
     </message>
@@ -18982,12 +18982,12 @@
   <context>
     <name>EricJsonServer</name>
     <message>
-      <location filename="../EricNetwork/EricJsonServer.py" line="185" />
+      <location filename="../EricNetwork/EricJsonServer.py" line="199" />
       <source>JSON Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricNetwork/EricJsonServer.py" line="186" />
+      <location filename="../EricNetwork/EricJsonServer.py" line="200" />
       <source>&lt;p&gt;The response received from the client could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -19458,39 +19458,39 @@
   <context>
     <name>EricPathPickerBase</name>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="178" />
-      <location filename="../EricWidgets/EricPathPicker.py" line="107" />
-      <location filename="../EricWidgets/EricPathPicker.py" line="100" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="177" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="106" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="99" />
       <source>Enter Path Name</source>
       <translation type="unfinished">Entrer le nom du chemin</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="175" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="174" />
       <source>Enter Path Names separated by ';'</source>
       <translation type="unfinished">Entrer les noms de chemin séparés par ';'</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="520" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="519" />
       <source>Choose a file to open</source>
       <translation type="unfinished">Choisir un fichier à ouvrir</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="522" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="521" />
       <source>Choose files to open</source>
       <translation type="unfinished">Choisir les fichiers à ouvrir</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="524" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="523" />
       <source>Choose files and directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="530" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="529" />
       <source>Choose a file to save</source>
       <translation type="unfinished">Choisir un fichier à enregistrer</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="532" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="531" />
       <source>Choose a directory</source>
       <translation type="unfinished">Choisir un répertoire</translation>
     </message>
@@ -20276,12 +20276,12 @@
   <context>
     <name>EricTldExtractor</name>
     <message>
-      <location filename="../EricNetwork/EricTldExtractor.py" line="294" />
+      <location filename="../EricNetwork/EricTldExtractor.py" line="293" />
       <source>TLD Data File not found</source>
       <translation type="unfinished">Fichier TLD Data non trouvé</translation>
     </message>
     <message>
-      <location filename="../EricNetwork/EricTldExtractor.py" line="295" />
+      <location filename="../EricNetwork/EricTldExtractor.py" line="294" />
       <source>&lt;p&gt;The file 'effective_tld_names.dat' was not found!&lt;br/&gt;You can download it from '&lt;a href="{0}"&gt;&lt;b&gt;here&lt;/b&gt;&lt;/a&gt;' to one of the following paths:&lt;/p&gt;&lt;ul&gt;{1}&lt;/ul&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -32266,77 +32266,77 @@
       <translation type="unfinished">Page vide</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="573" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="575" />
       <source>Backward</source>
       <translation type="unfinished">Précédent</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="578" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="580" />
       <source>Forward</source>
       <translation type="unfinished">Suivant</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="583" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="585" />
       <source>Reload</source>
       <translation type="unfinished">Recharger</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="595" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="597" />
       <source>Copy Page URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="601" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="603" />
       <source>Bookmark Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="609" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="611" />
       <source>Zoom in</source>
       <translation type="unfinished">Zoom avant</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="614" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="616" />
       <source>Zoom out</source>
       <translation type="unfinished">Zoom arrière</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="619" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="621" />
       <source>Zoom reset</source>
       <translation type="unfinished">Annulation du zoom</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="625" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="627" />
       <source>Copy</source>
       <translation type="unfinished">Copier</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="631" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="633" />
       <source>Select All</source>
       <translation type="unfinished">Tout sélectionner</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="638" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="640" />
       <source>Close</source>
       <translation type="unfinished">Fermer</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="643" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="645" />
       <source>Close Others</source>
       <translation type="unfinished">Fermer les autres</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="661" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="663" />
       <source>Open Link in New Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="668" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="670" />
       <source>Open Link in Background Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="676" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="678" />
       <source>Copy URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
@@ -32344,184 +32344,184 @@
   <context>
     <name>HelpViewerWidget</name>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="126" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="127" />
       <source>Open a local file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="132" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="133" />
       <source>Select action from menu</source>
       <translation type="unfinished">Sélectionner une action du menu</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="148" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="149" />
       <source>Move one page backward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="153" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="154" />
       <source>Move one page forward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="165" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="166" />
       <source>Reload the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="176" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="177" />
       <source>Zoom in on the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="182" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="183" />
       <source>Zoom out on the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="189" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="190" />
       <source>Reset the zoom level of the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="201" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="202" />
       <source>Add a new empty page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="207" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="208" />
       <source>Close the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="218" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="219" />
       <source>Show or hide the search pane</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="294" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="295" />
       <source>Show list of open pages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="297" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="298" />
       <source>Show the table of contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="300" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="301" />
       <source>Show the help document index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="303" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="304" />
       <source>Show the help search window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="306" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="307" />
       <source>Show list of bookmarks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
-      <source>eric API Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="445" />
-      <source>Python 3 Documentation</source>
-      <translation type="unfinished">Documentation Python 3</translation>
+      <source>eric API Documentation</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="446" />
-      <source>Qt5 Documentation</source>
-      <translation type="unfinished">Documentation Qt5</translation>
+      <source>Python 3 Documentation</source>
+      <translation type="unfinished">Documentation Python 3</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="447" />
-      <source>Qt6 Documentation</source>
-      <translation type="unfinished">Documentation Qt5 {6 ?}</translation>
+      <source>Qt5 Documentation</source>
+      <translation type="unfinished">Documentation Qt5</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
-      <source>PyQt5 Documentation</source>
-      <translation type="unfinished">Documentation PyQt5</translation>
+      <source>Qt6 Documentation</source>
+      <translation type="unfinished">Documentation Qt5 {6 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
-      <source>PyQt6 Documentation</source>
-      <translation type="unfinished">Documentation PyQt5 {6 ?}</translation>
+      <source>PyQt5 Documentation</source>
+      <translation type="unfinished">Documentation PyQt5</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished">Documentation PySide2</translation>
+      <source>PyQt6 Documentation</source>
+      <translation type="unfinished">Documentation PyQt5 {6 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
+      <source>PySide2 Documentation</source>
+      <translation type="unfinished">Documentation PySide2</translation>
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="452" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished">Documentation PySide2 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="508" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="509" />
       <source>Open HTML File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="510" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="511" />
       <source>HTML Files (*.htm *.html);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="697" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="698" />
       <source>Help Engine</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="721" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="722" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="732" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="733" />
       <source>eric Help Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="757" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="758" />
       <source>Manage QtHelp Documents</source>
       <translation type="unfinished">Gérer les documents QtHelp</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="760" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="761" />
       <source>Reindex Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="765" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="766" />
       <source>Configure Help Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="858" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="838" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="859" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="839" />
       <source>Clear History</source>
       <translation type="unfinished">Effacer l'historique</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="961" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="962" />
       <source>Updating search index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1019" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1020" />
       <source>Filtered by: </source>
       <translation type="unfinished">Filtré par : </translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1055" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1050" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1056" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1051" />
       <source>Unfiltered</source>
       <translation type="unfinished">non filtré</translation>
     </message>
@@ -42086,22 +42086,22 @@
   <context>
     <name>Histedit</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="76" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="75" />
       <source>Starting histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="104" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="102" />
       <source>Continue histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="131" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="129" />
       <source>Abort histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="159" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="157" />
       <source>Edit Plan</source>
       <translation type="unfinished" />
     </message>
@@ -50230,17 +50230,17 @@
   <context>
     <name>LogViewerPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="36" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="33" />
       <source>&lt;b&gt;Message Filters for Standard Output&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stdout.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="43" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="40" />
       <source>&lt;b&gt;Message Filters for Standard Error &lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stderr.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="50" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="47" />
       <source>&lt;b&gt;Message Filters for both&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stdout or stderr.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -51868,8 +51868,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="364" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="347" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="361" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="344" />
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.ui" line="0" />
       <source>Press to show the password</source>
@@ -52153,66 +52153,66 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="56" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="53" />
       <source>Automatic</source>
       <translation>Automatique</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="55" />
+      <source>Light</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="58" />
-      <source>Light</source>
+      <source>Dark</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="61" />
-      <source>Dark</source>
+      <source>Blue Cerulean</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="64" />
-      <source>Blue Cerulean</source>
+      <source>Brown Sand</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="67" />
-      <source>Brown Sand</source>
+      <source>Blue NCS</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="70" />
-      <source>Blue NCS</source>
+      <source>High Contrast</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="73" />
-      <source>High Contrast</source>
+      <source>Blue Icy</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="76" />
-      <source>Blue Icy</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="79" />
       <source>Qt</source>
       <translation>Qt</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="90" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="88" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="85" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="82" />
+      <source>All Files (*)</source>
+      <translation>Tous les fichiers (*)</translation>
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="93" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="91" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="88" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="85" />
-      <source>All Files (*)</source>
-      <translation>Tous les fichiers (*)</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="96" />
       <source>open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="360" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="343" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="357" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="340" />
       <source>Press to hide the password</source>
       <translation type="unfinished">Cliquer pour cacher le mot de passe</translation>
     </message>
@@ -58525,62 +58525,62 @@
       <translation>Installer vers le répertoire utilisateur</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="44" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="42" />
       <source>Enter requirements file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="47" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="45" />
       <source>Press to select the requirements file through a file selection dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="50" />
+      <source>Text Files (*.txt);;All Files (*)</source>
+      <translation>Fichiers texte (*.txt);;Tous les fichiers (*)</translation>
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="52" />
-      <source>Text Files (*.txt);;All Files (*)</source>
-      <translation>Fichiers texte (*.txt);;Tous les fichiers (*)</translation>
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="54" />
       <source>Enter 'pyproject.toml' file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="57" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="55" />
       <source>Press to select the 'pyproject.toml' file through a file selection dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="60" />
+      <source>TOML Files (*.toml);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="62" />
-      <source>TOML Files (*.toml);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="64" />
       <source>Enter package file:</source>
       <translation>Entrer le fichier de package :</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="67" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="65" />
       <source>Press to select the package file through a file selection dialog.</source>
       <translation>Cliquer pour sélectionner le fichier du package à l'aide du sélectionneur de fichier.</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="73" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="71" />
       <source>Python Wheel (*.whl);;Archive Files (*.tar.gz *.zip);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="80" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="78" />
       <source>Enter file name:</source>
       <translation>Entrer le nom de fichier :</translation>
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="81" />
+      <source>Press to select a file through a file selection dialog.</source>
+      <translation>Cliquer pour sélectionner un fichier à l'aide du sélectionneur de fichier.</translation>
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="83" />
-      <source>Press to select a file through a file selection dialog.</source>
-      <translation>Cliquer pour sélectionner un fichier à l'aide du sélectionneur de fichier.</translation>
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="85" />
       <source>All Files (*)</source>
       <translation>Tous les fichiers (*)</translation>
     </message>
@@ -61023,18 +61023,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1901" />
+      <location filename="../Preferences/__init__.py" line="1907" />
       <source>Export Preferences</source>
       <translation>Export des préférences</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1930" />
-      <location filename="../Preferences/__init__.py" line="1903" />
+      <location filename="../Preferences/__init__.py" line="1936" />
+      <location filename="../Preferences/__init__.py" line="1909" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation>Fichier propriétés (*.ini);;Tous les fichiers (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1928" />
+      <location filename="../Preferences/__init__.py" line="1934" />
       <source>Import Preferences</source>
       <translation>Import des préférences</translation>
     </message>
@@ -62710,9 +62710,9 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6752" />
-      <location filename="../Project/Project.py" line="6723" />
-      <location filename="../Project/Project.py" line="6677" />
+      <location filename="../Project/Project.py" line="6746" />
+      <location filename="../Project/Project.py" line="6717" />
+      <location filename="../Project/Project.py" line="6671" />
       <location filename="../Project/Project.py" line="4820" />
       <source>Execute Make</source>
       <translation>Exécuter Make</translation>
@@ -62733,7 +62733,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6729" />
+      <location filename="../Project/Project.py" line="6723" />
       <location filename="../Project/Project.py" line="4839" />
       <source>Test for Changes</source>
       <translation type="unfinished" />
@@ -63268,37 +63268,37 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6678" />
+      <location filename="../Project/Project.py" line="6672" />
       <source>The make process did not start.</source>
       <translation>Le processus make n'a pas démarré.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6724" />
+      <location filename="../Project/Project.py" line="6718" />
       <source>The make process crashed.</source>
       <translation>Crash du processus make.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6732" />
+      <location filename="../Project/Project.py" line="6726" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6737" />
+      <location filename="../Project/Project.py" line="6731" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6753" />
+      <location filename="../Project/Project.py" line="6747" />
       <source>The makefile contains errors.</source>
       <translation>Le makefile contient des erreurs.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7172" />
+      <location filename="../Project/Project.py" line="7166" />
       <source>Interpreter Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7173" />
+      <location filename="../Project/Project.py" line="7167" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation type="unfinished" />
     </message>
@@ -74371,7 +74371,7 @@
       <translation type="unfinished">Afficher les sources</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2178" />
+      <location filename="../QScintilla/Shell.py" line="2179" />
       <location filename="../QScintilla/Shell.py" line="1907" />
       <location filename="../QScintilla/Shell.py" line="1906" />
       <location filename="../QScintilla/Shell.py" line="401" />
@@ -74512,59 +74512,59 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2329" />
+      <location filename="../QScintilla/Shell.py" line="2330" />
       <source>Drop Error</source>
       <translation>Erreur de suppression</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2330" />
+      <location filename="../QScintilla/Shell.py" line="2331" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; n'est pas un fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2576" />
-      <location filename="../QScintilla/Shell.py" line="2562" />
-      <location filename="../QScintilla/Shell.py" line="2541" />
-      <source>Save Shell Contents</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="2543" />
-      <source>Text Files (*.txt);;All Files (*)</source>
-      <translation type="unfinished">Fichiers texte (*.txt);;Tous les fichiers (*)</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="2563" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-      <translation type="unfinished">&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Shell.py" line="2577" />
+      <location filename="../QScintilla/Shell.py" line="2563" />
+      <location filename="../QScintilla/Shell.py" line="2542" />
+      <source>Save Shell Contents</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2544" />
+      <source>Text Files (*.txt);;All Files (*)</source>
+      <translation type="unfinished">Fichiers texte (*.txt);;Tous les fichiers (*)</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2564" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2578" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; ne peut être enregistré.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2591" />
+      <location filename="../QScintilla/Shell.py" line="2592" />
       <source>&lt;tr&gt;&lt;td&gt;%restart&lt;/td&gt;&lt;td&gt;Kill the shell and start a new one.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%clear&lt;/td&gt;&lt;td&gt;Clear the display of the shell window.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%start [environment]&lt;/td&gt;&lt;td&gt;Start a shell for a virtual environment with the given name. If no name is given, a default shell is started.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%envs&lt;br/&gt;%environments&lt;/td&gt;&lt;td&gt;Show a list of known virtual environment names.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%which&lt;/td&gt;&lt;td&gt;Show the name of the active virtual environment.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%hist [n]&lt;br/&gt;%history [n]&lt;/td&gt;&lt;td&gt;Show the most recent 'n' entries of the history. If 'n' is not given, show all entries.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%shist&lt;br/&gt;%shistory&lt;br/&gt;%select_history&lt;/td&gt;&lt;td&gt;Select a command from the history.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%chist&lt;br/&gt;%chistory&lt;br/&gt;%clear_history&lt;/td&gt;&lt;td&gt;Clear the current history after confirmation.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%help&lt;/td&gt;&lt;td&gt;Show this help text.&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2613" />
+      <location filename="../QScintilla/Shell.py" line="2614" />
       <source>&lt;tr&gt;&lt;td&gt;%quit&lt;br/&gt;%quit()&lt;br/&gt;%exit&lt;br/&gt;%exit()&lt;/td&gt;&lt;td&gt;Exit the application.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;These commands are available through the window menus as well.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2621" />
+      <location filename="../QScintilla/Shell.py" line="2622" />
       <source>&lt;/table&gt;&lt;p&gt;These commands are available through the context menu as well.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2628" />
-      <source>Shell Special Commands</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/Shell.py" line="2629" />
+      <source>Shell Special Commands</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2630" />
       <source>The shell supports these special commands:</source>
       <translation type="unfinished" />
     </message>
@@ -90409,2545 +90409,2565 @@
   <context>
     <name>UserInterface</name>
     <message>
-      <location filename="../UI/UserInterface.py" line="308" />
+      <location filename="../UI/UserInterface.py" line="314" />
       <source>Initializing Basic Services...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="343" />
+      <location filename="../UI/UserInterface.py" line="349" />
       <source>Initializing Plugin Manager...</source>
       <translation>Initialisation du gestionnaire de plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="350" />
+      <location filename="../UI/UserInterface.py" line="356" />
       <source>Generating Main User Interface...</source>
       <translation>Création de l'interface utilisateur...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="408" />
+      <location filename="../UI/UserInterface.py" line="414" />
       <source>Setting up signal/slot-connections...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="602" />
+      <location filename="../UI/UserInterface.py" line="607" />
       <source>Initializing Tools...</source>
       <translation>Initialisation des outils...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="613" />
+      <location filename="../UI/UserInterface.py" line="618" />
       <source>Registering Objects...</source>
       <translation>Enregistrement des objets...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="647" />
+      <location filename="../UI/UserInterface.py" line="652" />
       <source>Initializing Actions...</source>
       <translation>Initialisation des actions...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="649" />
+      <location filename="../UI/UserInterface.py" line="654" />
       <source>Initializing Menus...</source>
       <translation>Initialisation des menus...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="651" />
+      <location filename="../UI/UserInterface.py" line="656" />
       <source>Initializing Toolbars...</source>
       <translation>Initialisation des barres d'outils...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="653" />
+      <location filename="../UI/UserInterface.py" line="658" />
       <source>Initializing Statusbar...</source>
       <translation>Initialisation de la barre d'état...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="680" />
+      <location filename="../UI/UserInterface.py" line="685" />
       <source>Initializing Single Application Server...</source>
       <translation>Initialisation du serveur d'application...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="686" />
-      <source>Initializing Plugins...</source>
-      <translation>Initialisation en cours des plugins...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="689" />
-      <source>Activating Plugins...</source>
-      <translation>Activation des plugins...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="691" />
-      <source>Generating Plugins Toolbars...</source>
-      <translation type="unfinished" />
+      <source>Initializing Plugins...</source>
+      <translation>Initialisation en cours des plugins...</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="694" />
+      <source>Activating Plugins...</source>
+      <translation>Activation des plugins...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="696" />
+      <source>Generating Plugins Toolbars...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="699" />
       <source>Cleaning Plugins Download Area...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="704" />
+      <location filename="../UI/UserInterface.py" line="709" />
       <source>Restoring Toolbarmanager...</source>
       <translation>Restauration des barres d'outils...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="712" />
+      <location filename="../UI/UserInterface.py" line="717" />
       <source>Setting View Profile...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="725" />
-      <source>Reading Tasks...</source>
-      <translation>Lecture en cours des tâches...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="730" />
-      <source>Reading Templates...</source>
-      <translation>Lecture en cours des gabarits...</translation>
+      <source>Reading Tasks...</source>
+      <translation>Lecture en cours des tâches...</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="735" />
+      <source>Reading Templates...</source>
+      <translation>Lecture en cours des gabarits...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="740" />
       <source>Starting Debugger...</source>
       <translation>Démarrage du débuggeur...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2195" />
-      <location filename="../UI/UserInterface.py" line="1086" />
+      <location filename="../UI/UserInterface.py" line="2200" />
+      <location filename="../UI/UserInterface.py" line="1091" />
       <source>Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2241" />
-      <location filename="../UI/UserInterface.py" line="1096" />
+      <location filename="../UI/UserInterface.py" line="2246" />
+      <location filename="../UI/UserInterface.py" line="1101" />
       <source>Horizontal Toolbox</source>
       <translation>Barre horizontale</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2218" />
-      <location filename="../UI/UserInterface.py" line="1107" />
+      <location filename="../UI/UserInterface.py" line="2223" />
+      <location filename="../UI/UserInterface.py" line="1112" />
       <source>Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2037" />
-      <location filename="../UI/UserInterface.py" line="1301" />
-      <location filename="../UI/UserInterface.py" line="1117" />
+      <location filename="../UI/UserInterface.py" line="2042" />
+      <location filename="../UI/UserInterface.py" line="1306" />
+      <location filename="../UI/UserInterface.py" line="1122" />
       <source>Multiproject-Viewer</source>
       <translation>Gestionnaire de multi-projets</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2015" />
-      <location filename="../UI/UserInterface.py" line="1307" />
-      <location filename="../UI/UserInterface.py" line="1123" />
+      <location filename="../UI/UserInterface.py" line="2020" />
+      <location filename="../UI/UserInterface.py" line="1312" />
+      <location filename="../UI/UserInterface.py" line="1128" />
       <source>Project-Viewer</source>
       <translation>Gestionnaire de projet</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2577" />
-      <location filename="../UI/UserInterface.py" line="2576" />
-      <location filename="../UI/UserInterface.py" line="1314" />
-      <location filename="../UI/UserInterface.py" line="1130" />
+      <location filename="../UI/UserInterface.py" line="2582" />
+      <location filename="../UI/UserInterface.py" line="2581" />
+      <location filename="../UI/UserInterface.py" line="1319" />
+      <location filename="../UI/UserInterface.py" line="1135" />
       <source>Find/Replace In Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2600" />
-      <location filename="../UI/UserInterface.py" line="2599" />
-      <location filename="../UI/UserInterface.py" line="1321" />
-      <location filename="../UI/UserInterface.py" line="1137" />
+      <location filename="../UI/UserInterface.py" line="2605" />
+      <location filename="../UI/UserInterface.py" line="2604" />
+      <location filename="../UI/UserInterface.py" line="1326" />
+      <location filename="../UI/UserInterface.py" line="1142" />
       <source>Find File</source>
       <translation type="unfinished">Trouver un fichier</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1327" />
-      <location filename="../UI/UserInterface.py" line="1143" />
+      <location filename="../UI/UserInterface.py" line="1332" />
+      <location filename="../UI/UserInterface.py" line="1148" />
       <source>VCS Status</source>
       <translation type="unfinished">VCS Status</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2170" />
-      <location filename="../UI/UserInterface.py" line="1334" />
-      <location filename="../UI/UserInterface.py" line="1150" />
+      <location filename="../UI/UserInterface.py" line="2175" />
+      <location filename="../UI/UserInterface.py" line="1339" />
+      <location filename="../UI/UserInterface.py" line="1155" />
       <source>Template-Viewer</source>
       <translation>Gestionnaire de gabarits</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2103" />
-      <location filename="../UI/UserInterface.py" line="1341" />
-      <location filename="../UI/UserInterface.py" line="1157" />
+      <location filename="../UI/UserInterface.py" line="2108" />
+      <location filename="../UI/UserInterface.py" line="1346" />
+      <location filename="../UI/UserInterface.py" line="1162" />
       <source>File-Browser</source>
       <translation>Navigateur de fichiers</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1348" />
-      <location filename="../UI/UserInterface.py" line="1164" />
+      <location filename="../UI/UserInterface.py" line="1353" />
+      <location filename="../UI/UserInterface.py" line="1169" />
       <source>Symbols</source>
       <translation>Symboles</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2059" />
-      <location filename="../UI/UserInterface.py" line="1370" />
-      <location filename="../UI/UserInterface.py" line="1364" />
-      <location filename="../UI/UserInterface.py" line="1174" />
+      <location filename="../UI/UserInterface.py" line="2064" />
+      <location filename="../UI/UserInterface.py" line="1375" />
+      <location filename="../UI/UserInterface.py" line="1369" />
+      <location filename="../UI/UserInterface.py" line="1179" />
       <source>Debug-Viewer</source>
       <translation>Gestionnaire de débogage</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2431" />
-      <location filename="../UI/UserInterface.py" line="2430" />
-      <location filename="../UI/UserInterface.py" line="1377" />
-      <location filename="../UI/UserInterface.py" line="1181" />
+      <location filename="../UI/UserInterface.py" line="2436" />
+      <location filename="../UI/UserInterface.py" line="2435" />
+      <location filename="../UI/UserInterface.py" line="1382" />
+      <location filename="../UI/UserInterface.py" line="1186" />
       <source>Code Documentation Viewer</source>
       <translation type="unfinished">Visionneur de documentation du code</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2646" />
-      <location filename="../UI/UserInterface.py" line="2645" />
-      <location filename="../UI/UserInterface.py" line="1384" />
-      <location filename="../UI/UserInterface.py" line="1188" />
+      <location filename="../UI/UserInterface.py" line="2651" />
+      <location filename="../UI/UserInterface.py" line="2650" />
+      <location filename="../UI/UserInterface.py" line="1389" />
+      <location filename="../UI/UserInterface.py" line="1193" />
       <source>Help Viewer</source>
       <translation type="unfinished">Visionneur d'aide</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3550" />
-      <location filename="../UI/UserInterface.py" line="2526" />
-      <location filename="../UI/UserInterface.py" line="2525" />
-      <location filename="../UI/UserInterface.py" line="1390" />
-      <location filename="../UI/UserInterface.py" line="1194" />
+      <location filename="../UI/UserInterface.py" line="3575" />
+      <location filename="../UI/UserInterface.py" line="2531" />
+      <location filename="../UI/UserInterface.py" line="2530" />
+      <location filename="../UI/UserInterface.py" line="1395" />
+      <location filename="../UI/UserInterface.py" line="1199" />
       <source>Plugin Repository</source>
       <translation>Référentiel de plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2550" />
-      <location filename="../UI/UserInterface.py" line="2549" />
-      <location filename="../UI/UserInterface.py" line="1396" />
-      <location filename="../UI/UserInterface.py" line="1200" />
-      <source>Virtual Environments</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2458" />
-      <location filename="../UI/UserInterface.py" line="2457" />
+      <location filename="../UI/UserInterface.py" line="2555" />
+      <location filename="../UI/UserInterface.py" line="2554" />
       <location filename="../UI/UserInterface.py" line="1401" />
       <location filename="../UI/UserInterface.py" line="1205" />
+      <source>Virtual Environments</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2463" />
+      <location filename="../UI/UserInterface.py" line="2462" />
+      <location filename="../UI/UserInterface.py" line="1406" />
+      <location filename="../UI/UserInterface.py" line="1210" />
       <source>PyPI</source>
       <translation>PyPI</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2480" />
-      <location filename="../UI/UserInterface.py" line="2479" />
-      <location filename="../UI/UserInterface.py" line="1408" />
-      <location filename="../UI/UserInterface.py" line="1210" />
+      <location filename="../UI/UserInterface.py" line="2485" />
+      <location filename="../UI/UserInterface.py" line="2484" />
+      <location filename="../UI/UserInterface.py" line="1413" />
+      <location filename="../UI/UserInterface.py" line="1215" />
       <source>Conda</source>
       <translation>Conda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1415" />
-      <location filename="../UI/UserInterface.py" line="1217" />
+      <location filename="../UI/UserInterface.py" line="1420" />
+      <location filename="../UI/UserInterface.py" line="1222" />
       <source>Cooperation</source>
       <translation>Coopération</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2358" />
-      <location filename="../UI/UserInterface.py" line="1419" />
-      <location filename="../UI/UserInterface.py" line="1222" />
+      <location filename="../UI/UserInterface.py" line="2363" />
+      <location filename="../UI/UserInterface.py" line="1424" />
+      <location filename="../UI/UserInterface.py" line="1227" />
       <source>IRC</source>
       <translation>IRC</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2502" />
-      <location filename="../UI/UserInterface.py" line="2501" />
-      <location filename="../UI/UserInterface.py" line="1425" />
-      <location filename="../UI/UserInterface.py" line="1229" />
+      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="2506" />
+      <location filename="../UI/UserInterface.py" line="1430" />
+      <location filename="../UI/UserInterface.py" line="1234" />
       <source>MicroPython</source>
       <translation>MicroPython</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2081" />
-      <location filename="../UI/UserInterface.py" line="1433" />
-      <location filename="../UI/UserInterface.py" line="1237" />
+      <location filename="../UI/UserInterface.py" line="2086" />
+      <location filename="../UI/UserInterface.py" line="1438" />
+      <location filename="../UI/UserInterface.py" line="1242" />
       <source>Shell</source>
       <translation>Shell</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2147" />
-      <location filename="../UI/UserInterface.py" line="1439" />
-      <location filename="../UI/UserInterface.py" line="1241" />
+      <location filename="../UI/UserInterface.py" line="2152" />
+      <location filename="../UI/UserInterface.py" line="1444" />
+      <location filename="../UI/UserInterface.py" line="1246" />
       <source>Task-Viewer</source>
       <translation>Visualisueur de tâches</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2125" />
-      <location filename="../UI/UserInterface.py" line="1445" />
-      <location filename="../UI/UserInterface.py" line="1245" />
+      <location filename="../UI/UserInterface.py" line="2130" />
+      <location filename="../UI/UserInterface.py" line="1450" />
+      <location filename="../UI/UserInterface.py" line="1250" />
       <source>Log-Viewer</source>
       <translation>Fenêtre de log</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1452" />
-      <location filename="../UI/UserInterface.py" line="1252" />
+      <location filename="../UI/UserInterface.py" line="1457" />
+      <location filename="../UI/UserInterface.py" line="1257" />
       <source>Numbers</source>
       <translation>Nombres</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1827" />
+      <location filename="../UI/UserInterface.py" line="1832" />
       <source>{0} - Passive Mode</source>
       <translation>{0} - Mode passif</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1836" />
-      <location filename="../UI/UserInterface.py" line="1830" />
+      <location filename="../UI/UserInterface.py" line="1841" />
+      <location filename="../UI/UserInterface.py" line="1835" />
       <source>{0} - {1} - Passive Mode</source>
       <translation>{0} - {1} - Mode Passif</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1842" />
+      <location filename="../UI/UserInterface.py" line="1847" />
       <source>{0} - {1} - {2} - Passive Mode</source>
       <translation>{0} - {1} - {2} - Mode Passif</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1868" />
+      <location filename="../UI/UserInterface.py" line="1873" />
       <source>Quit</source>
       <translation>Quitter</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1870" />
+      <location filename="../UI/UserInterface.py" line="1875" />
       <source>&amp;Quit</source>
       <translation>&amp;Quitter</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1871" />
+      <location filename="../UI/UserInterface.py" line="1876" />
       <source>Ctrl+Q</source>
       <comment>File|Quit</comment>
       <translation>Ctrl+Q</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1876" />
+      <location filename="../UI/UserInterface.py" line="1881" />
       <source>Quit the IDE</source>
       <translation>Quitter l'IDE</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1878" />
+      <location filename="../UI/UserInterface.py" line="1883" />
       <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Quitter l'IDE&lt;/b&gt;&lt;p&gt;Cette commande fait quitter l'IDE. Toutes les modifications non-enregistrées devraient d'abord être enregistrées. Tous les programmes Python débogués seront stoppés et les préférences seront écrites sur le disque.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1892" />
-      <location filename="../UI/UserInterface.py" line="1890" />
+      <location filename="../UI/UserInterface.py" line="1897" />
+      <location filename="../UI/UserInterface.py" line="1895" />
       <source>Restart</source>
       <translation>Redémarrer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1893" />
-      <source>Ctrl+Shift+Q</source>
-      <comment>File|Quit</comment>
-      <translation>Ctrl+Shift+Q</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1898" />
+      <source>Ctrl+Shift+Q</source>
+      <comment>File|Quit</comment>
+      <translation>Ctrl+Shift+Q</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1903" />
       <source>Restart the IDE</source>
       <translation>Rédémarrer l'IDE</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1900" />
+      <location filename="../UI/UserInterface.py" line="1905" />
       <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1918" />
-      <location filename="../UI/UserInterface.py" line="1911" />
+      <location filename="../UI/UserInterface.py" line="1923" />
+      <location filename="../UI/UserInterface.py" line="1916" />
       <source>Save session</source>
       <translation>Enregistrer la session</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1912" />
+      <location filename="../UI/UserInterface.py" line="1917" />
       <source>Save session...</source>
       <translation>Enregistrer session...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1920" />
+      <location filename="../UI/UserInterface.py" line="1925" />
       <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Enregistrer session...&lt;/b&gt;&lt;p&gt;Ceci enregistre la session sur le disque. Une fenêtre s'ouvre pour sélectionner le nom de fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7729" />
-      <location filename="../UI/UserInterface.py" line="1937" />
-      <location filename="../UI/UserInterface.py" line="1930" />
+      <location filename="../UI/UserInterface.py" line="7767" />
+      <location filename="../UI/UserInterface.py" line="1942" />
+      <location filename="../UI/UserInterface.py" line="1935" />
       <source>Load session</source>
       <translation>Charger la session</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1931" />
+      <location filename="../UI/UserInterface.py" line="1936" />
       <source>Load session...</source>
       <translation>Charger la session...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1939" />
+      <location filename="../UI/UserInterface.py" line="1944" />
       <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Charger session...&lt;/b&gt;&lt;p&gt;Ceci charge une session enregistrée sur le disque auparant. Une fenêtre s'ouvre pour sélectionner le fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1949" />
+      <location filename="../UI/UserInterface.py" line="1954" />
       <source>New Window</source>
       <translation>Nouvelle fenêtre</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1951" />
+      <location filename="../UI/UserInterface.py" line="1956" />
       <source>New &amp;Window</source>
       <translation>&amp;Nouvelle fenêtre</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1952" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation>Ctrl+Shift+N</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1957" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation>Ctrl+Shift+N</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1962" />
       <source>Open a new eric instance</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1959" />
+      <location filename="../UI/UserInterface.py" line="1964" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1973" />
-      <location filename="../UI/UserInterface.py" line="1971" />
+      <location filename="../UI/UserInterface.py" line="1978" />
+      <location filename="../UI/UserInterface.py" line="1976" />
       <source>Edit Profile</source>
       <translation>Profil d'Edition</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1980" />
+      <location filename="../UI/UserInterface.py" line="1985" />
       <source>Activate the edit view profile</source>
       <translation>Active la fenêtre d'édition des profils Edition/Débogage</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1982" />
+      <location filename="../UI/UserInterface.py" line="1987" />
       <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Edition des profils&lt;/b&gt;&lt;p&gt;Active la fenêtre d'édition des profils Edition/Débogage. On peut y configurer les différentes fenêtres devant apparaitre en mode Edition ou Débogage.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1995" />
-      <location filename="../UI/UserInterface.py" line="1993" />
+      <location filename="../UI/UserInterface.py" line="2000" />
+      <location filename="../UI/UserInterface.py" line="1998" />
       <source>Debug Profile</source>
       <translation>Profil Débogage</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2002" />
+      <location filename="../UI/UserInterface.py" line="2007" />
       <source>Activate the debug view profile</source>
       <translation>Active le profil Débogage</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2004" />
+      <location filename="../UI/UserInterface.py" line="2009" />
       <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profil Debogage&lt;/b&gt;&lt;p&gt;Active le profil Bébogage. La fenêtre affichée dans ce mode peut être configurée avec la fenêtre "Edition des profils"&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2016" />
+      <location filename="../UI/UserInterface.py" line="2021" />
       <source>&amp;Project-Viewer</source>
       <translation>Gestionnaire de &amp;projet</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2017" />
+      <location filename="../UI/UserInterface.py" line="2022" />
       <source>Alt+Shift+P</source>
       <translation>Alt+Shift+P</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2023" />
+      <location filename="../UI/UserInterface.py" line="2028" />
       <source>Switch the input focus to the Project-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2026" />
+      <location filename="../UI/UserInterface.py" line="2031" />
       <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2038" />
+      <location filename="../UI/UserInterface.py" line="2043" />
       <source>&amp;Multiproject-Viewer</source>
       <translation>Gestionnaire de &amp;multi-projet</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2039" />
+      <location filename="../UI/UserInterface.py" line="2044" />
       <source>Alt+Shift+M</source>
       <translation>Alt+Shift+M</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2045" />
+      <location filename="../UI/UserInterface.py" line="2050" />
       <source>Switch the input focus to the Multiproject-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2048" />
+      <location filename="../UI/UserInterface.py" line="2053" />
       <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2060" />
+      <location filename="../UI/UserInterface.py" line="2065" />
       <source>&amp;Debug-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2061" />
+      <location filename="../UI/UserInterface.py" line="2066" />
       <source>Alt+Shift+D</source>
       <translation>Alt+Shift+D</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2067" />
+      <location filename="../UI/UserInterface.py" line="2072" />
       <source>Switch the input focus to the Debug-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2070" />
+      <location filename="../UI/UserInterface.py" line="2075" />
       <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2082" />
+      <location filename="../UI/UserInterface.py" line="2087" />
       <source>&amp;Shell</source>
       <translation>&amp;Shell</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2083" />
+      <location filename="../UI/UserInterface.py" line="2088" />
       <source>Alt+Shift+S</source>
       <translation>Alt+Shift+S</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2089" />
+      <location filename="../UI/UserInterface.py" line="2094" />
       <source>Switch the input focus to the Shell window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2092" />
+      <location filename="../UI/UserInterface.py" line="2097" />
       <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2104" />
+      <location filename="../UI/UserInterface.py" line="2109" />
       <source>&amp;File-Browser</source>
       <translation>Navigateur de &amp;fichier</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2105" />
+      <location filename="../UI/UserInterface.py" line="2110" />
       <source>Alt+Shift+F</source>
       <translation>Alt+Shift+F</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2111" />
+      <location filename="../UI/UserInterface.py" line="2116" />
       <source>Switch the input focus to the File-Browser window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2114" />
+      <location filename="../UI/UserInterface.py" line="2119" />
       <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2126" />
+      <location filename="../UI/UserInterface.py" line="2131" />
       <source>Lo&amp;g-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2127" />
+      <location filename="../UI/UserInterface.py" line="2132" />
       <source>Alt+Shift+G</source>
       <translation>Alt+Shift+G</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2133" />
+      <location filename="../UI/UserInterface.py" line="2138" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2136" />
+      <location filename="../UI/UserInterface.py" line="2141" />
       <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2148" />
+      <location filename="../UI/UserInterface.py" line="2153" />
       <source>&amp;Task-Viewer</source>
       <translation>Visionneur de &amp;tâches</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2149" />
+      <location filename="../UI/UserInterface.py" line="2154" />
       <source>Alt+Shift+T</source>
       <translation>Alt+Shift+T</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2155" />
+      <location filename="../UI/UserInterface.py" line="2160" />
       <source>Switch the input focus to the Task-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2158" />
+      <location filename="../UI/UserInterface.py" line="2163" />
       <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2171" />
+      <location filename="../UI/UserInterface.py" line="2176" />
       <source>Templ&amp;ate-Viewer</source>
       <translation>Visionneur de g&amp;abarits</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2172" />
+      <location filename="../UI/UserInterface.py" line="2177" />
       <source>Alt+Shift+A</source>
       <translation>Alt+Shift+A</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2178" />
+      <location filename="../UI/UserInterface.py" line="2183" />
       <source>Switch the input focus to the Template-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2181" />
+      <location filename="../UI/UserInterface.py" line="2186" />
       <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2196" />
+      <location filename="../UI/UserInterface.py" line="2201" />
       <source>&amp;Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2203" />
+      <location filename="../UI/UserInterface.py" line="2208" />
       <source>Toggle the Left Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2205" />
+      <location filename="../UI/UserInterface.py" line="2210" />
       <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2219" />
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&amp;Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2226" />
+      <location filename="../UI/UserInterface.py" line="2231" />
       <source>Toggle the Right Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2228" />
+      <location filename="../UI/UserInterface.py" line="2233" />
       <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2242" />
+      <location filename="../UI/UserInterface.py" line="2247" />
       <source>&amp;Horizontal Toolbox</source>
       <translation>Barre &amp;horizontale</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2249" />
+      <location filename="../UI/UserInterface.py" line="2254" />
       <source>Toggle the Horizontal Toolbox window</source>
       <translation>Afficher/Masquer la barre d'outils horizontale</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2251" />
+      <location filename="../UI/UserInterface.py" line="2256" />
       <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Afficher/Masquer la barre d'outils horizontale&lt;/b&gt;&lt;p&gt;Affiche ou masque la barre d'outils horizontale, selon.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2264" />
+      <location filename="../UI/UserInterface.py" line="2269" />
       <source>Left Sidebar</source>
       <translation>Barre latérale de gauche</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2265" />
+      <location filename="../UI/UserInterface.py" line="2270" />
       <source>&amp;Left Sidebar</source>
       <translation>Barre latérale de &amp;gauche</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2272" />
+      <location filename="../UI/UserInterface.py" line="2277" />
       <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="2274" />
+      <location filename="../UI/UserInterface.py" line="2279" />
       <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="2287" />
+      <location filename="../UI/UserInterface.py" line="2292" />
       <source>Right Sidebar</source>
       <translation type="unfinished">Barre latérale de droite</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2288" />
+      <location filename="../UI/UserInterface.py" line="2293" />
       <source>&amp;Right Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2295" />
+      <location filename="../UI/UserInterface.py" line="2300" />
       <source>Toggle the right sidebar window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2297" />
+      <location filename="../UI/UserInterface.py" line="2302" />
       <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2310" />
+      <location filename="../UI/UserInterface.py" line="2315" />
       <source>Bottom Sidebar</source>
       <translation>Barre du bas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2311" />
+      <location filename="../UI/UserInterface.py" line="2316" />
       <source>&amp;Bottom Sidebar</source>
       <translation>&amp;Barre du bas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2318" />
+      <location filename="../UI/UserInterface.py" line="2323" />
       <source>Toggle the bottom sidebar window</source>
       <translation>Affiche/Masque la barre du bas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2320" />
+      <location filename="../UI/UserInterface.py" line="2325" />
       <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="2333" />
+      <location filename="../UI/UserInterface.py" line="2338" />
       <source>Cooperation-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2334" />
+      <location filename="../UI/UserInterface.py" line="2339" />
       <source>Co&amp;operation-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2335" />
+      <location filename="../UI/UserInterface.py" line="2340" />
       <source>Alt+Shift+O</source>
       <translation>Alt+Shift+O</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2341" />
+      <location filename="../UI/UserInterface.py" line="2346" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2344" />
+      <location filename="../UI/UserInterface.py" line="2349" />
       <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2359" />
+      <location filename="../UI/UserInterface.py" line="2364" />
       <source>&amp;IRC</source>
       <translation>&amp;IRC</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2360" />
+      <location filename="../UI/UserInterface.py" line="2365" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation>Ctrl+Alt+Shift+I</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2366" />
+      <location filename="../UI/UserInterface.py" line="2371" />
       <source>Switch the input focus to the IRC window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2369" />
+      <location filename="../UI/UserInterface.py" line="2374" />
       <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2380" />
+      <location filename="../UI/UserInterface.py" line="2385" />
       <source>Symbols-Viewer</source>
       <translation>Visionneur de symbole</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2381" />
+      <location filename="../UI/UserInterface.py" line="2386" />
       <source>S&amp;ymbols-Viewer</source>
       <translation>Visionneur de s&amp;ymbole</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2382" />
+      <location filename="../UI/UserInterface.py" line="2387" />
       <source>Alt+Shift+Y</source>
       <translation>Alt+Shift+Y</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2388" />
+      <location filename="../UI/UserInterface.py" line="2393" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2391" />
+      <location filename="../UI/UserInterface.py" line="2396" />
       <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2405" />
+      <location filename="../UI/UserInterface.py" line="2410" />
       <source>Numbers-Viewer</source>
       <translation>Visionneur de nombres</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2406" />
+      <location filename="../UI/UserInterface.py" line="2411" />
       <source>Num&amp;bers-Viewer</source>
       <translation>Visionneur de nom&amp;bres</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2407" />
+      <location filename="../UI/UserInterface.py" line="2412" />
       <source>Alt+Shift+B</source>
       <translation>Alt+Shift+B</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2413" />
+      <location filename="../UI/UserInterface.py" line="2418" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2416" />
+      <location filename="../UI/UserInterface.py" line="2421" />
       <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2432" />
+      <location filename="../UI/UserInterface.py" line="2437" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation>Ctrl+Alt+Shift+D</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2438" />
-      <source>Switch the input focus to the Code Documentation Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2443" />
+      <source>Switch the input focus to the Code Documentation Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2448" />
       <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2459" />
+      <location filename="../UI/UserInterface.py" line="2464" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation>Ctrl+Alt+Shift+P</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2465" />
+      <location filename="../UI/UserInterface.py" line="2470" />
       <source>Switch the input focus to the PyPI window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2468" />
+      <location filename="../UI/UserInterface.py" line="2473" />
       <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2481" />
+      <location filename="../UI/UserInterface.py" line="2486" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation>Ctrl+Alt+Shift+C</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2487" />
+      <location filename="../UI/UserInterface.py" line="2492" />
       <source>Switch the input focus to the Conda window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2490" />
+      <location filename="../UI/UserInterface.py" line="2495" />
       <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2503" />
+      <location filename="../UI/UserInterface.py" line="2508" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation>Ctrl+Alt+Shift+M</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2509" />
+      <location filename="../UI/UserInterface.py" line="2514" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2512" />
+      <location filename="../UI/UserInterface.py" line="2517" />
       <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2527" />
+      <location filename="../UI/UserInterface.py" line="2532" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2533" />
+      <location filename="../UI/UserInterface.py" line="2538" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2536" />
+      <location filename="../UI/UserInterface.py" line="2541" />
       <source>&lt;b&gt;Plugin Repository&lt;/b&gt;&lt;p&gt;This switches the input focus to the Plugin Repository window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2551" />
+      <location filename="../UI/UserInterface.py" line="2556" />
       <source>Ctrl+Alt+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2557" />
-      <source>Switch the input focus to the Virtual Environments Manager window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2562" />
+      <source>Switch the input focus to the Virtual Environments Manager window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2567" />
       <source>&lt;b&gt;Virtual Environments&lt;/b&gt;&lt;p&gt;This switches the input focus to the Virtual Environments Manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2578" />
+      <location filename="../UI/UserInterface.py" line="2583" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2584" />
+      <location filename="../UI/UserInterface.py" line="2589" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2587" />
+      <location filename="../UI/UserInterface.py" line="2592" />
       <source>&lt;b&gt;Find/Replace In Files&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find/Replace In Files window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2601" />
+      <location filename="../UI/UserInterface.py" line="2606" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2607" />
+      <location filename="../UI/UserInterface.py" line="2612" />
       <source>Switch the input focus to the Find File window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2610" />
+      <location filename="../UI/UserInterface.py" line="2615" />
       <source>&lt;b&gt;Find File&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find File window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2624" />
-      <location filename="../UI/UserInterface.py" line="2623" />
+      <location filename="../UI/UserInterface.py" line="2629" />
+      <location filename="../UI/UserInterface.py" line="2628" />
       <source>VCS Status List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2625" />
+      <location filename="../UI/UserInterface.py" line="2630" />
       <source>Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2631" />
+      <location filename="../UI/UserInterface.py" line="2636" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2634" />
+      <location filename="../UI/UserInterface.py" line="2639" />
       <source>&lt;b&gt;VCS Status List&lt;/b&gt;&lt;p&gt;This switches the input focus to the VCS Status List window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2647" />
+      <location filename="../UI/UserInterface.py" line="2652" />
       <source>Alt+Shift+H</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2653" />
+      <location filename="../UI/UserInterface.py" line="2658" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2656" />
+      <location filename="../UI/UserInterface.py" line="2661" />
       <source>&lt;b&gt;Help Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2669" />
+      <location filename="../UI/UserInterface.py" line="2674" />
       <source>What's This?</source>
       <translation>Qu'est-ce que c'est ?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2671" />
+      <location filename="../UI/UserInterface.py" line="2676" />
       <source>&amp;What's This?</source>
       <translation>&amp;Qu'est-ce que c'est?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2672" />
-      <source>Shift+F1</source>
-      <translation>Shift+F1</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2677" />
+      <source>Shift+F1</source>
+      <translation>Shift+F1</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2682" />
       <source>Context sensitive help</source>
       <translation>Aide contextuelle</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2679" />
+      <location filename="../UI/UserInterface.py" line="2684" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Affiche l'aide contextuelle&lt;/b&gt;&lt;p&gt;Dans le mode "Qu'est-ce que c'est?", la souris est affichée avec un point d'interrogation, et on peut cliquer sur les éléments de  l'interface pour obtenir une courte description de l'élément. Cette fonction peut être obtenue avec le bouton d'aide contextuelle de la barre principale.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2692" />
+      <location filename="../UI/UserInterface.py" line="2697" />
       <source>Helpviewer</source>
       <translation>Visionneur d'aide</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2694" />
+      <location filename="../UI/UserInterface.py" line="2699" />
       <source>&amp;Helpviewer...</source>
       <translation>Visionneur d'&amp;aide...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2695" />
-      <source>F1</source>
-      <translation>F1</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2700" />
+      <source>F1</source>
+      <translation>F1</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2705" />
       <source>Open the helpviewer window</source>
       <translation>Ouvre le visualiseur d'aide</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2702" />
+      <location filename="../UI/UserInterface.py" line="2707" />
       <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2722" />
+      <location filename="../UI/UserInterface.py" line="2727" />
       <source>Show Versions</source>
       <translation>Afficher les versions</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2723" />
+      <location filename="../UI/UserInterface.py" line="2728" />
       <source>Show &amp;Versions</source>
       <translation>Afficher les &amp;versions</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2729" />
+      <location filename="../UI/UserInterface.py" line="2734" />
       <source>Display version information</source>
       <translation>Affiche les informations sur les versions</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2731" />
+      <location filename="../UI/UserInterface.py" line="2736" />
       <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="2744" />
-      <location filename="../UI/UserInterface.py" line="2737" />
+      <location filename="../UI/UserInterface.py" line="2742" />
+      <source>Copy Versions</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2743" />
+      <source>&amp;Copy Versions</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2750" />
+      <source>Copy version information to the clipboard</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2753" />
+      <source>&lt;b&gt;Copy Versions&lt;/b&gt;&lt;p&gt;This generates version information and copies it to the clipboard.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2769" />
+      <location filename="../UI/UserInterface.py" line="2762" />
       <source>Show Error Log</source>
       <translation>Montrer l'historique d'erreur</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2738" />
+      <location filename="../UI/UserInterface.py" line="2763" />
       <source>Show Error &amp;Log...</source>
       <translation>Montrer &amp;l'historique d'erreur...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2746" />
+      <location filename="../UI/UserInterface.py" line="2771" />
       <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Montrer l'historique d'erreur...&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre avec les messages d'erreur les plus récents.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2755" />
+      <location filename="../UI/UserInterface.py" line="2780" />
       <source>Show Install Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2756" />
+      <location filename="../UI/UserInterface.py" line="2781" />
       <source>Show Install &amp;Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2762" />
+      <location filename="../UI/UserInterface.py" line="2787" />
       <source>Show Installation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2764" />
+      <location filename="../UI/UserInterface.py" line="2789" />
       <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4634" />
-      <location filename="../UI/UserInterface.py" line="2774" />
+      <location filename="../UI/UserInterface.py" line="4672" />
+      <location filename="../UI/UserInterface.py" line="2799" />
       <source>Report Bug</source>
       <translation>Rapport de bogue</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2774" />
+      <location filename="../UI/UserInterface.py" line="2799" />
       <source>Report &amp;Bug...</source>
       <translation>Rapport de &amp;bogue...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2776" />
+      <location filename="../UI/UserInterface.py" line="2801" />
       <source>Report a bug</source>
       <translation>Envoyer un rapport de bogue</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2778" />
+      <location filename="../UI/UserInterface.py" line="2803" />
       <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="2784" />
+      <location filename="../UI/UserInterface.py" line="2809" />
       <source>Request Feature</source>
       <translation>Suggestion d'amélioration</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2785" />
+      <location filename="../UI/UserInterface.py" line="2810" />
       <source>Request &amp;Feature...</source>
       <translation>Suggestion d'&amp;amélioration...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2791" />
+      <location filename="../UI/UserInterface.py" line="2816" />
       <source>Send a feature request</source>
       <translation>Envoyer une suggestion d'amélioration</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2818" />
       <source>&lt;b&gt;Request Feature...&lt;/b&gt;&lt;p&gt;Opens a dialog to send a feature request.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Demande d'amélioration...&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre permettant d'envoyer une demande d'amélioration.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4094" />
-      <location filename="../UI/UserInterface.py" line="2804" />
+      <location filename="../UI/UserInterface.py" line="4120" />
+      <location filename="../UI/UserInterface.py" line="2829" />
       <source>Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2806" />
+      <location filename="../UI/UserInterface.py" line="2831" />
       <source>&amp;Testing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2812" />
+      <location filename="../UI/UserInterface.py" line="2837" />
       <source>Start the testing dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2814" />
+      <location filename="../UI/UserInterface.py" line="2839" />
       <source>&lt;b&gt;Testing&lt;/b&gt;&lt;p&gt;Perform test runs. The dialog gives the ability to select and run a test suite or auto discover them.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2825" />
+      <location filename="../UI/UserInterface.py" line="2850" />
       <source>Restart Last Test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2827" />
+      <location filename="../UI/UserInterface.py" line="2852" />
       <source>&amp;Restart Last Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2833" />
+      <location filename="../UI/UserInterface.py" line="2858" />
       <source>Restarts the last test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2835" />
+      <location filename="../UI/UserInterface.py" line="2860" />
       <source>&lt;b&gt;Restart Last Test&lt;/b&gt;&lt;p&gt;Restarts the test performed last.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2845" />
+      <location filename="../UI/UserInterface.py" line="2870" />
       <source>Rerun Failed Tests</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2847" />
+      <location filename="../UI/UserInterface.py" line="2872" />
       <source>Rerun Failed Tests...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2854" />
+      <location filename="../UI/UserInterface.py" line="2879" />
       <source>Rerun failed tests of the last run</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2857" />
+      <location filename="../UI/UserInterface.py" line="2882" />
       <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last test run.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2867" />
-      <source>Test Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2869" />
-      <source>Test &amp;Script...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2875" />
-      <source>Run tests of the current script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2877" />
-      <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2884" />
-      <source>Test Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2886" />
-      <source>Test &amp;Project...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2892" />
-      <source>Run tests of the current project</source>
+      <source>Test Script</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2894" />
-      <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2903" />
-      <source>Qt-Designer</source>
-      <translation>Qt-Designer</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2905" />
-      <source>Qt-&amp;Designer...</source>
-      <translation>Qt-&amp;Designer...</translation>
+      <source>Test &amp;Script...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2900" />
+      <source>Run tests of the current script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2902" />
+      <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2909" />
+      <source>Test Project</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2911" />
-      <source>Start Qt-Designer</source>
-      <translation>Démarrer Qt-Designer</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2913" />
-      <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="2922" />
-      <source>Qt-Linguist</source>
-      <translation>Qt-Linguist</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2924" />
-      <source>Qt-&amp;Linguist...</source>
-      <translation>Qt-&amp;Linguist...</translation>
+      <source>Test &amp;Project...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2917" />
+      <source>Run tests of the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2919" />
+      <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2928" />
+      <source>Qt-Designer</source>
+      <translation>Qt-Designer</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2930" />
+      <source>Qt-&amp;Designer...</source>
+      <translation>Qt-&amp;Designer...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2936" />
+      <source>Start Qt-Designer</source>
+      <translation>Démarrer Qt-Designer</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2938" />
+      <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="2947" />
+      <source>Qt-Linguist</source>
+      <translation>Qt-Linguist</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2949" />
+      <source>Qt-&amp;Linguist...</source>
+      <translation>Qt-&amp;Linguist...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2955" />
       <source>Start Qt-Linguist</source>
       <translation>Démarrer Qt-Linguist</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2932" />
+      <location filename="../UI/UserInterface.py" line="2957" />
       <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="2940" />
+      <location filename="../UI/UserInterface.py" line="2965" />
       <source>UI Previewer</source>
       <translation>Visionneur d'UI</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2942" />
+      <location filename="../UI/UserInterface.py" line="2967" />
       <source>&amp;UI Previewer...</source>
       <translation>Visionneur d'&amp;UI...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2948" />
+      <location filename="../UI/UserInterface.py" line="2973" />
       <source>Start the UI Previewer</source>
       <translation>Démarre le Visionneur d'UI</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2950" />
-      <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Visulaiseur d'UI&lt;/b&gt;&lt;p&gt;Démarre le visualiseur d'UI.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2956" />
-      <source>Translations Previewer</source>
-      <translation>Visionneur de traductions</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2958" />
-      <source>&amp;Translations Previewer...</source>
-      <translation>Visionneur de &amp;Traductions...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2964" />
-      <source>Start the Translations Previewer</source>
-      <translation>Démarre le visionneur de traductions</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2966" />
-      <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="2975" />
+      <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Visulaiseur d'UI&lt;/b&gt;&lt;p&gt;Démarre le visualiseur d'UI.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2981" />
+      <source>Translations Previewer</source>
+      <translation>Visionneur de traductions</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2983" />
+      <source>&amp;Translations Previewer...</source>
+      <translation>Visionneur de &amp;Traductions...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2989" />
+      <source>Start the Translations Previewer</source>
+      <translation>Démarre le visionneur de traductions</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2991" />
+      <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="3000" />
       <source>Compare Files</source>
       <translation>Comparaison de fichiers</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
-      <source>&amp;Compare Files...</source>
-      <translation>&amp;Comparaison de fichiers...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3002" />
-      <location filename="../UI/UserInterface.py" line="2983" />
+      <source>&amp;Compare Files...</source>
+      <translation>&amp;Comparaison de fichiers...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3027" />
+      <location filename="../UI/UserInterface.py" line="3008" />
       <source>Compare two files</source>
       <translation>Compare deux fichiers</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2985" />
+      <location filename="../UI/UserInterface.py" line="3010" />
       <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="2994" />
+      <location filename="../UI/UserInterface.py" line="3019" />
       <source>Compare Files side by side</source>
       <translation>Comparaison de fichiers côte à côte</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2996" />
+      <location filename="../UI/UserInterface.py" line="3021" />
       <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="3004" />
+      <location filename="../UI/UserInterface.py" line="3029" />
       <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="3014" />
+      <location filename="../UI/UserInterface.py" line="3039" />
       <source>SQL Browser</source>
       <translation>Navigateur SQL</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3016" />
+      <location filename="../UI/UserInterface.py" line="3041" />
       <source>SQL &amp;Browser...</source>
       <translation>&amp;Navigateur SQL...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3022" />
+      <location filename="../UI/UserInterface.py" line="3047" />
       <source>Browse a SQL database</source>
       <translation>Parcourir une base de données SQL</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3024" />
-      <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="3038" />
-      <location filename="../UI/UserInterface.py" line="3030" />
-      <source>Mini Editor</source>
-      <translation>Mini-éditeur</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3032" />
-      <source>Mini &amp;Editor...</source>
-      <translation>Mini édit&amp;eur...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3040" />
-      <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="3049" />
-      <source>Hex Editor</source>
-      <translation>Hex Editor</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3051" />
-      <source>&amp;Hex Editor...</source>
-      <translation>&amp;Hex Editor...</translation>
+      <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="3063" />
+      <location filename="../UI/UserInterface.py" line="3055" />
+      <source>Mini Editor</source>
+      <translation>Mini-éditeur</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3057" />
+      <source>Mini &amp;Editor...</source>
+      <translation>Mini édit&amp;eur...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3065" />
+      <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="3074" />
+      <source>Hex Editor</source>
+      <translation>Hex Editor</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3076" />
+      <source>&amp;Hex Editor...</source>
+      <translation>&amp;Hex Editor...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3082" />
       <source>Start the eric Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3059" />
+      <location filename="../UI/UserInterface.py" line="3084" />
       <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3069" />
+      <location filename="../UI/UserInterface.py" line="3094" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3071" />
-      <source>eric &amp;Web Browser...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3077" />
-      <source>Start the eric Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3079" />
-      <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3088" />
-      <source>Icon Editor</source>
-      <translation>Éditeur d'icone</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3090" />
-      <source>&amp;Icon Editor...</source>
-      <translation>Éditeur d'&amp;icone...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3096" />
+      <source>eric &amp;Web Browser...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3102" />
+      <source>Start the eric Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3104" />
+      <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3113" />
+      <source>Icon Editor</source>
+      <translation>Éditeur d'icone</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3115" />
+      <source>&amp;Icon Editor...</source>
+      <translation>Éditeur d'&amp;icone...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3121" />
       <source>Start the eric Icon Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3098" />
+      <location filename="../UI/UserInterface.py" line="3123" />
       <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6494" />
-      <location filename="../UI/UserInterface.py" line="3110" />
+      <location filename="../UI/UserInterface.py" line="6532" />
+      <location filename="../UI/UserInterface.py" line="3135" />
       <source>Snapshot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3112" />
+      <location filename="../UI/UserInterface.py" line="3137" />
       <source>&amp;Snapshot...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3118" />
+      <location filename="../UI/UserInterface.py" line="3143" />
       <source>Take snapshots of a screen region</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3120" />
+      <location filename="../UI/UserInterface.py" line="3145" />
       <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3130" />
+      <location filename="../UI/UserInterface.py" line="3155" />
       <source>eric PDF Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3132" />
-      <source>eric PDF &amp;Viewer...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3138" />
-      <source>Start the eric PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3140" />
-      <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3149" />
-      <source>Preferences</source>
-      <translation>Préférences</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3151" />
-      <source>&amp;Preferences...</source>
-      <translation>&amp;Préférences...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3157" />
+      <source>eric PDF &amp;Viewer...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3163" />
+      <source>Start the eric PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3165" />
+      <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3174" />
+      <source>Preferences</source>
+      <translation>Préférences</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3176" />
+      <source>&amp;Preferences...</source>
+      <translation>&amp;Préférences...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3182" />
       <source>Set the prefered configuration</source>
       <translation>Édition des préférences</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3159" />
+      <location filename="../UI/UserInterface.py" line="3184" />
       <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="3170" />
+      <location filename="../UI/UserInterface.py" line="3195" />
       <source>Export Preferences</source>
       <translation>Exporte les préférences</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3172" />
+      <location filename="../UI/UserInterface.py" line="3197" />
       <source>E&amp;xport Preferences...</source>
       <translation>E&amp;xporter les préférences...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3178" />
+      <location filename="../UI/UserInterface.py" line="3203" />
       <source>Export the current configuration</source>
       <translation>Exporte la configuration courante</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3180" />
+      <location filename="../UI/UserInterface.py" line="3205" />
       <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="3189" />
+      <location filename="../UI/UserInterface.py" line="3214" />
       <source>Import Preferences</source>
       <translation>Importe les préférences</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3191" />
+      <location filename="../UI/UserInterface.py" line="3216" />
       <source>I&amp;mport Preferences...</source>
       <translation>I&amp;mporter les préférences...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3198" />
+      <location filename="../UI/UserInterface.py" line="3223" />
       <source>Import a previously exported configuration</source>
       <translation>Importe les préférences d'un fichier précédemment exporté</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3201" />
+      <location filename="../UI/UserInterface.py" line="3226" />
       <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Importer les préférences&lt;/b&gt;&lt;p&gt;Importe les préférences d'un fichier précédemment exporté.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3210" />
+      <location filename="../UI/UserInterface.py" line="3235" />
       <source>Export Theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3212" />
-      <source>Export Theme...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3218" />
-      <source>Export the current theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3220" />
-      <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3229" />
-      <source>Import Theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3231" />
-      <source>Import Theme...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3237" />
+      <source>Export Theme...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3243" />
+      <source>Export the current theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3245" />
+      <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3254" />
+      <source>Import Theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3256" />
+      <source>Import Theme...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3262" />
       <source>Import a previously exported theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
+      <location filename="../UI/UserInterface.py" line="3264" />
       <source>&lt;b&gt;Import Theme&lt;/b&gt;&lt;p&gt;Import a previously exported theme.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3248" />
+      <location filename="../UI/UserInterface.py" line="3273" />
       <source>Reload APIs</source>
       <translation>Recharger les APIs</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3248" />
+      <location filename="../UI/UserInterface.py" line="3273" />
       <source>Reload &amp;APIs</source>
       <translation>Recharger les &amp;APIs</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3250" />
+      <location filename="../UI/UserInterface.py" line="3275" />
       <source>Reload the API information</source>
       <translation>Recharger les informations des API</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3252" />
+      <location filename="../UI/UserInterface.py" line="3277" />
       <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="3266" />
-      <location filename="../UI/UserInterface.py" line="3258" />
+      <location filename="../UI/UserInterface.py" line="3291" />
+      <location filename="../UI/UserInterface.py" line="3283" />
       <source>Show external tools</source>
       <translation>Afficher les outils externes</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3260" />
+      <location filename="../UI/UserInterface.py" line="3285" />
       <source>Show external &amp;tools</source>
       <translation>Afficher les &amp;outils externes</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3268" />
+      <location filename="../UI/UserInterface.py" line="3293" />
       <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3278" />
+      <location filename="../UI/UserInterface.py" line="3303" />
       <source>View Profiles</source>
       <translation>Profils de visualisation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3280" />
+      <location filename="../UI/UserInterface.py" line="3305" />
       <source>&amp;View Profiles...</source>
       <translation>Profils de &amp;Visualisation...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3286" />
+      <location filename="../UI/UserInterface.py" line="3311" />
       <source>Configure view profiles</source>
       <translation>Configuration des profils de visualisation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3288" />
+      <location filename="../UI/UserInterface.py" line="3313" />
       <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profils de Visualisation&lt;/b&gt;&lt;p&gt;Configure les modes de visualisation de l'éditeur  (modes Edition/Débogage). Avec cet fenêtre de configuration, on peut sélectionner les sous-fenêtres actives par défaut pour chacun des mode de visualisation.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3299" />
+      <location filename="../UI/UserInterface.py" line="3324" />
       <source>Toolbars</source>
       <translation>Barres d'outils</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3301" />
+      <location filename="../UI/UserInterface.py" line="3326" />
       <source>Tool&amp;bars...</source>
       <translation>&amp;Barres d'outils...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3307" />
+      <location filename="../UI/UserInterface.py" line="3332" />
       <source>Configure toolbars</source>
       <translation>Configuration des barres d'outils</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
+      <location filename="../UI/UserInterface.py" line="3334" />
       <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Barres d'outils&lt;/b&gt;&lt;p&gt;Configuration des barres d'outils. Avec cette fenêtre vous pouvez modifier les actions des différentes barres affichées et créer  vos propres barres d'outils&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3320" />
+      <location filename="../UI/UserInterface.py" line="3345" />
       <source>Keyboard Shortcuts</source>
       <translation>Raccourcis clavier</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3322" />
+      <location filename="../UI/UserInterface.py" line="3347" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation>&amp;Raccourcis claviers...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3328" />
+      <location filename="../UI/UserInterface.py" line="3353" />
       <source>Set the keyboard shortcuts</source>
       <translation>Définition des raccourcis clavier</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3330" />
+      <location filename="../UI/UserInterface.py" line="3355" />
       <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Raccourcis claviers&lt;/b&gt;&lt;p&gt;Edite les raccourcis claviers pour l'application.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7453" />
-      <location filename="../UI/UserInterface.py" line="7434" />
-      <location filename="../UI/UserInterface.py" line="3340" />
+      <location filename="../UI/UserInterface.py" line="7491" />
+      <location filename="../UI/UserInterface.py" line="7472" />
+      <location filename="../UI/UserInterface.py" line="3365" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Exporter les raccourcis clavier</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3342" />
-      <source>&amp;Export Keyboard Shortcuts...</source>
-      <translation>&amp;Exporter les raccourcis claviers...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3348" />
-      <source>Export the keyboard shortcuts</source>
-      <translation>Exporte les raccourcis claviers</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3350" />
-      <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Exporter les raccourcis clavier&lt;/b&gt;&lt;p&gt;Exporte les raccourcis claviers de l'application.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7472" />
-      <location filename="../UI/UserInterface.py" line="3359" />
-      <source>Import Keyboard Shortcuts</source>
-      <translation>Importer des raccourcis clavier</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3361" />
-      <source>&amp;Import Keyboard Shortcuts...</source>
-      <translation>&amp;Importer des raccourcis clavier...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3367" />
+      <source>&amp;Export Keyboard Shortcuts...</source>
+      <translation>&amp;Exporter les raccourcis claviers...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3373" />
+      <source>Export the keyboard shortcuts</source>
+      <translation>Exporte les raccourcis claviers</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3375" />
+      <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Exporter les raccourcis clavier&lt;/b&gt;&lt;p&gt;Exporte les raccourcis claviers de l'application.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="7510" />
+      <location filename="../UI/UserInterface.py" line="3384" />
+      <source>Import Keyboard Shortcuts</source>
+      <translation>Importer des raccourcis clavier</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3386" />
+      <source>&amp;Import Keyboard Shortcuts...</source>
+      <translation>&amp;Importer des raccourcis clavier...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3392" />
       <source>Import the keyboard shortcuts</source>
       <translation>Importe des raccourcis clavier</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3369" />
+      <location filename="../UI/UserInterface.py" line="3394" />
       <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Importer des raccourcis clavier&lt;/b&gt;&lt;p&gt;Importe des raccourcis claviers de l'application.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3379" />
+      <location filename="../UI/UserInterface.py" line="3404" />
       <source>Manage SSL Certificates</source>
       <translation>Gestion des certificats SSL</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3381" />
+      <location filename="../UI/UserInterface.py" line="3406" />
       <source>Manage SSL Certificates...</source>
       <translation>Gestion des certificats SSL...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3388" />
-      <source>Manage the saved SSL certificates</source>
-      <translation>Gestion des certificats SSL enregistrés</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3391" />
-      <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3401" />
-      <source>Edit Message Filters</source>
-      <translation>Éditer les filtres de message</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3403" />
-      <source>Edit Message Filters...</source>
-      <translation>Éditer les filtres de message...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3410" />
-      <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="3413" />
-      <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3432" />
+      <source>Manage the saved SSL certificates</source>
+      <translation>Gestion des certificats SSL enregistrés</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3416" />
+      <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3426" />
-      <location filename="../UI/UserInterface.py" line="3424" />
-      <source>Clear private data</source>
-      <translation>Nettoyer les données privées</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3434" />
-      <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3445" />
-      <location filename="../UI/UserInterface.py" line="3444" />
-      <source>Activate current editor</source>
-      <translation>Activer l'éditeur courant</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3446" />
-      <source>Alt+Shift+E</source>
-      <translation>Alt+Shift+E</translation>
+      <source>Edit Message Filters</source>
+      <translation>Éditer les filtres de message</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3428" />
+      <source>Edit Message Filters...</source>
+      <translation>Éditer les filtres de message...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3435" />
+      <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="3438" />
+      <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3457" />
-      <location filename="../UI/UserInterface.py" line="3456" />
-      <source>Show next</source>
-      <translation>Afficher le suivant</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3458" />
-      <source>Ctrl+Alt+Tab</source>
-      <translation>Ctrl+Alt+Tab</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3469" />
-      <location filename="../UI/UserInterface.py" line="3468" />
-      <source>Show previous</source>
-      <translation>Afficher le précédent</translation>
+      <location filename="../UI/UserInterface.py" line="3451" />
+      <location filename="../UI/UserInterface.py" line="3449" />
+      <source>Clear private data</source>
+      <translation>Nettoyer les données privées</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3459" />
+      <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3470" />
-      <source>Shift+Ctrl+Alt+Tab</source>
-      <translation>Shift+Ctrl+Alt+Tab</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3481" />
-      <location filename="../UI/UserInterface.py" line="3480" />
-      <source>Switch between tabs</source>
-      <translation>Intervertir les onglets</translation>
+      <location filename="../UI/UserInterface.py" line="3469" />
+      <source>Activate current editor</source>
+      <translation>Activer l'éditeur courant</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3471" />
+      <source>Alt+Shift+E</source>
+      <translation>Alt+Shift+E</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3482" />
-      <source>Ctrl+1</source>
-      <translation>Ctrl+1</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3492" />
-      <source>Plugin Infos</source>
-      <translation>Infos Plugins</translation>
+      <location filename="../UI/UserInterface.py" line="3481" />
+      <source>Show next</source>
+      <translation>Afficher le suivant</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3483" />
+      <source>Ctrl+Alt+Tab</source>
+      <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3494" />
+      <location filename="../UI/UserInterface.py" line="3493" />
+      <source>Show previous</source>
+      <translation>Afficher le précédent</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3495" />
+      <source>Shift+Ctrl+Alt+Tab</source>
+      <translation>Shift+Ctrl+Alt+Tab</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3506" />
+      <location filename="../UI/UserInterface.py" line="3505" />
+      <source>Switch between tabs</source>
+      <translation>Intervertir les onglets</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3507" />
+      <source>Ctrl+1</source>
+      <translation>Ctrl+1</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3517" />
+      <source>Plugin Infos</source>
+      <translation>Infos Plugins</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3519" />
       <source>&amp;Plugin Infos...</source>
       <translation>Infos &amp;Plugins...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3500" />
+      <location filename="../UI/UserInterface.py" line="3525" />
       <source>Show Plugin Infos</source>
       <translation>Affiche les infos sur les plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3502" />
+      <location filename="../UI/UserInterface.py" line="3527" />
       <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="3520" />
-      <location filename="../UI/UserInterface.py" line="3512" />
+      <location filename="../UI/UserInterface.py" line="3545" />
+      <location filename="../UI/UserInterface.py" line="3537" />
       <source>Install Plugins</source>
       <translation>Installation de plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3514" />
-      <source>&amp;Install Plugins...</source>
-      <translation>&amp;Installation de plugins...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3522" />
-      <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="3539" />
-      <location filename="../UI/UserInterface.py" line="3531" />
+      <source>&amp;Install Plugins...</source>
+      <translation>&amp;Installation de plugins...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3547" />
+      <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="3564" />
+      <location filename="../UI/UserInterface.py" line="3556" />
       <source>Uninstall Plugin</source>
       <translation>Désinstaller un plugin</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3533" />
-      <source>&amp;Uninstall Plugin...</source>
-      <translation>&amp;Désinstaller un plugin...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3541" />
-      <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="3552" />
-      <source>Plugin &amp;Repository...</source>
-      <translation>&amp;Référentiel de plugins...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3558" />
+      <source>&amp;Uninstall Plugin...</source>
+      <translation>&amp;Désinstaller un plugin...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3566" />
+      <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="3577" />
+      <source>Plugin &amp;Repository...</source>
+      <translation>&amp;Référentiel de plugins...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3583" />
       <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="3560" />
+      <location filename="../UI/UserInterface.py" line="3585" />
       <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="3587" />
-      <location filename="../UI/UserInterface.py" line="3586" />
+      <location filename="../UI/UserInterface.py" line="3612" />
+      <location filename="../UI/UserInterface.py" line="3611" />
       <source>Qt5 Documentation</source>
       <translation>Documentation Qt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3593" />
+      <location filename="../UI/UserInterface.py" line="3618" />
       <source>Open Qt5 Documentation</source>
       <translation>Lance la Documentation Qt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3595" />
+      <location filename="../UI/UserInterface.py" line="3620" />
       <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3608" />
-      <location filename="../UI/UserInterface.py" line="3607" />
+      <location filename="../UI/UserInterface.py" line="3633" />
+      <location filename="../UI/UserInterface.py" line="3632" />
       <source>Qt6 Documentation</source>
       <translation type="unfinished">Documentation Qt5 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3614" />
+      <location filename="../UI/UserInterface.py" line="3639" />
       <source>Open Qt6 Documentation</source>
       <translation type="unfinished">Lance la Documentation Qt5 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3616" />
+      <location filename="../UI/UserInterface.py" line="3641" />
       <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3629" />
-      <location filename="../UI/UserInterface.py" line="3628" />
+      <location filename="../UI/UserInterface.py" line="3654" />
+      <location filename="../UI/UserInterface.py" line="3653" />
       <source>PyQt5 Documentation</source>
       <translation>Documentation PyQt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3635" />
+      <location filename="../UI/UserInterface.py" line="3660" />
       <source>Open PyQt5 Documentation</source>
       <translation>Lance la documentation PyQt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3637" />
+      <location filename="../UI/UserInterface.py" line="3662" />
       <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3650" />
-      <location filename="../UI/UserInterface.py" line="3649" />
+      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3674" />
       <source>PyQt6 Documentation</source>
       <translation type="unfinished">Documentation PyQt5 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3656" />
+      <location filename="../UI/UserInterface.py" line="3681" />
       <source>Open PyQt6 Documentation</source>
       <translation type="unfinished">Lance la documentation PyQt5 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3658" />
+      <location filename="../UI/UserInterface.py" line="3683" />
       <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3676" />
-      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3701" />
+      <location filename="../UI/UserInterface.py" line="3700" />
       <source>Python 3 Documentation</source>
       <translation>Documentation Python 3</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3682" />
+      <location filename="../UI/UserInterface.py" line="3707" />
       <source>Open Python 3 Documentation</source>
       <translation>Ouvrir la Documentation Python 3</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3684" />
-      <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3703" />
-      <location filename="../UI/UserInterface.py" line="3702" />
-      <source>eric API Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3709" />
+      <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3728" />
+      <location filename="../UI/UserInterface.py" line="3727" />
+      <source>eric API Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3734" />
       <source>Open eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3711" />
+      <location filename="../UI/UserInterface.py" line="3736" />
       <source>&lt;b&gt;eric API Documentation&lt;/b&gt;&lt;p&gt;Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3729" />
-      <location filename="../UI/UserInterface.py" line="3728" />
+      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3753" />
       <source>PySide2 Documentation</source>
       <translation>Documentation PySide2</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3735" />
+      <location filename="../UI/UserInterface.py" line="3760" />
       <source>Open PySide2 Documentation</source>
       <translation>Ouvrir la Documentation PySide2</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3737" />
+      <location filename="../UI/UserInterface.py" line="3762" />
       <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3755" />
-      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3780" />
+      <location filename="../UI/UserInterface.py" line="3779" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished">Documentation PySide2 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3761" />
+      <location filename="../UI/UserInterface.py" line="3786" />
       <source>Open PySide6 Documentation</source>
       <translation type="unfinished">Ouvrir la Documentation PySide2 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3763" />
+      <location filename="../UI/UserInterface.py" line="3788" />
       <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3865" />
+      <location filename="../UI/UserInterface.py" line="3890" />
       <source>E&amp;xtras</source>
       <translation>E&amp;xtras</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3875" />
+      <location filename="../UI/UserInterface.py" line="3900" />
       <source>Wi&amp;zards</source>
       <translation>As&amp;sistants</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3893" />
+      <location filename="../UI/UserInterface.py" line="3918" />
       <source>P&amp;lugins</source>
       <translation>P&amp;lugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3902" />
+      <location filename="../UI/UserInterface.py" line="3927" />
       <source>Configure...</source>
       <translation>Configuration...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3911" />
+      <location filename="../UI/UserInterface.py" line="3936" />
       <source>&amp;Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3928" />
+      <location filename="../UI/UserInterface.py" line="3953" />
       <source>Select Tool Group</source>
       <translation>Sélection d'un groupe d'outils</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3939" />
+      <location filename="../UI/UserInterface.py" line="3964" />
       <source>Se&amp;ttings</source>
       <translation>&amp;Configuration</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3972" />
+      <location filename="../UI/UserInterface.py" line="3997" />
       <source>&amp;Window</source>
       <translation>&amp;Fenêtre</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3981" />
+      <location filename="../UI/UserInterface.py" line="4006" />
       <source>&amp;Windows</source>
       <translation>&amp;Fenêtres</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3985" />
+      <location filename="../UI/UserInterface.py" line="4010" />
       <source>Central Park</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3989" />
+      <location filename="../UI/UserInterface.py" line="4014" />
       <source>Left Side</source>
       <translation>Coté gauche</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4008" />
+      <location filename="../UI/UserInterface.py" line="4033" />
       <source>Right Side</source>
       <translation>Coté droit</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4027" />
+      <location filename="../UI/UserInterface.py" line="4052" />
       <source>Bottom Side</source>
       <translation>Coté bas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4035" />
+      <location filename="../UI/UserInterface.py" line="4060" />
       <source>Plug-ins</source>
       <translation>Plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4041" />
+      <location filename="../UI/UserInterface.py" line="4066" />
       <source>&amp;Toolbars</source>
       <translation>&amp;Barres d'Outils</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4054" />
+      <location filename="../UI/UserInterface.py" line="4079" />
       <source>&amp;Help</source>
       <translation>A&amp;ide</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4109" />
-      <location filename="../UI/UserInterface.py" line="4093" />
+      <location filename="../UI/UserInterface.py" line="4135" />
+      <location filename="../UI/UserInterface.py" line="4119" />
       <source>Tools</source>
       <translation>Outils</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4111" />
-      <location filename="../UI/UserInterface.py" line="4097" />
+      <location filename="../UI/UserInterface.py" line="4137" />
+      <location filename="../UI/UserInterface.py" line="4123" />
       <source>Settings</source>
       <translation>Configuration</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6222" />
-      <location filename="../UI/UserInterface.py" line="4112" />
-      <location filename="../UI/UserInterface.py" line="4098" />
+      <location filename="../UI/UserInterface.py" line="6260" />
+      <location filename="../UI/UserInterface.py" line="4138" />
+      <location filename="../UI/UserInterface.py" line="4124" />
       <source>Help</source>
       <translation>Aide</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4113" />
-      <location filename="../UI/UserInterface.py" line="4099" />
+      <location filename="../UI/UserInterface.py" line="4139" />
+      <location filename="../UI/UserInterface.py" line="4125" />
       <source>Profiles</source>
       <translation>Profils</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
-      <location filename="../UI/UserInterface.py" line="4100" />
+      <location filename="../UI/UserInterface.py" line="4140" />
+      <location filename="../UI/UserInterface.py" line="4126" />
       <source>Plugins</source>
       <translation>Plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4110" />
+      <location filename="../UI/UserInterface.py" line="4136" />
       <source>Unittest</source>
       <translation>Tests unitaires</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4284" />
+      <location filename="../UI/UserInterface.py" line="4310" />
       <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Cette zone de la barre d'état affiche le langage de l'éditeur actif.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4293" />
+      <location filename="../UI/UserInterface.py" line="4319" />
       <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Cette partie de la barre d'état affiche l'encodage des éditeurs.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4302" />
+      <location filename="../UI/UserInterface.py" line="4328" />
       <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Cette zone de la barre d'état affiche le type de fin de lignes utilisé pour les éditeurs.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4311" />
+      <location filename="../UI/UserInterface.py" line="4337" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Cette partie de la barre d'état affiche les droits d'écriture des fichiers en cours.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4320" />
+      <location filename="../UI/UserInterface.py" line="4346" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the current editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Cette zone de la barre d'état affiche le numéro de ligne de l'éditeur actif.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4329" />
+      <location filename="../UI/UserInterface.py" line="4355" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Cette zone de la barre d'état affiche la position du curseur.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4343" />
+      <location filename="../UI/UserInterface.py" line="4369" />
       <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Cette zone de la barre d'état permet de zoomer l'éditeur courant ou le shell.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4414" />
-      <location filename="../UI/UserInterface.py" line="4373" />
+      <location filename="../UI/UserInterface.py" line="4440" />
+      <location filename="../UI/UserInterface.py" line="4399" />
       <source>External Tools/{0}</source>
       <translation>Outils externe/{0}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4522" />
+      <location filename="../UI/UserInterface.py" line="4548" />
       <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="4571" />
+      <location filename="../UI/UserInterface.py" line="4597" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Security)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4588" />
+      <location filename="../UI/UserInterface.py" line="4614" />
       <source>Desktop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4592" />
+      <location filename="../UI/UserInterface.py" line="4618" />
       <source>Session Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4595" />
+      <location filename="../UI/UserInterface.py" line="4621" />
       <source>&lt;/table&gt;</source>
       <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4635" />
+      <location filename="../UI/UserInterface.py" line="4673" />
       <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
       <translation>L'adresse mail ou l'adresse du serveur mail est vide. Veuillez configurer vos paramètres mails dans la fenêtre des Préférences.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4970" />
+      <location filename="../UI/UserInterface.py" line="5008" />
       <source>Restart application</source>
       <translation>Redémarrage de l'application</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4971" />
+      <location filename="../UI/UserInterface.py" line="5009" />
       <source>The application needs to be restarted. Do it now?</source>
       <translation>L'application a bersoin d'être relancée. Relancer maintenant ?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4995" />
+      <location filename="../UI/UserInterface.py" line="5033" />
       <source>Upgrade PyQt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4996" />
+      <location filename="../UI/UserInterface.py" line="5034" />
       <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5046" />
-      <location filename="../UI/UserInterface.py" line="5020" />
+      <location filename="../UI/UserInterface.py" line="5084" />
+      <location filename="../UI/UserInterface.py" line="5058" />
       <source>Upgrade Eric</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5021" />
+      <location filename="../UI/UserInterface.py" line="5059" />
       <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5047" />
+      <location filename="../UI/UserInterface.py" line="5085" />
       <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
  Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5105" />
+      <location filename="../UI/UserInterface.py" line="5143" />
       <source>&amp;Builtin Tools</source>
       <translation>Outils &amp;internes</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5124" />
+      <location filename="../UI/UserInterface.py" line="5162" />
       <source>&amp;Plugin Tools</source>
       <translation>Outils &amp;plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5127" />
+      <location filename="../UI/UserInterface.py" line="5165" />
       <source>&amp;User Tools</source>
       <translation>Outils &amp;utilisateurs</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5153" />
+      <location filename="../UI/UserInterface.py" line="5191" />
       <source>Configure Tool Groups ...</source>
       <translation>Configuration des groupes d'outils...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5157" />
+      <location filename="../UI/UserInterface.py" line="5195" />
       <source>Configure current Tool Group ...</source>
       <translation>Configuration du groupe d'outils courant...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5196" />
-      <location filename="../UI/UserInterface.py" line="5176" />
+      <location filename="../UI/UserInterface.py" line="5234" />
+      <location filename="../UI/UserInterface.py" line="5214" />
       <source>No User Tools Configured</source>
       <translation>Pas d'outils utilisateurs configuré</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5272" />
+      <location filename="../UI/UserInterface.py" line="5310" />
       <source>&amp;Show all</source>
       <translation>Tout &amp;afficher</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5274" />
+      <location filename="../UI/UserInterface.py" line="5312" />
       <source>&amp;Hide all</source>
       <translation>Tout &amp;masquer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6359" />
-      <location filename="../UI/UserInterface.py" line="6348" />
-      <location filename="../UI/UserInterface.py" line="6300" />
-      <location filename="../UI/UserInterface.py" line="6290" />
-      <location filename="../UI/UserInterface.py" line="6121" />
-      <location filename="../UI/UserInterface.py" line="6111" />
-      <location filename="../UI/UserInterface.py" line="6053" />
-      <location filename="../UI/UserInterface.py" line="6043" />
+      <location filename="../UI/UserInterface.py" line="6397" />
+      <location filename="../UI/UserInterface.py" line="6386" />
+      <location filename="../UI/UserInterface.py" line="6338" />
+      <location filename="../UI/UserInterface.py" line="6328" />
+      <location filename="../UI/UserInterface.py" line="6159" />
+      <location filename="../UI/UserInterface.py" line="6149" />
+      <location filename="../UI/UserInterface.py" line="6091" />
+      <location filename="../UI/UserInterface.py" line="6081" />
       <source>Problem</source>
       <translation>Problème</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6360" />
-      <location filename="../UI/UserInterface.py" line="6349" />
-      <location filename="../UI/UserInterface.py" line="6301" />
-      <location filename="../UI/UserInterface.py" line="6291" />
-      <location filename="../UI/UserInterface.py" line="6122" />
-      <location filename="../UI/UserInterface.py" line="6112" />
-      <location filename="../UI/UserInterface.py" line="6054" />
-      <location filename="../UI/UserInterface.py" line="6044" />
+      <location filename="../UI/UserInterface.py" line="6398" />
+      <location filename="../UI/UserInterface.py" line="6387" />
+      <location filename="../UI/UserInterface.py" line="6339" />
+      <location filename="../UI/UserInterface.py" line="6329" />
+      <location filename="../UI/UserInterface.py" line="6160" />
+      <location filename="../UI/UserInterface.py" line="6150" />
+      <location filename="../UI/UserInterface.py" line="6092" />
+      <location filename="../UI/UserInterface.py" line="6082" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; n'existe pas ou est de longeur nulle.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6603" />
-      <location filename="../UI/UserInterface.py" line="6514" />
-      <location filename="../UI/UserInterface.py" line="6395" />
-      <location filename="../UI/UserInterface.py" line="6372" />
-      <location filename="../UI/UserInterface.py" line="6313" />
-      <location filename="../UI/UserInterface.py" line="6260" />
-      <location filename="../UI/UserInterface.py" line="6238" />
-      <location filename="../UI/UserInterface.py" line="6197" />
-      <location filename="../UI/UserInterface.py" line="6188" />
-      <location filename="../UI/UserInterface.py" line="6153" />
-      <location filename="../UI/UserInterface.py" line="6144" />
-      <location filename="../UI/UserInterface.py" line="6085" />
-      <location filename="../UI/UserInterface.py" line="6076" />
+      <location filename="../UI/UserInterface.py" line="6641" />
+      <location filename="../UI/UserInterface.py" line="6552" />
+      <location filename="../UI/UserInterface.py" line="6433" />
+      <location filename="../UI/UserInterface.py" line="6410" />
+      <location filename="../UI/UserInterface.py" line="6351" />
+      <location filename="../UI/UserInterface.py" line="6298" />
+      <location filename="../UI/UserInterface.py" line="6276" />
+      <location filename="../UI/UserInterface.py" line="6235" />
+      <location filename="../UI/UserInterface.py" line="6226" />
+      <location filename="../UI/UserInterface.py" line="6191" />
+      <location filename="../UI/UserInterface.py" line="6182" />
+      <location filename="../UI/UserInterface.py" line="6123" />
+      <location filename="../UI/UserInterface.py" line="6114" />
       <source>Process Generation Error</source>
       <translation>Erreur du processus</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6077" />
+      <location filename="../UI/UserInterface.py" line="6115" />
       <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Ne peut lancer Qt-Designer.&lt;br&gt;Vérifier qu'il est disponible en tant que &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6086" />
+      <location filename="../UI/UserInterface.py" line="6124" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6145" />
+      <location filename="../UI/UserInterface.py" line="6183" />
       <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Ne peut lancer Qt-Linguist.&lt;br&gt;Vérifier qu'il est disponible en tant que &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6154" />
+      <location filename="../UI/UserInterface.py" line="6192" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6189" />
+      <location filename="../UI/UserInterface.py" line="6227" />
       <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Ne peut lancer Qt-Assistant.&lt;br&gt;Vérifier qu'il est disponible en tant que &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6198" />
+      <location filename="../UI/UserInterface.py" line="6236" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6223" />
-      <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
-      <translation>Aucun visualiseur personalisé n'est sélectionné. Prière d'en spécifier un dans les préférences.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6239" />
-      <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="6261" />
+      <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
+      <translation>Aucun visualiseur personalisé n'est sélectionné. Prière d'en spécifier un dans les préférences.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6277" />
+      <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6299" />
       <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Impossible de démarrer le visualiseur d'aide.&lt;br&gt;Assurez-vous qu'il est bien ici &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6314" />
+      <location filename="../UI/UserInterface.py" line="6352" />
       <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6373" />
+      <location filename="../UI/UserInterface.py" line="6411" />
       <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6396" />
+      <location filename="../UI/UserInterface.py" line="6434" />
       <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Ne peut lancer le navigateur SQL.&lt;br&gt;Vérifier qu'il est disponible en tant que &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6495" />
+      <location filename="../UI/UserInterface.py" line="6533" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6515" />
+      <location filename="../UI/UserInterface.py" line="6553" />
       <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6548" />
-      <location filename="../UI/UserInterface.py" line="6538" />
-      <source>External Tools</source>
-      <translation>Outils externes</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6539" />
-      <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6549" />
-      <source>No toolgroup entry '{0}' found.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="6586" />
+      <location filename="../UI/UserInterface.py" line="6576" />
+      <source>External Tools</source>
+      <translation>Outils externes</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6577" />
+      <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6587" />
+      <source>No toolgroup entry '{0}' found.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6624" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>Démarrage du processus '{0} {1}'.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6604" />
+      <location filename="../UI/UserInterface.py" line="6642" />
       <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6683" />
+      <location filename="../UI/UserInterface.py" line="6721" />
       <source>Process '{0}' has exited.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6970" />
-      <location filename="../UI/UserInterface.py" line="6908" />
-      <location filename="../UI/UserInterface.py" line="6864" />
-      <location filename="../UI/UserInterface.py" line="6790" />
-      <location filename="../UI/UserInterface.py" line="6726" />
+      <location filename="../UI/UserInterface.py" line="7008" />
+      <location filename="../UI/UserInterface.py" line="6946" />
+      <location filename="../UI/UserInterface.py" line="6902" />
+      <location filename="../UI/UserInterface.py" line="6828" />
+      <location filename="../UI/UserInterface.py" line="6764" />
       <source>Documentation Missing</source>
       <translation>Documentation Manquante</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6971" />
-      <location filename="../UI/UserInterface.py" line="6909" />
-      <location filename="../UI/UserInterface.py" line="6865" />
-      <location filename="../UI/UserInterface.py" line="6791" />
-      <location filename="../UI/UserInterface.py" line="6727" />
+      <location filename="../UI/UserInterface.py" line="7009" />
+      <location filename="../UI/UserInterface.py" line="6947" />
+      <location filename="../UI/UserInterface.py" line="6903" />
+      <location filename="../UI/UserInterface.py" line="6829" />
+      <location filename="../UI/UserInterface.py" line="6765" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6952" />
-      <location filename="../UI/UserInterface.py" line="6834" />
+      <location filename="../UI/UserInterface.py" line="6990" />
+      <location filename="../UI/UserInterface.py" line="6872" />
       <source>Documentation</source>
       <translation>Documentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6835" />
+      <location filename="../UI/UserInterface.py" line="6873" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6953" />
+      <location filename="../UI/UserInterface.py" line="6991" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7132" />
-      <location filename="../UI/UserInterface.py" line="7068" />
+      <location filename="../UI/UserInterface.py" line="7170" />
+      <location filename="../UI/UserInterface.py" line="7106" />
       <source>Start Web Browser</source>
       <translation>Démarrer le navigateur web</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7069" />
+      <location filename="../UI/UserInterface.py" line="7107" />
       <source>The eric web browser could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7133" />
+      <location filename="../UI/UserInterface.py" line="7171" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7179" />
+      <location filename="../UI/UserInterface.py" line="7217" />
       <source>Open Browser</source>
       <translation>Ouverture du navigateur</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7179" />
+      <location filename="../UI/UserInterface.py" line="7217" />
       <source>Could not start a web browser</source>
       <translation>Impossible de lancer le navigateur web</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7512" />
       <location filename="../UI/UserInterface.py" line="7474" />
-      <location filename="../UI/UserInterface.py" line="7436" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7454" />
+      <location filename="../UI/UserInterface.py" line="7492" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7682" />
+      <location filename="../UI/UserInterface.py" line="7720" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7683" />
+      <location filename="../UI/UserInterface.py" line="7721" />
       <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="7706" />
+      <location filename="../UI/UserInterface.py" line="7744" />
       <source>Save Session</source>
       <translation type="unfinished">Enregistrer la session</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7731" />
-      <location filename="../UI/UserInterface.py" line="7708" />
+      <location filename="../UI/UserInterface.py" line="7769" />
+      <location filename="../UI/UserInterface.py" line="7746" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7776" />
+      <location filename="../UI/UserInterface.py" line="7814" />
       <source>Crash Session found!</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7777" />
+      <location filename="../UI/UserInterface.py" line="7815" />
       <source>A session file of a crashed session was found. Shall this session be restored?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8154" />
+      <location filename="../UI/UserInterface.py" line="8192" />
       <source>Drop Error</source>
       <translation>Erreur de suppression</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8155" />
+      <location filename="../UI/UserInterface.py" line="8193" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; n'est pas un fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8341" />
+      <location filename="../UI/UserInterface.py" line="8379" />
       <source>Upgrade available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8342" />
+      <location filename="../UI/UserInterface.py" line="8380" />
       <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8387" />
+      <location filename="../UI/UserInterface.py" line="8425" />
       <source>First time usage</source>
       <translation>Première utilisation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8388" />
+      <location filename="../UI/UserInterface.py" line="8426" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8410" />
+      <location filename="../UI/UserInterface.py" line="8448" />
       <source>Select Workspace Directory</source>
       <translation>Sélectionner le répertoire de travail</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8575" />
+      <location filename="../UI/UserInterface.py" line="8616" />
       <source>Unsaved Data Detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8576" />
+      <location filename="../UI/UserInterface.py" line="8617" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -93390,43 +93410,51 @@
       <translation>&lt;b&gt;Fenêtre de visualisation des variables locales&lt;/b&gt;&lt;p&gt;Cette fenêtre affiche les variables locales du programme débogué.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1055" />
+      <location filename="../Debugger/VariablesViewer.py" line="1056" />
       <source>Show Details...</source>
       <translation>Afficher les détails...</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1057" />
-      <source>Expand</source>
-      <translation>Déployer</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1058" />
-      <source>Collapse</source>
-      <translation>Contracter</translation>
-    </message>
-    <message>
       <location filename="../Debugger/VariablesViewer.py" line="1059" />
+      <source>Expand Subitems</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/VariablesViewer.py" line="1062" />
+      <source>Collapse Subitems</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/VariablesViewer.py" line="1064" />
       <source>Collapse All</source>
       <translation>Tout contracter</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1067" />
-      <location filename="../Debugger/VariablesViewer.py" line="1061" />
+      <location filename="../Debugger/VariablesViewer.py" line="1072" />
+      <location filename="../Debugger/VariablesViewer.py" line="1066" />
       <source>Refresh</source>
       <translation>Rafraichir</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1069" />
-      <location filename="../Debugger/VariablesViewer.py" line="1063" />
+      <location filename="../Debugger/VariablesViewer.py" line="1074" />
+      <location filename="../Debugger/VariablesViewer.py" line="1068" />
       <source>Configure...</source>
       <translation>Configuration...</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1071" />
-      <location filename="../Debugger/VariablesViewer.py" line="1064" />
+      <location filename="../Debugger/VariablesViewer.py" line="1076" />
+      <location filename="../Debugger/VariablesViewer.py" line="1069" />
       <source>Variables Type Filter...</source>
       <translation>Filtre de type de variables...</translation>
     </message>
+    <message>
+      <source>Expand</source>
+      <translation type="vanished">Déployer</translation>
+    </message>
+    <message>
+      <source>Collapse</source>
+      <translation type="vanished">Contracter</translation>
+    </message>
   </context>
   <context>
     <name>VcsCommandOptionsDialog</name>
@@ -98035,91 +98063,91 @@
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; a des modifications non enregistrées. &lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5972" />
+      <location filename="../ViewManager/ViewManager.py" line="5969" />
       <source>Line: {0:5}</source>
       <translation>Ligne: {0:5}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5978" />
+      <location filename="../ViewManager/ViewManager.py" line="5975" />
       <source>Pos: {0:5}</source>
       <translation>Position: {0:5}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5998" />
+      <location filename="../ViewManager/ViewManager.py" line="5995" />
       <source>Language: {0}</source>
       <translation>Langage : {0}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6007" />
+      <location filename="../ViewManager/ViewManager.py" line="6004" />
       <source>EOL Mode: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6503" />
-      <location filename="../ViewManager/ViewManager.py" line="6460" />
+      <location filename="../ViewManager/ViewManager.py" line="6500" />
+      <location filename="../ViewManager/ViewManager.py" line="6457" />
       <source>&amp;Clear</source>
       <translation>&amp;Effacer</translation>
     </message>
     <message>
+      <location filename="../ViewManager/ViewManager.py" line="6494" />
+      <source>&amp;Add</source>
+      <translation>&amp;Ajouter</translation>
+    </message>
+    <message>
       <location filename="../ViewManager/ViewManager.py" line="6497" />
-      <source>&amp;Add</source>
-      <translation>&amp;Ajouter</translation>
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="6500" />
       <source>&amp;Edit...</source>
       <translation>&amp;Editer...</translation>
     </message>
     <message>
+      <location filename="../ViewManager/ViewManager.py" line="7567" />
+      <location filename="../ViewManager/ViewManager.py" line="7553" />
+      <location filename="../ViewManager/ViewManager.py" line="7521" />
+      <source>Edit Spelling Dictionary</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7524" />
+      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7540" />
+      <source>Editing {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7556" />
+      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../ViewManager/ViewManager.py" line="7570" />
-      <location filename="../ViewManager/ViewManager.py" line="7556" />
-      <location filename="../ViewManager/ViewManager.py" line="7524" />
-      <source>Edit Spelling Dictionary</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7527" />
-      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7543" />
-      <source>Editing {0}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7559" />
-      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7573" />
       <source>The spelling dictionary was saved successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6682" />
+      <location filename="../ViewManager/ViewManager.py" line="6679" />
       <source>Clear Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6683" />
+      <location filename="../ViewManager/ViewManager.py" line="6680" />
       <source>Do you really want to delete all text of the current editor?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="8103" />
-      <location filename="../ViewManager/ViewManager.py" line="8086" />
+      <location filename="../ViewManager/ViewManager.py" line="8100" />
+      <location filename="../ViewManager/ViewManager.py" line="8083" />
       <source>File System Watcher Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="8087" />
+      <location filename="../ViewManager/ViewManager.py" line="8084" />
       <source>&lt;p&gt;The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should &lt;ul&gt;&lt;li&gt;sudo nano /etc/sysctl.conf&lt;/li&gt;&lt;li&gt;add to the bottom "fs.inotify.max_user_instances = 1024"&lt;/li&gt;&lt;li&gt;save and close the editor&lt;/li&gt;&lt;li&gt;sudo sysctl -p&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Error Message: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="8104" />
+      <location filename="../ViewManager/ViewManager.py" line="8101" />
       <source>The file system watcher reported an error with code &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -100011,16 +100039,6 @@
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
-      <source>Select to delete all web databases</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
-      <source>Web &amp;Databases</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
       <source>Select to delete all remembered zoom settings</source>
       <translation type="unfinished" />
     </message>
@@ -100284,6 +100302,16 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
+      <source>Select to render all web contents using a dark theme.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
+      <source>Force Dark Mode</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
       <source>Startup</source>
       <translation>Démarrage</translation>
     </message>
@@ -101234,355 +101262,355 @@
   <context>
     <name>WebBrowserView</name>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="366" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="353" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="341" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="329" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="367" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="354" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="342" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="330" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="330" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="331" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; n'existe pas.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="367" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="342" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="368" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="343" />
       <source>&lt;p&gt;Could not start a viewer for file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="354" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="355" />
       <source>&lt;p&gt;Could not start an application for URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="608" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="609" />
       <source>Match {0} of {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="634" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="635" />
       <source>Inspect Element...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="666" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="667" />
       <source>No suggestions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="723" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="724" />
       <source>Open Link in New Tab	Ctrl+LMB</source>
       <translation type="unfinished">Ouvrir le lien dans un nouvel onglet	Ctrl+LMB</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="728" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="729" />
       <source>Open Link in New Window</source>
       <translation>Ouvrir le lien dans une nouvelle fenêtre</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="734" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="735" />
       <source>Open Link in New Private Window</source>
       <translation>Ouvrir le lien dans une nouvelle fenêtre privée</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="741" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="742" />
       <source>Save Lin&amp;k</source>
       <translation>&amp;Enregistrer lien</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="745" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="746" />
       <source>Bookmark this Link</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="751" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="752" />
       <source>Copy URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="755" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="756" />
       <source>Send URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="764" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="765" />
       <source>Scan Link with VirusTotal</source>
       <translation>Scanner le lien avec VirusTotal</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="782" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="783" />
       <source>Open Image in New Tab</source>
       <translation>Ouvrir l'image dans un nouvel onglet</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="789" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="790" />
       <source>Save Image</source>
       <translation>Enregistrer l'image</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="792" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="793" />
       <source>Copy Image to Clipboard</source>
       <translation>Copier l'image dans le presse papier</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="794" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="795" />
       <source>Copy Image URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="799" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="800" />
       <source>Send Image URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="818" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="810" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="819" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="811" />
       <source>Search image in {0}</source>
       <translation>Chercher l'image dans {0}</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="814" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="815" />
       <source>Search image with...</source>
       <translation>Chercher l'image avec...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="825" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="826" />
       <source>Block Image</source>
       <translation>Bloquer l'image</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="835" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="836" />
       <source>Scan Image with VirusTotal</source>
       <translation>Scanner l'image avec VirusTotal</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="855" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="856" />
       <source>Play</source>
       <translation>Lecture</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="861" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="862" />
       <source>Pause</source>
       <translation>Pause</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="867" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="868" />
       <source>Unmute</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="873" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="874" />
       <source>Mute</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="878" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="879" />
       <source>Copy Media URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="883" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="884" />
       <source>Send Media URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="889" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="890" />
       <source>Save Media</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="910" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="911" />
       <source>Send Text</source>
       <translation>Envoyer texte</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="917" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="918" />
       <source>Search with '{0}'</source>
       <translation>Rechercher avec '{0}'</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="921" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="922" />
       <source>Search with...</source>
       <translation>Rechercher avec...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1078" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="947" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1079" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="948" />
       <source>Google Translate</source>
       <translation>Google Translate</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="957" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="958" />
       <source>Dictionary</source>
       <translation>Dictionnaire</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="965" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="966" />
       <source>Go to web address</source>
       <translation>Aller à l'adresse web</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="994" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="995" />
       <source>Add New Page</source>
       <translation>Ajouter une nouvelle page</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="999" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1000" />
       <source>Configure Speed Dial</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1005" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1006" />
       <source>Reload All Dials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1009" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1010" />
       <source>Reset to Default Dials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1014" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1015" />
       <source>Bookmark this Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1018" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1019" />
       <source>Copy Page URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1023" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1024" />
       <source>Send Page URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1029" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1030" />
       <source>User Agent</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1057" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1058" />
       <source>Validate Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1120" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1121" />
       <source>Add to web search toolbar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1804" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1805" />
       <source>Empty Page</source>
       <translation>Page vide</translation>
     </message>
     <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="1869" />
       <location filename="../WebBrowser/WebBrowserView.py" line="1868" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="1867" />
       <source>Render Process terminated abnormally</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1873" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1874" />
       <source>The render process crashed while loading this page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1878" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1879" />
       <source>The render process was killed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1880" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1881" />
       <source>The render process terminated while loading this page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1884" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1885" />
       <source>Try reloading the page or closing some tabs to make more memory available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2012" />
-      <source>Web Archive (*.mhtml *.mht)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2013" />
-      <source>HTML File (*.html *.htm)</source>
-      <translation>Fichiers HTML (*.html *.htm)</translation>
+      <source>Web Archive (*.mhtml *.mht)</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2014" />
+      <source>HTML File (*.html *.htm)</source>
+      <translation>Fichiers HTML (*.html *.htm)</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2015" />
       <source>HTML File with all resources (*.html *.htm)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2036" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2037" />
       <source>Save Web Page</source>
       <translation>Enregistrer la page web</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2428" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2429" />
       <source>eric7 {0} ({1})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2439" />
-      <source>Print Page</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2440" />
+      <source>Print Page</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2441" />
       <source>There is already a print job in progress. Printing is temporarily disabled until the current job is finished.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2555" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="2485" />
-      <source>Print to PDF</source>
-      <translation type="unfinished">Imprimer en pdf</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2486" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
-      <translation type="unfinished">&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; existe déjà. Écraser ?&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2556" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2486" />
+      <source>Print to PDF</source>
+      <translation type="unfinished">Imprimer en pdf</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2487" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; existe déjà. Écraser ?&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2557" />
       <source>&lt;p&gt;The PDF file &lt;b&gt;{0}&lt;/b&gt; could not be generated.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2590" />
-      <source>Quota Request</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2591" />
+      <source>Quota Request</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2592" />
       <source>&lt;p&gt; Allow the website at &lt;b&gt;{0}&lt;/b&gt; to use &lt;b&gt;{1}&lt;/b&gt; of persistent storage?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2634" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2635" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Read&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2642" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2643" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Write&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2647" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2648" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Read and Write&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2654" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2655" />
       <source>File System Access Request</source>
       <translation type="unfinished" />
     </message>
@@ -101696,10 +101724,10 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4099" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3007" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2991" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2976" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4105" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3013" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2997" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2982" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="207" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
@@ -101710,2074 +101738,2074 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1758" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1758" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1764" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1764" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="306" />
       <source>Index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1769" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1768" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1774" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="318" />
       <source>Search</source>
       <translation>Rechercher</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2115" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2114" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2121" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2120" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="325" />
       <source>JavaScript Console</source>
       <translation>Console JavaScript</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="737" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="743" />
       <source>New Tab</source>
       <translation>Nouvel onglet</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="739" />
-      <source>&amp;New Tab</source>
-      <translation>&amp;Nouvel onglet</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="740" />
-      <source>Ctrl+T</source>
-      <comment>File|New Tab</comment>
-      <translation>Ctrl+T</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="745" />
+      <source>&amp;New Tab</source>
+      <translation>&amp;Nouvel onglet</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="746" />
+      <source>Ctrl+T</source>
+      <comment>File|New Tab</comment>
+      <translation>Ctrl+T</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="751" />
       <source>Open a new web browser tab</source>
       <translation>Ouvrir un nouvel onglet de navigation web</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="747" />
-      <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Nouvel onglet&lt;/b&gt;&lt;p&gt;Ceci ouvre un nouvel onglet de navigation web.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="753" />
+      <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Nouvel onglet&lt;/b&gt;&lt;p&gt;Ceci ouvre un nouvel onglet de navigation web.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="759" />
       <source>New Window</source>
       <translation>Nouvelle fenêtre</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="755" />
-      <source>New &amp;Window</source>
-      <translation>&amp;Nouvelle fenêtre</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="756" />
-      <source>Ctrl+N</source>
-      <comment>File|New Window</comment>
-      <translation>Ctrl+N</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="761" />
+      <source>New &amp;Window</source>
+      <translation>&amp;Nouvelle fenêtre</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="762" />
+      <source>Ctrl+N</source>
+      <comment>File|New Window</comment>
+      <translation>Ctrl+N</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="767" />
       <source>Open a new web browser window</source>
       <translation>Ouvrir une nouvelle fenêtre de navigation web</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="763" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="769" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new web browser window in the current privacy mode.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nouvelle fenêtre&lt;/b&gt;&lt;p&gt;Ceci ouvre une nouvelle fenêtre de navigation web en mode privé.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2889" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="773" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2895" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="779" />
       <source>New Private Window</source>
       <translation>Nouvelle fenêtre privée</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="781" />
       <source>New &amp;Private Window</source>
       <translation>Nouvelle fenêtre &amp;privée</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="776" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="782" />
       <source>Ctrl+Shift+P</source>
       <comment>File|New Private Window</comment>
       <translation>Ctrl+Shift+P</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="782" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="788" />
       <source>Open a new private web browser window</source>
       <translation>Ouvrir une nouvelle fenêtre de navigation web privée</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="785" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="791" />
       <source>&lt;b&gt;New Private Window&lt;/b&gt;&lt;p&gt;This opens a new private web browser window by starting a new web browser instance in private mode.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2927" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2904" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="795" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2933" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2910" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="801" />
       <source>Open File</source>
       <translation>Ouvrir Fichier</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="797" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="803" />
       <source>&amp;Open File</source>
       <translation>&amp;Ouvrir Fichier</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="798" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="804" />
       <source>Ctrl+O</source>
       <comment>File|Open</comment>
       <translation>Ctrl+O</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="803" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="809" />
       <source>Open a file for display</source>
       <translation>Ouvrir un fichier pour affichage</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="805" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="811" />
       <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new file for display. It pops up a file selection dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ouvrir fichier&lt;/b&gt;&lt;p&gt;Ceci ouvre un nouveau fichier pour affichage. Cela affiche un sélectionneur de fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="815" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="821" />
       <source>Open File in New Tab</source>
       <translation>Ouvrir le fichier dans un nouvel onglet</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="817" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="823" />
       <source>Open File in New &amp;Tab</source>
       <translation>Ouvrir unfichier dans un nouvel &amp;onglet</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="818" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="824" />
       <source>Shift+Ctrl+O</source>
       <comment>File|Open in new tab</comment>
       <translation>Shift+Ctrl+O</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="823" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="829" />
       <source>Open a file for display in a new tab</source>
       <translation>Ouvrir un fichier dans un nouvel onglet</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="825" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="831" />
       <source>&lt;b&gt;Open File in New Tab&lt;/b&gt;&lt;p&gt;This opens a new file for display in a new tab. It pops up a file selection dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="836" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="842" />
       <source>Save As</source>
       <translation>Enregistrer sous</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="838" />
-      <source>&amp;Save As...</source>
-      <translation>Enregistrer &amp;sous...</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="839" />
-      <source>Shift+Ctrl+S</source>
-      <comment>File|Save As</comment>
-      <translation>Shift+Ctrl+S</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="844" />
+      <source>&amp;Save As...</source>
+      <translation>Enregistrer &amp;sous...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="845" />
+      <source>Shift+Ctrl+S</source>
+      <comment>File|Save As</comment>
+      <translation>Shift+Ctrl+S</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="850" />
       <source>Save the current page to disk</source>
       <translation>Enregistrer la page courante sur le disque</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="846" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="852" />
       <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current page to disk.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Enregistrer sous...&lt;/b&gt;&lt;p&gt;Enregistrer la page courante sur le disque.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="854" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="860" />
       <source>Save Page Screen</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="856" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="862" />
       <source>Save Page Screen...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="863" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="869" />
       <source>Save the visible part of the current page as a screen shot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="866" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="872" />
       <source>&lt;b&gt;Save Page Screen...&lt;/b&gt;&lt;p&gt;Saves the visible part of the current page as a screen shot.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="877" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="883" />
       <source>Import Bookmarks</source>
       <translation>Importer signets</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="878" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="884" />
       <source>&amp;Import Bookmarks...</source>
       <translation>&amp;Importer signets...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="885" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="891" />
       <source>Import bookmarks from other browsers</source>
       <translation>Importer des signets d'autres navigateurs</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="888" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="894" />
       <source>&lt;b&gt;Import Bookmarks&lt;/b&gt;&lt;p&gt;Import bookmarks from other browsers.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Importer signets&lt;/b&gt;&lt;p&gt;Importer des signets d'autres navigateurs.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="897" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="903" />
       <source>Export Bookmarks</source>
       <translation>Exporter les signets</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="898" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="904" />
       <source>&amp;Export Bookmarks...</source>
       <translation>&amp;Exporter les signets...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="905" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="911" />
       <source>Export the bookmarks into a file</source>
       <translation>Exporter les signets dans un fichier</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="908" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="914" />
       <source>&lt;b&gt;Export Bookmarks&lt;/b&gt;&lt;p&gt;Export the bookmarks into a file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Exporter les signets&lt;/b&gt;&lt;p&gt;Exporter les signets dans un fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2537" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="917" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2543" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="923" />
       <source>Print</source>
       <translation>Imprimer</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="919" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="925" />
       <source>&amp;Print</source>
       <translation>&amp;Imprimer</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="920" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="926" />
       <source>Ctrl+P</source>
       <comment>File|Print</comment>
       <translation>Ctrl+P</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="925" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="931" />
       <source>Print the displayed help</source>
       <translation>Imprimer le fichier d'aide</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="927" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="933" />
       <source>&lt;b&gt;Print&lt;/b&gt;&lt;p&gt;Print the displayed help text.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Imprimer&lt;/b&gt;&lt;p&gt;Imprime le fichier d'aide affiché.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="935" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="933" />
-      <source>Print as PDF</source>
-      <translation>Imprimer en pdf</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="941" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="939" />
+      <source>Print as PDF</source>
+      <translation>Imprimer en pdf</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="947" />
       <source>Print the displayed help as PDF</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="943" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="949" />
       <source>&lt;b&gt;Print as PDF&lt;/b&gt;&lt;p&gt;Print the displayed help text as a PDF file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="954" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="952" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="960" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="958" />
       <source>Print Preview</source>
       <translation>Aperçu avant impression</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="961" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="967" />
       <source>Print preview of the displayed help</source>
       <translation>Va à la page d'aide de démarrage</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="964" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="970" />
       <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the displayed help text.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Aperçu avant impression&lt;/b&gt;&lt;p&gt;Aperçu avant impression de l'aide affichée.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="975" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="973" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="981" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="979" />
       <source>Send Page Link</source>
       <translation>Envoyer le lien de la page</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="982" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="988" />
       <source>Send the link of the current page via email</source>
       <translation>Envoyer le lien de la page courante via courriel</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="985" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="991" />
       <source>&lt;b&gt;Send Page Link&lt;/b&gt;&lt;p&gt;Send the link of the current page via email.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Envoyer le lien de la page&lt;/b&gt;&lt;p&gt;Envoyer le lien de la page courante via courriel.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="994" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1000" />
       <source>Close</source>
       <translation>Fermer</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="996" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1002" />
       <source>&amp;Close</source>
       <translation>&amp;Fermer</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="997" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1003" />
       <source>Ctrl+W</source>
       <comment>File|Close</comment>
       <translation>Ctrl+W</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1002" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1008" />
       <source>Close the current help window</source>
       <translation>Ferme la fenêtre d'aide en cours</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1004" />
-      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Fermer&lt;/b&gt;&lt;p&gt;Ferme la fenêtre courante du navigateur web.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1010" />
+      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Fermer&lt;/b&gt;&lt;p&gt;Ferme la fenêtre courante du navigateur web.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1016" />
       <source>Close All</source>
       <translation>Tout fermer</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1011" />
-      <source>Close &amp;All</source>
-      <translation>&amp;Tout fermer</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1017" />
+      <source>Close &amp;All</source>
+      <translation>&amp;Tout fermer</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1023" />
       <source>Close all help windows</source>
       <translation>Fermer toutes les fenêtres d'aide</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1019" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1025" />
       <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all web browser windows except the first one.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Tout fermer&lt;/b&gt;&lt;p&gt;Ferme toutes les fenêtres de navigation sauf la première.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1028" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1034" />
       <source>Quit</source>
       <translation>Quitter</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3319" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1030" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3325" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1036" />
       <source>&amp;Quit</source>
       <translation>&amp;Quitter</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1031" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1037" />
       <source>Ctrl+Q</source>
       <comment>File|Quit</comment>
       <translation>Ctrl+Q</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1036" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1042" />
       <source>Quit the eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1038" />
-      <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1044" />
+      <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1050" />
       <source>Backward</source>
       <translation>Précédent</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1046" />
-      <source>&amp;Backward</source>
-      <translation>&amp;Précédent</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1047" />
-      <source>Alt+Left</source>
-      <comment>Go|Backward</comment>
-      <translation>Alt+Left</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1052" />
+      <source>&amp;Backward</source>
+      <translation>&amp;Précédent</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1053" />
+      <source>Alt+Left</source>
+      <comment>Go|Backward</comment>
+      <translation>Alt+Left</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1058" />
       <source>Move one screen backward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1054" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1060" />
       <source>&lt;b&gt;Backward&lt;/b&gt;&lt;p&gt;Moves one screen backward. If none is available, this action is disabled.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1064" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1070" />
       <source>Forward</source>
       <translation>Suivant</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1066" />
-      <source>&amp;Forward</source>
-      <translation>&amp;Suivant</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1067" />
-      <source>Alt+Right</source>
-      <comment>Go|Forward</comment>
-      <translation>Alt+Right</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1072" />
+      <source>&amp;Forward</source>
+      <translation>&amp;Suivant</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1073" />
+      <source>Alt+Right</source>
+      <comment>Go|Forward</comment>
+      <translation>Alt+Right</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1078" />
       <source>Move one screen forward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1074" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1080" />
       <source>&lt;b&gt;Forward&lt;/b&gt;&lt;p&gt;Moves one screen forward. If none is available, this action is disabled.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1084" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1090" />
       <source>Home</source>
       <translation>Accueil</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1086" />
-      <source>&amp;Home</source>
-      <translation>&amp;URL de démarrage</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1087" />
-      <source>Ctrl+Home</source>
-      <comment>Go|Home</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1092" />
+      <source>&amp;Home</source>
+      <translation>&amp;URL de démarrage</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1093" />
+      <source>Ctrl+Home</source>
+      <comment>Go|Home</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1098" />
       <source>Move to the initial screen</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1094" />
-      <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1100" />
+      <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1106" />
       <source>Reload</source>
       <translation>Recharger</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1102" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1108" />
       <source>&amp;Reload</source>
       <translation>&amp;Recharger</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1103" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1109" />
       <source>Ctrl+R</source>
       <comment>Go|Reload</comment>
       <translation>Ctrl+R</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1104" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1110" />
       <source>F5</source>
       <comment>Go|Reload</comment>
       <translation>F5</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1108" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1114" />
       <source>Reload the current screen</source>
       <translation type="unfinished">Recharger la session courante</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1110" />
-      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1116" />
+      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1122" />
       <source>Stop</source>
       <translation>Arrêt</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1118" />
-      <source>&amp;Stop</source>
-      <translation>&amp;Arrêt</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1119" />
-      <source>Ctrl+.</source>
-      <comment>Go|Stop</comment>
-      <translation>Ctrl+.</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1120" />
-      <source>Esc</source>
-      <comment>Go|Stop</comment>
-      <translation>Esc</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1124" />
-      <source>Stop loading</source>
-      <translation>Arrêter le chargement</translation>
+      <source>&amp;Stop</source>
+      <translation>&amp;Arrêt</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1125" />
+      <source>Ctrl+.</source>
+      <comment>Go|Stop</comment>
+      <translation>Ctrl+.</translation>
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1126" />
-      <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
-      <translation type="unfinished" />
+      <source>Esc</source>
+      <comment>Go|Stop</comment>
+      <translation>Esc</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1130" />
+      <source>Stop loading</source>
+      <translation>Arrêter le chargement</translation>
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1132" />
+      <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1138" />
       <source>Copy</source>
       <translation>Copier</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1134" />
-      <source>&amp;Copy</source>
-      <translation>&amp;Copier</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1135" />
-      <source>Ctrl+C</source>
-      <comment>Edit|Copy</comment>
-      <translation>Ctrl+C</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1140" />
+      <source>&amp;Copy</source>
+      <translation>&amp;Copier</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1141" />
+      <source>Ctrl+C</source>
+      <comment>Edit|Copy</comment>
+      <translation>Ctrl+C</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1146" />
       <source>Copy the selected text</source>
       <translation>Copie le texte sélectionné</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1142" />
-      <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;Copier&lt;/b&gt;&lt;p&gt;Copie le texte sélectionné dans le presse-papier.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1148" />
+      <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;Copier&lt;/b&gt;&lt;p&gt;Copie le texte sélectionné dans le presse-papier.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1154" />
       <source>Cut</source>
       <translation>Couper</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1150" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1156" />
       <source>Cu&amp;t</source>
       <translation>Cou&amp;per</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1151" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1157" />
       <source>Ctrl+X</source>
       <comment>Edit|Cut</comment>
       <translation>Ctrl+X</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1156" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1162" />
       <source>Cut the selected text</source>
       <translation>Couper le texte sélectionné</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1158" />
-      <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;Couper&lt;/b&gt;&lt;p&gt;Couper le texte sélectionné vers le presse papier.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1164" />
+      <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;Couper&lt;/b&gt;&lt;p&gt;Couper le texte sélectionné vers le presse papier.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1170" />
       <source>Paste</source>
       <translation>Coller</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1166" />
-      <source>&amp;Paste</source>
-      <translation>Col&amp;ler</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1167" />
-      <source>Ctrl+V</source>
-      <comment>Edit|Paste</comment>
-      <translation>Ctrl+V</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1172" />
+      <source>&amp;Paste</source>
+      <translation>Col&amp;ler</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1173" />
+      <source>Ctrl+V</source>
+      <comment>Edit|Paste</comment>
+      <translation>Ctrl+V</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1178" />
       <source>Paste text from the clipboard</source>
       <translation>Coller le texte du presse papier</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1174" />
-      <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Coller&lt;/b&gt;&lt;p&gt;Coller du texte du presse papier.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1180" />
+      <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Coller&lt;/b&gt;&lt;p&gt;Coller du texte du presse papier.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1186" />
       <source>Undo</source>
       <translation>Défaire</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1182" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1188" />
       <source>&amp;Undo</source>
       <translation>&amp;Défaire</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1183" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1189" />
       <source>Ctrl+Z</source>
       <comment>Edit|Undo</comment>
       <translation>Ctrl+Z</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1188" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1194" />
       <source>Undo the last edit action</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1190" />
-      <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1196" />
+      <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1202" />
       <source>Redo</source>
       <translation>Refaire</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1198" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1204" />
       <source>&amp;Redo</source>
       <translation>&amp;Refaire</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1199" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1205" />
       <source>Ctrl+Shift+Z</source>
       <comment>Edit|Redo</comment>
       <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1204" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1210" />
       <source>Redo the last edit action</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1206" />
-      <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1212" />
+      <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1218" />
       <source>Select All</source>
       <translation>Tout sélectionner</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1214" />
-      <source>&amp;Select All</source>
-      <translation>Tout &amp;sélectionner</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1215" />
-      <source>Ctrl+A</source>
-      <comment>Edit|Select All</comment>
-      <translation>Ctrl+A</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1220" />
+      <source>&amp;Select All</source>
+      <translation>Tout &amp;sélectionner</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1221" />
+      <source>Ctrl+A</source>
+      <comment>Edit|Select All</comment>
+      <translation>Ctrl+A</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1226" />
       <source>Select all text</source>
       <translation>Sélectionne tout le texte</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1222" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1228" />
       <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current browser.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1232" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1231" />
-      <source>Unselect</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1233" />
-      <source>Alt+Ctrl+A</source>
-      <comment>Edit|Unselect</comment>
-      <translation>Alt+Ctrl+A</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1238" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1237" />
+      <source>Unselect</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1239" />
+      <source>Alt+Ctrl+A</source>
+      <comment>Edit|Unselect</comment>
+      <translation>Alt+Ctrl+A</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1244" />
       <source>Clear current selection</source>
       <translation>Effacer la sélection courante</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1240" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1246" />
       <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1249" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1255" />
       <source>Find...</source>
       <translation>Rechercher...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1251" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1257" />
       <source>&amp;Find...</source>
       <translation>&amp;Rechercher...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1252" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1258" />
       <source>Ctrl+F</source>
       <comment>Edit|Find</comment>
       <translation>Ctrl+F</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1257" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1263" />
       <source>Find text in page</source>
       <translation>Trouver le texte dans la page</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1259" />
-      <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Chercher&lt;/b&gt;&lt;p&gt;Recherche le texte dans la page courante.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1265" />
+      <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Chercher&lt;/b&gt;&lt;p&gt;Recherche le texte dans la page courante.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1271" />
       <source>Find next</source>
       <translation>Chercher suivant</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1267" />
-      <source>Find &amp;next</source>
-      <translation>Chercher &amp;suivant</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1268" />
-      <source>F3</source>
-      <comment>Edit|Find next</comment>
-      <translation>F3</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1273" />
+      <source>Find &amp;next</source>
+      <translation>Chercher &amp;suivant</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1274" />
+      <source>F3</source>
+      <comment>Edit|Find next</comment>
+      <translation>F3</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1279" />
       <source>Find next occurrence of text in page</source>
       <translation>Recherche de la prochaine occurence du texte dans la page</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1275" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1281" />
       <source>&lt;b&gt;Find next&lt;/b&gt;&lt;p&gt;Find the next occurrence of text in the current page.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Chercher suivant&lt;/b&gt;&lt;p&gt;Recherche la prochaine occurence du texte dans la page.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1284" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1290" />
       <source>Find previous</source>
       <translation>Chercher précédent</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1286" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1292" />
       <source>Find &amp;previous</source>
       <translation>Chercher &amp;précédent</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1287" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1293" />
       <source>Shift+F3</source>
       <comment>Edit|Find previous</comment>
       <translation>Shift+F3</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1293" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1299" />
       <source>Find previous occurrence of text in page</source>
       <translation>Recherche de l' occurence précédente dans la page</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1296" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1302" />
       <source>&lt;b&gt;Find previous&lt;/b&gt;&lt;p&gt;Find the previous occurrence of text in the current page.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Chercher précédent&lt;/b&gt;&lt;p&gt;Recherche l'occurence précédente dans la page.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1306" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1312" />
       <source>Manage Bookmarks</source>
       <translation>Gérer signets</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1307" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1313" />
       <source>&amp;Manage Bookmarks...</source>
       <translation>&amp;Gérer les signets...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1308" />
-      <source>Ctrl+Shift+B</source>
-      <comment>Help|Manage bookmarks</comment>
-      <translation>Ctrl+Shift+B</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1314" />
+      <source>Ctrl+Shift+B</source>
+      <comment>Help|Manage bookmarks</comment>
+      <translation>Ctrl+Shift+B</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1320" />
       <source>Open a dialog to manage the bookmarks.</source>
       <translation>Ouvrir une fenêtre pour gérer les signets.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1317" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1323" />
       <source>&lt;b&gt;Manage Bookmarks...&lt;/b&gt;&lt;p&gt;Open a dialog to manage the bookmarks.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Gérer signets...&lt;/b&gt;&lt;p&gt;Ouvrir une fenêtre pour gérer les signets.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1326" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1332" />
       <source>Add Bookmark</source>
       <translation>Ajouter un signet</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1328" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1334" />
       <source>Add &amp;Bookmark...</source>
       <translation>&amp;Ajouter un signet ...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1329" />
-      <source>Ctrl+D</source>
-      <comment>Help|Add bookmark</comment>
-      <translation>Ctrl+D</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1335" />
+      <source>Ctrl+D</source>
+      <comment>Help|Add bookmark</comment>
+      <translation>Ctrl+D</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1341" />
       <source>Open a dialog to add a bookmark.</source>
       <translation>Ouvrir une fenêtre pour ajouter un signet.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1337" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1343" />
       <source>&lt;b&gt;Add Bookmark&lt;/b&gt;&lt;p&gt;Open a dialog to add the current URL as a bookmark.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ajouter signet&lt;/b&gt;&lt;p&gt;Ouvrir une fenêtre pour ajouter l'URL courante en tant que signet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1346" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1352" />
       <source>Add Folder</source>
       <translation>Ajouter repertoire</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1347" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1353" />
       <source>Add &amp;Folder...</source>
       <translation>Ajouter &amp;Répertoire ...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1354" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1360" />
       <source>Open a dialog to add a new bookmarks folder.</source>
       <translation>Ouvrir une fenêtre pour ajouter un nouveau dossier de signets.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1357" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1363" />
       <source>&lt;b&gt;Add Folder...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ajouter dossier...&lt;/b&gt;&lt;p&gt;Ouvrir une fenêtre pour ajouter un nouveau dossier de signets.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1366" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1372" />
       <source>Bookmark All Tabs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1367" />
-      <source>Bookmark All Tabs...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1373" />
+      <source>Bookmark All Tabs...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1379" />
       <source>Bookmark all open tabs.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1375" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1381" />
       <source>&lt;b&gt;Bookmark All Tabs...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder for all open tabs.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1385" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1391" />
       <source>What's This?</source>
       <translation>Qu'est-ce que c'est ?</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1387" />
-      <source>&amp;What's This?</source>
-      <translation>&amp;Qu'est-ce que c'est?</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1388" />
-      <source>Shift+F1</source>
-      <comment>Help|What's This?'</comment>
-      <translation>Shift+F1</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1393" />
+      <source>&amp;What's This?</source>
+      <translation>&amp;Qu'est-ce que c'est?</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1394" />
+      <source>Shift+F1</source>
+      <comment>Help|What's This?'</comment>
+      <translation>Shift+F1</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1399" />
       <source>Context sensitive help</source>
       <translation>Aide contextuelle</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1395" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1401" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Affiche l'aide contextuelle&lt;/b&gt;&lt;p&gt;Dans le mode "Qu'est-ce que c'est?", la souris est affichée avec un point d'interrogation, et on peut cliquer sur les éléments de  l'interface pour obtenir une courte description de l'élément. Cette fonction peut être obtenue avec le bouton d'aide contextuelle de la barre principale.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1408" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1414" />
       <source>About</source>
       <translation>À propos</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1408" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1414" />
       <source>&amp;About</source>
       <translation>&amp;À propos</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1410" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1416" />
       <source>Display information about this software</source>
       <translation>Affiche les informations concernant le logiciel</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1412" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1418" />
       <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="../WebBrowser/WebBrowserWindow.py" line="1421" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1427" />
       <source>About Qt</source>
       <translation>À propos de Qt</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1422" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1428" />
       <source>About &amp;Qt</source>
       <translation>À propos de &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1429" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1435" />
       <source>Display information about the Qt toolkit</source>
       <translation>Affiche les informations concernant Qt</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1432" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1438" />
       <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="../WebBrowser/WebBrowserWindow.py" line="1441" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1447" />
       <source>Zoom in</source>
       <translation>Zoom avant</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1443" />
-      <source>Zoom &amp;in</source>
-      <translation>Zoom a&amp;vant</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1444" />
-      <source>Ctrl++</source>
-      <comment>View|Zoom in</comment>
-      <translation>Ctrl++</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1445" />
-      <source>Zoom In</source>
-      <comment>View|Zoom in</comment>
-      <translation>Zoom avant</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1449" />
-      <source>Zoom in on the web page</source>
-      <translation>Zoom avant sur la page web</translation>
+      <source>Zoom &amp;in</source>
+      <translation>Zoom a&amp;vant</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1450" />
+      <source>Ctrl++</source>
+      <comment>View|Zoom in</comment>
+      <translation>Ctrl++</translation>
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1451" />
+      <source>Zoom In</source>
+      <comment>View|Zoom in</comment>
+      <translation>Zoom avant</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1455" />
+      <source>Zoom in on the web page</source>
+      <translation>Zoom avant sur la page web</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1457" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the web page. This makes the web page bigger.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1461" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1467" />
       <source>Zoom out</source>
       <translation>Zoom arrière</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1463" />
-      <source>Zoom &amp;out</source>
-      <translation>Zoom a&amp;rrière</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1464" />
-      <source>Ctrl+-</source>
-      <comment>View|Zoom out</comment>
-      <translation>Ctrl+-</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1465" />
-      <source>Zoom Out</source>
-      <comment>View|Zoom out</comment>
-      <translation>Zoom arrière</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1469" />
-      <source>Zoom out on the web page</source>
-      <translation>Zoom arrière sur la page web</translation>
+      <source>Zoom &amp;out</source>
+      <translation>Zoom a&amp;rrière</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1470" />
+      <source>Ctrl+-</source>
+      <comment>View|Zoom out</comment>
+      <translation>Ctrl+-</translation>
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1471" />
+      <source>Zoom Out</source>
+      <comment>View|Zoom out</comment>
+      <translation>Zoom arrière</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1475" />
+      <source>Zoom out on the web page</source>
+      <translation>Zoom arrière sur la page web</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1477" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the web page. This makes the web page smaller.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1481" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1487" />
       <source>Zoom reset</source>
       <translation>Annulation du zoom</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1483" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1489" />
       <source>Zoom &amp;reset</source>
       <translation>Annulation du &amp;zoom</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1484" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1490" />
       <source>Ctrl+0</source>
       <comment>View|Zoom reset</comment>
       <translation>Ctrl+0</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1489" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1495" />
       <source>Reset the zoom of the web page</source>
       <translation>Annulation du zoom sur la page web</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1491" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1497" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the web page. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1502" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1501" />
-      <source>Show page source</source>
-      <translation>Montrer la source de la page</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1503" />
-      <source>Ctrl+U</source>
-      <translation>Ctrl+U</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1508" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1507" />
+      <source>Show page source</source>
+      <translation>Montrer la source de la page</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1509" />
+      <source>Ctrl+U</source>
+      <translation>Ctrl+U</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1514" />
       <source>Show the page source in an editor</source>
       <translation>Montrer la source de la page dans un éditeur</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1510" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1516" />
       <source>&lt;b&gt;Show page source&lt;/b&gt;&lt;p&gt;Show the page source in an editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1520" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1526" />
       <source>Full Screen</source>
       <translation>Plein écran</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1522" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1528" />
       <source>&amp;Full Screen</source>
       <translation>&amp;Plein écran</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1529" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1535" />
       <source>Meta+Ctrl+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1531" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1537" />
       <source>F11</source>
       <translation>F11</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1538" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1537" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1544" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1543" />
       <source>Show next tab</source>
       <translation>Afficher la tabulation suivante</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1539" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1545" />
       <source>Ctrl+Alt+Tab</source>
       <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1550" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1549" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1556" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1555" />
       <source>Show previous tab</source>
       <translation>Afficher la tabulation précédente</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1551" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1557" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1562" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1561" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1568" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1567" />
       <source>Switch between tabs</source>
       <translation>Intervertir les onglets</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1563" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1569" />
       <source>Ctrl+1</source>
       <translation>Ctrl+1</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1573" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1579" />
       <source>Preferences</source>
       <translation>Préférences</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1575" />
-      <source>&amp;Preferences...</source>
-      <translation>&amp;Préférences...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1581" />
+      <source>&amp;Preferences...</source>
+      <translation>&amp;Préférences...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1587" />
       <source>Set the prefered configuration</source>
       <translation>Édition des préférences</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1583" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1589" />
       <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="../WebBrowser/WebBrowserWindow.py" line="1593" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1599" />
       <source>Languages</source>
       <translation>Langages</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1595" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1601" />
       <source>&amp;Languages...</source>
       <translation>&amp;Langages...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1602" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1608" />
       <source>Configure the accepted languages for web pages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1605" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1611" />
       <source>&lt;b&gt;Languages&lt;/b&gt;&lt;p&gt;Configure the accepted languages for web pages.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1614" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1620" />
       <source>Cookies</source>
       <translation>Cookies</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1616" />
-      <source>C&amp;ookies...</source>
-      <translation>C&amp;ookies...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1622" />
+      <source>C&amp;ookies...</source>
+      <translation>C&amp;ookies...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1628" />
       <source>Configure cookies handling</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1624" />
-      <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1630" />
+      <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1636" />
       <source>Personal Information</source>
       <translation>Information personnelle</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1632" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1638" />
       <source>Personal Information...</source>
       <translation>Information personnelle...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1639" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1645" />
       <source>Configure personal information for completing form fields</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1642" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1648" />
       <source>&lt;b&gt;Personal Information...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the personal information used for completing form fields.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1652" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1658" />
       <source>GreaseMonkey Scripts</source>
       <translation>Scripts GreaseMonkey</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1654" />
-      <source>GreaseMonkey Scripts...</source>
-      <translation>Scripts GreaseMonkey...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1660" />
+      <source>GreaseMonkey Scripts...</source>
+      <translation>Scripts GreaseMonkey...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1666" />
       <source>Configure the GreaseMonkey Scripts</source>
       <translation>Configuration des Scripts GreaseMonkey</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1662" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1668" />
       <source>&lt;b&gt;GreaseMonkey Scripts...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available GreaseMonkey Scripts.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1672" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1678" />
       <source>Edit Message Filters</source>
       <translation>Modifier les filtres de message</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1674" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1680" />
       <source>Edit Message Filters...</source>
       <translation>Modifier les filtres de message...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1681" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1687" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation>Éditer les filtres de message utilisés pour supprimer les messages indésirés</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1684" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1690" />
       <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1695" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1701" />
       <source>Edit HTML5 Feature Permissions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1697" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1703" />
       <source>Edit HTML5 Feature Permissions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1704" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1710" />
       <source>Edit the remembered HTML5 feature permissions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1707" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1713" />
       <source>&lt;b&gt;Edit HTML5 Feature Permissions&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the remembered HTML5 feature permissions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1720" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1718" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1726" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1724" />
       <source>Sync with Table of Contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1733" />
       <source>Synchronizes the table of contents with current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1730" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1736" />
       <source>&lt;b&gt;Sync with Table of Contents&lt;/b&gt;&lt;p&gt;Synchronizes the table of contents with current page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1741" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1740" />
-      <source>Table of Contents</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1747" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1746" />
+      <source>Table of Contents</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1753" />
       <source>Shows the table of contents window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1749" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1755" />
       <source>&lt;b&gt;Table of Contents&lt;/b&gt;&lt;p&gt;Shows the table of contents window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1760" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1766" />
       <source>Shows the index window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1762" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1768" />
       <source>&lt;b&gt;Index&lt;/b&gt;&lt;p&gt;Shows the index window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1781" />
       <source>Shows the search window</source>
       <translation>Montre la fenêtre de recherche</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1777" />
-      <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Chercher&lt;/b&gt;&lt;p&gt;Montre la fenêtre de recherche.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1783" />
+      <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Chercher&lt;/b&gt;&lt;p&gt;Montre la fenêtre de recherche.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1789" />
       <source>Manage QtHelp Documents</source>
       <translation>Gérer les documents QtHelp</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1784" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1790" />
       <source>Manage QtHelp &amp;Documents</source>
       <translation>Gérer les &amp;documents QtHelp</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1791" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1797" />
       <source>Shows a dialog to manage the QtHelp documentation set</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1794" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1800" />
       <source>&lt;b&gt;Manage QtHelp Documents&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the QtHelp documentation set.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1804" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1810" />
       <source>Reindex Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1805" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1811" />
       <source>&amp;Reindex Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1812" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1818" />
       <source>Reindexes the documentation set</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1815" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1821" />
       <source>&lt;b&gt;Reindex Documentation&lt;/b&gt;&lt;p&gt;Reindexes the documentation set.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1840" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1834" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1828" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1826" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1832" />
       <source>Clear private data</source>
       <translation>Effacer les données personnelles</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1836" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1842" />
       <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like browsing history, search history or the favicons database.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1846" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1852" />
       <source>Clear icons database</source>
       <translation>Effacer la base d'icônes</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1847" />
-      <source>Clear &amp;icons database</source>
-      <translation>Effacer la base d'&amp;icônes</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1853" />
+      <source>Clear &amp;icons database</source>
+      <translation>Effacer la base d'&amp;icônes</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1859" />
       <source>Clear the database of favicons</source>
       <translation>Effacer la base d'icônes</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1855" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1861" />
       <source>&lt;b&gt;Clear icons database&lt;/b&gt;&lt;p&gt;Clears the database of favicons of previously visited URLs.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Effacer la base d'icônes&lt;/b&gt;&lt;p&gt;Efface la base d'icônes de l'URL visitée précédemment.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1867" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1865" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1873" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1871" />
       <source>Manage Saved Favicons</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1874" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1880" />
       <source>Show a dialog to manage the saved favicons</source>
       <translation>Montre une fenêtre pour gérer les favicons enregistrés</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1877" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1883" />
       <source>&lt;b&gt;Manage Saved Favicons&lt;/b&gt;&lt;p&gt;This shows a dialog to manage the saved favicons of previously visited URLs.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1887" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1893" />
       <source>Configure Search Engines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1888" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1894" />
       <source>Configure Search &amp;Engines...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1895" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1901" />
       <source>Configure the available search engines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1898" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1904" />
       <source>&lt;b&gt;Configure Search Engines...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available search engines.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1908" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1914" />
       <source>Manage Saved Passwords</source>
       <translation>Gérer les mots de passe enregistrés</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1910" />
-      <source>Manage Saved Passwords...</source>
-      <translation>Gérer les mots de passe enregistrés...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1916" />
+      <source>Manage Saved Passwords...</source>
+      <translation>Gérer les mots de passe enregistrés...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1922" />
       <source>Manage the saved passwords</source>
       <translation>Gérer les mots de passe enregistrés</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1918" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1924" />
       <source>&lt;b&gt;Manage Saved Passwords...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved passwords.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Gérer les mots de passe enregistrés...&lt;/b&gt;&lt;p&gt;Ceci ouvre une fenêtre pour gérer les mots de passe enregistrés.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1927" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1933" />
       <source>Ad Block</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1929" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1935" />
       <source>&amp;Ad Block...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1936" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1942" />
       <source>Configure AdBlock subscriptions and rules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1939" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1945" />
       <source>&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure AdBlock subscriptions and rules.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1949" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1955" />
       <source>Manage SSL Certificate Errors</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1951" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1957" />
       <source>Manage SSL Certificate Errors...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1958" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1964" />
       <source>Manage the accepted SSL certificate Errors</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1961" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1967" />
       <source>&lt;b&gt;Manage SSL Certificate Errors...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the accepted SSL certificate errors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1971" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1977" />
       <source>Manage Safe Browsing</source>
       <translation>Gérer la navigation sécurisée</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1973" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1979" />
       <source>Manage Safe Browsing...</source>
       <translation>Gérer la navigation sécurisée...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1980" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1986" />
       <source>Configure Safe Browsing and manage local cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1983" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1989" />
       <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1994" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1993" />
-      <source>Downloads</source>
-      <translation>Téléchargements</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2000" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1999" />
+      <source>Downloads</source>
+      <translation>Téléchargements</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2006" />
       <source>Shows the downloads window</source>
       <translation>Montre la fenêtre des téléchargements</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2002" />
-      <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Téléchargement&lt;/b&gt;&lt;p&gt;Montre la fenêtre des téléchargements.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2008" />
+      <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Téléchargement&lt;/b&gt;&lt;p&gt;Montre la fenêtre des téléchargements.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2014" />
       <source>RSS Feeds Dialog</source>
       <translation>Fenêtre de flux RSS</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2010" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2016" />
       <source>&amp;RSS Feeds Dialog...</source>
       <translation>Fenêtre de flux &amp;RSS...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2011" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2017" />
       <source>Ctrl+Shift+F</source>
       <comment>Help|RSS Feeds Dialog</comment>
       <translation>Ctrl+Shift+F</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2017" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2023" />
       <source>Open a dialog showing the configured RSS feeds.</source>
       <translation>Ouvrir une fenêtre montrant les flux RSS configurés.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2020" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2026" />
       <source>&lt;b&gt;RSS Feeds Dialog...&lt;/b&gt;&lt;p&gt;Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2031" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2037" />
       <source>Siteinfo Dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2033" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2039" />
       <source>&amp;Siteinfo Dialog...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2034" />
-      <source>Ctrl+Shift+I</source>
-      <comment>Help|Siteinfo Dialog</comment>
-      <translation>Ctrl+Shift+I</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2040" />
+      <source>Ctrl+Shift+I</source>
+      <comment>Help|Siteinfo Dialog</comment>
+      <translation>Ctrl+Shift+I</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2046" />
       <source>Open a dialog showing some information about the current site.</source>
       <translation>Ouvrir une fenêtre montrant quelques informations sur le site courant.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2043" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2049" />
       <source>&lt;b&gt;Siteinfo Dialog...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the current site.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2053" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2059" />
       <source>Manage User Agent Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2054" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2060" />
       <source>Manage &amp;User Agent Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2061" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2067" />
       <source>Shows a dialog to manage the User Agent settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2064" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2070" />
       <source>&lt;b&gt;Manage User Agent Settings&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the User Agent settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2073" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2079" />
       <source>Synchronize data</source>
       <translation>Synchroniser les données</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2075" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2081" />
       <source>&amp;Synchronize Data...</source>
       <translation>&amp;Synchroniser les données...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2082" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2088" />
       <source>Shows a dialog to synchronize data via the network</source>
       <translation>Montre une fenêtre pour synchroniser les données via le réseau</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2085" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2091" />
       <source>&lt;b&gt;Synchronize Data...&lt;/b&gt;&lt;p&gt;This shows a dialog to synchronize data via the network.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Synchroniser les données...&lt;/b&gt;&lt;p&gt;Ceci montre une fenêtre pour synchroniser les données via le réseau.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2095" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2101" />
       <source>Manage Saved Zoom Values</source>
       <translation>Gérer la valeur de zoom enregistrée</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2097" />
-      <source>Manage Saved Zoom Values...</source>
-      <translation>Gérer la valeur de zoom enregistrée...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2103" />
+      <source>Manage Saved Zoom Values...</source>
+      <translation>Gérer la valeur de zoom enregistrée...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2109" />
       <source>Manage the saved zoom values</source>
       <translation>Gérer la valeur de zoom enregistrée</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2105" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2111" />
       <source>&lt;b&gt;Manage Saved Zoom Values...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved zoom values.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Gérer la valeur de zoom enregistrée...&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre pour gérer la valeur de zoom enregistrée.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2122" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2128" />
       <source>Toggle the JavaScript console window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2125" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2131" />
       <source>&lt;b&gt;JavaScript Console&lt;/b&gt;&lt;p&gt;This toggles the JavaScript console window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2135" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2134" />
-      <source>Tab Manager</source>
-      <translation>Gestionnaire des onglets</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2141" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2140" />
+      <source>Tab Manager</source>
+      <translation>Gestionnaire des onglets</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2147" />
       <source>Shows the tab manager window</source>
       <translation>Montre le gestionnaire d'onglets</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2143" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2149" />
       <source>&lt;b&gt;Tab Manager&lt;/b&gt;&lt;p&gt;Shows the tab manager window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Gestionnaire d'onglets&lt;/b&gt;&lt;p&gt;Montre les gestionnaire d'onglets.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2151" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2157" />
       <source>Session Manager</source>
       <translation>Gestionnaire de session</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2152" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2158" />
       <source>Session Manager...</source>
       <translation>Gestionnaire de session...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2159" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2165" />
       <source>Shows the session manager window</source>
       <translation>Montre le gestionnaire de session</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2162" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2168" />
       <source>&lt;b&gt;Session Manager&lt;/b&gt;&lt;p&gt;Shows the session manager window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Gestionnaire de session&lt;/b&gt;&lt;p&gt;Montre le gestionnaire de session.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2173" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2171" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2179" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2177" />
       <source>Scan current site</source>
       <translation>Scanner le site courant</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5180" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5170" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2187" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2185" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5185" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5175" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2193" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2191" />
       <source>IP Address Report</source>
       <translation>Rapport d'adresse IP</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5194" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2199" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2197" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5199" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2205" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2203" />
       <source>Domain Report</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2217" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2223" />
       <source>Keyboard Shortcuts</source>
       <translation>jRaccourcis clavier</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2219" />
-      <source>Keyboard &amp;Shortcuts...</source>
-      <translation>&amp;Raccourcis claviers...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2225" />
+      <source>Keyboard &amp;Shortcuts...</source>
+      <translation>&amp;Raccourcis claviers...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2231" />
       <source>Set the keyboard shortcuts</source>
       <translation>Définition des raccourcis clavier</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2227" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2233" />
       <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Raccourcis claviers&lt;/b&gt;&lt;p&gt;Edite les raccourcis claviers pour l'application.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5600" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5581" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2237" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5605" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5586" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2243" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Exporter les raccourcis clavier</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2239" />
-      <source>&amp;Export Keyboard Shortcuts...</source>
-      <translation>&amp;Exporter les raccourcis claviers...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2245" />
+      <source>&amp;Export Keyboard Shortcuts...</source>
+      <translation>&amp;Exporter les raccourcis claviers...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2251" />
       <source>Export the keyboard shortcuts</source>
       <translation>Exporte les raccourcis claviers</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2247" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2253" />
       <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Exporter les raccourcis clavier&lt;/b&gt;&lt;p&gt;Exporte les raccourcis claviers de l'application.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5620" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2256" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5625" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2262" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Importer les raccourcis clavier</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2258" />
-      <source>&amp;Import Keyboard Shortcuts...</source>
-      <translation>&amp;Importer des raccourcis clavier...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2264" />
+      <source>&amp;Import Keyboard Shortcuts...</source>
+      <translation>&amp;Importer des raccourcis clavier...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2270" />
       <source>Import the keyboard shortcuts</source>
       <translation>Importe des raccourcis clavier</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2266" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2272" />
       <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Importer des raccourcis clavier&lt;/b&gt;&lt;p&gt;Importe des raccourcis claviers de l'application.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2275" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2281" />
       <source>Protocol Handler Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2276" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2282" />
       <source>Protocol Handler Manager...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2283" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2289" />
       <source>Shows the protocol handler manager window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2286" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2292" />
       <source>&lt;b&gt;Protocol Handler Manager&lt;/b&gt;&lt;p&gt;Shows the protocol handler manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2330" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2336" />
       <source>&amp;File</source>
       <translation>&amp;Fichier</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2524" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2338" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2530" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2344" />
       <source>Sessions</source>
       <translation>Sessions</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2362" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2368" />
       <source>&amp;Edit</source>
       <translation>&amp;Edition</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2596" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2378" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2602" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2384" />
       <source>&amp;View</source>
       <translation>&amp;Affichage</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2389" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2395" />
       <source>Text Encoding</source>
       <translation>Encodage texte</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2398" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2404" />
       <source>H&amp;istory</source>
       <translation>&amp;Historique</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2414" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2420" />
       <source>&amp;Bookmarks</source>
       <translation>&amp;Signets</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2430" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2436" />
       <source>&amp;Settings</source>
       <translation>Paramètre&amp;s</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2460" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2466" />
       <source>Global User Agent</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2627" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2472" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2633" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2478" />
       <source>&amp;Tools</source>
       <translation>&amp;Outils</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2634" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2479" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2640" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2485" />
       <source>&amp;VirusTotal</source>
       <translation>&amp;VirusTotal</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2598" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2485" />
-      <source>&amp;Windows</source>
-      <translation>&amp;Windows</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2604" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2491" />
+      <source>&amp;Windows</source>
+      <translation>&amp;Windows</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2610" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2497" />
       <source>QtHelp</source>
       <translation type="unfinished">QtHelp</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2496" />
-      <source>&amp;Toolbars</source>
-      <translation>&amp;Barres d'Outils</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2502" />
+      <source>&amp;Toolbars</source>
+      <translation>&amp;Barres d'Outils</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2508" />
       <source>&amp;Help</source>
       <translation>A&amp;ide</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2531" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2537" />
       <source>Save</source>
       <translation>Enregistrer</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2551" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2557" />
       <source>Show All History...</source>
       <translation>Montrer tout l'historique...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2721" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2558" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2564" />
       <source>Settings</source>
       <translation>Configuration</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2652" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2658" />
       <source>File</source>
       <translation>Fichier</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2676" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2682" />
       <source>Edit</source>
       <translation>Édition</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2688" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2694" />
       <source>View</source>
       <translation>Affichage</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2697" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2703" />
       <source>Find</source>
       <translation>Chercher</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2705" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2711" />
       <source>Filter</source>
       <translation>Filtrer</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2712" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2718" />
       <source>Filtered by: </source>
       <translation>Filtré par : </translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2732" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2738" />
       <source>Tools</source>
       <translation>Outils</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2740" />
-      <source>Help</source>
-      <translation>Aide</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2746" />
+      <source>Help</source>
+      <translation>Aide</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2752" />
       <source>VirusTotal</source>
       <translation>VirusTotal</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2890" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2896" />
       <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Ne peut démarrer le processus.&lt;br&gt;Vérifier qu'il est disponible en tant que &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2894" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2900" />
       <source>OK</source>
       <translation>OK</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2929" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2906" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2935" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2912" />
       <source>HTML Files (*.html *.htm *.mhtml *.mht);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source>
       <translation>Fichiers HTML (*.html *.htm *.mhtml *.mht);;Fichier PDF (*.pdf);;Fichiers CHM (*.chm);;Tous les fichiers (*)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2977" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2983" />
       <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chromium {2} with Security Patches {3}.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2992" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2998" />
       <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chromium {2}.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3127" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3133" />
       <source>Saved Tabs</source>
       <translation>Onglets enregistrés</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3310" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3316" />
       <source>Are you sure you want to close the web browser?</source>
       <translation>Voulez-vous vraiment fermer le navigateur web ?</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3311" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3317" />
       <source>Are you sure you want to close the web browser?
 You have {0} windows with {1} tabs open.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3910" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3916" />
       <source>Could not find any associated content.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3956" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3962" />
       <source>Unfiltered</source>
       <translation>non filtré</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4012" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4018" />
       <source>Updating search index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4088" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4094" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4121" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4127" />
       <source>Help Engine</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4717" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4722" />
       <source>System</source>
       <translation type="unfinished">Système</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4721" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4726" />
       <source>ISO</source>
       <translation>ISO</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4724" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4729" />
       <source>Unicode</source>
       <translation>Unicode</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4732" />
       <source>Windows</source>
       <translation>Windows</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4730" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4735" />
       <source>IBM</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4733" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4738" />
       <source>Apple</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4736" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4741" />
       <source>Other</source>
       <translation>Autre</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4763" />
-      <source>Menu Bar</source>
-      <translation>Barre de menu</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="4768" />
-      <source>Bookmarks</source>
-      <translation>Signets</translation>
+      <source>Menu Bar</source>
+      <translation>Barre de menu</translation>
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="4773" />
+      <source>Bookmarks</source>
+      <translation>Signets</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4778" />
       <source>Status Bar</source>
       <translation>Barre de statut</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4788" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4793" />
       <source>&amp;Show all</source>
       <translation>Tout &amp;afficher</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4790" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4795" />
       <source>&amp;Hide all</source>
       <translation>Tout &amp;masquer</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5136" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5141" />
       <source>VirusTotal Scan</source>
       <translation>Scan VirusTotal</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5137" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5142" />
       <source>&lt;p&gt;The VirusTotal scan could not be scheduled.&lt;p&gt;
 &lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5171" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5176" />
       <source>Enter a valid IPv4 address in dotted quad notation:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5181" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5186" />
       <source>The given IP address is not in dotted quad notation.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5195" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5200" />
       <source>Enter a valid domain name:</source>
       <translation>Entrer un nom de domaine valide :</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5622" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5583" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5627" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5588" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5601" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5606" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
--- a/src/eric7/i18n/eric7_it.ts	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/i18n/eric7_it.ts	Sun Jun 02 09:51:20 2024 +0200
@@ -1799,42 +1799,42 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="217" />
+      <location filename="../Utilities/BackgroundService.py" line="230" />
       <source>Initialization of Background Service</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="218" />
-      <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="231" />
+      <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="244" />
       <source>Restart background client?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="232" />
+      <location filename="../Utilities/BackgroundService.py" line="245" />
       <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It's used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Yes'&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Retry'&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'No'&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="261" />
+      <location filename="../Utilities/BackgroundService.py" line="274" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="502" />
+      <location filename="../Utilities/BackgroundService.py" line="515" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="511" />
+      <location filename="../Utilities/BackgroundService.py" line="524" />
       <source>Background client disconnected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="512" />
+      <location filename="../Utilities/BackgroundService.py" line="525" />
       <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
       <translation type="unfinished" />
     </message>
@@ -9358,665 +9358,665 @@
   <context>
     <name>DebugUI</name>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="210" />
+      <location filename="../Debugger/DebugUI.py" line="207" />
       <source>Notification</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2342" />
-      <location filename="../Debugger/DebugUI.py" line="237" />
+      <location filename="../Debugger/DebugUI.py" line="2339" />
+      <location filename="../Debugger/DebugUI.py" line="234" />
       <source>Run Script</source>
       <translation>Esegui Script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="239" />
+      <location filename="../Debugger/DebugUI.py" line="236" />
       <source>&amp;Run Script...</source>
       <translation>Esegui Sc&amp;ript...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="245" />
+      <location filename="../Debugger/DebugUI.py" line="242" />
       <source>Run the current Script</source>
       <translation>Esegui lo script corrente</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="247" />
+      <location filename="../Debugger/DebugUI.py" line="244" />
       <source>&lt;b&gt;Run Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Esegui Script&lt;/b&gt;&lt;p&gt;Imposta gli argomenti della linea di comando ed esegue lo script al di fuori del debugger. Se il file non è stato salvato può essere salvato prima.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2348" />
-      <location filename="../Debugger/DebugUI.py" line="2342" />
-      <location filename="../Debugger/DebugUI.py" line="258" />
+      <location filename="../Debugger/DebugUI.py" line="2345" />
+      <location filename="../Debugger/DebugUI.py" line="2339" />
+      <location filename="../Debugger/DebugUI.py" line="255" />
       <source>Run Project</source>
       <translation>Esegui Progetto</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="260" />
+      <location filename="../Debugger/DebugUI.py" line="257" />
       <source>Run &amp;Project...</source>
       <translation>Esegui &amp;Progetto...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="266" />
+      <location filename="../Debugger/DebugUI.py" line="263" />
       <source>Run the current Project</source>
       <translation>Esegui il progetto corrente</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="268" />
+      <location filename="../Debugger/DebugUI.py" line="265" />
       <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Esegui Progetto&lt;/b&gt;&lt;p&gt;Imposta gli argomenti della linea di comando ed esegue il progetto corrente fuori dal debugger. Se file del progetto corrente non sono stati salvati, è possibile salvarli prima.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="280" />
+      <location filename="../Debugger/DebugUI.py" line="277" />
       <source>Coverage run of Script</source>
       <translation>Esecuzione sotto analisi dello Script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="282" />
+      <location filename="../Debugger/DebugUI.py" line="279" />
       <source>Coverage run of Script...</source>
       <translation>Esecuzione sotto analisi del progetto...</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="286" />
+      <source>Perform a coverage run of the current Script</source>
+      <translation>Esegui un'esecuzione coperta dello script corrente</translation>
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="289" />
-      <source>Perform a coverage run of the current Script</source>
-      <translation>Esegui un'esecuzione coperta dello script corrente</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="292" />
       <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Copertura eseguzione dello scitp&lt;/b&gt;&lt;p&gt;Imposta gli argomenti alla linea di comando ed esegui lo script sotto il controllo di uno strumento di analisi. Se il file ha delle modifiche non salvate è possibile salvarlo prima.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="303" />
+      <location filename="../Debugger/DebugUI.py" line="300" />
       <source>Coverage run of Project</source>
       <translation>Esecuzione sotto analisi del progetto</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="305" />
+      <location filename="../Debugger/DebugUI.py" line="302" />
       <source>Coverage run of Project...</source>
       <translation>Esecuzione sotto analisi del progetto...</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="309" />
+      <source>Perform a coverage run of the current Project</source>
+      <translation>Esegui un'esecuzione coperta del progetto corrente</translation>
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="312" />
-      <source>Perform a coverage run of the current Project</source>
-      <translation>Esegui un'esecuzione coperta del progetto corrente</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="315" />
       <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Esecuzione sotto analisi del progetto&lt;/b&gt;&lt;p&gt;Imposta gli argomenti alla linea di comando ed esegui il progetto sotto il controllo di uno strumento di analisi. Se ci sono file del progetto con modifiche non salvate è possibile salvarli prima.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="327" />
+      <location filename="../Debugger/DebugUI.py" line="324" />
       <source>Profile Script</source>
       <translation>Profila Script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="329" />
+      <location filename="../Debugger/DebugUI.py" line="326" />
       <source>Profile Script...</source>
       <translation>Profila Script...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="335" />
+      <location filename="../Debugger/DebugUI.py" line="332" />
       <source>Profile the current Script</source>
       <translation>Profile lo script corrente</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="337" />
+      <location filename="../Debugger/DebugUI.py" line="334" />
       <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profila Script&lt;/b&gt;&lt;p&gt;Imposta gli argomenti della linea di comando profila lo script. Se il file non è stato salvato può essere salvato prima.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="347" />
+      <location filename="../Debugger/DebugUI.py" line="344" />
       <source>Profile Project</source>
       <translation>Profila Progetto</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="349" />
+      <location filename="../Debugger/DebugUI.py" line="346" />
       <source>Profile Project...</source>
       <translation>Profila Progetto...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="355" />
+      <location filename="../Debugger/DebugUI.py" line="352" />
       <source>Profile the current Project</source>
       <translation>Profila il progetto corrente</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="357" />
+      <location filename="../Debugger/DebugUI.py" line="354" />
       <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profila Progetto&lt;/b&gt;&lt;p&gt;Imposta gli argomenti della linea di comando e profila il progetto. Se file del progetto corrente non sono stati salvati, è possibile salvarli prima.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2528" />
-      <location filename="../Debugger/DebugUI.py" line="368" />
+      <location filename="../Debugger/DebugUI.py" line="2525" />
+      <location filename="../Debugger/DebugUI.py" line="365" />
       <source>Debug Script</source>
       <translation>Debug dello script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="370" />
+      <location filename="../Debugger/DebugUI.py" line="367" />
       <source>&amp;Debug Script...</source>
       <translation>&amp;Debug dello script...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="376" />
+      <location filename="../Debugger/DebugUI.py" line="373" />
       <source>Debug the current Script</source>
       <translation>Debug dello script corrente</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="378" />
+      <location filename="../Debugger/DebugUI.py" line="375" />
       <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Debug dello Script&lt;/b&gt;&lt;p&gt;Imposta gli argomenti della linea di comando e imposta la linea corrente per essere la prima istruzione eseguibile di Python della finestra dell'editor. Se il file ha modifiche non salvate è possibile salvarle prima.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2534" />
-      <location filename="../Debugger/DebugUI.py" line="2528" />
-      <location filename="../Debugger/DebugUI.py" line="390" />
+      <location filename="../Debugger/DebugUI.py" line="2531" />
+      <location filename="../Debugger/DebugUI.py" line="2525" />
+      <location filename="../Debugger/DebugUI.py" line="387" />
       <source>Debug Project</source>
       <translation>Debug del Progetto</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="392" />
+      <location filename="../Debugger/DebugUI.py" line="389" />
       <source>Debug &amp;Project...</source>
       <translation>Debug del &amp;Progetto...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="398" />
+      <location filename="../Debugger/DebugUI.py" line="395" />
       <source>Debug the current Project</source>
       <translation>Debug del progetto corrente</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="400" />
+      <location filename="../Debugger/DebugUI.py" line="397" />
       <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Debug del Progetto&lt;/b&gt;&lt;p&gt;Imposta gli argomenti della linea di comando e imposta la linea corrente per essere la prima istruzione eseguibile di Python della finestra dell'editor. Se il progetto ha modifiche non salvate è possibile salvarle prima.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="414" />
-      <location filename="../Debugger/DebugUI.py" line="412" />
+      <location filename="../Debugger/DebugUI.py" line="411" />
+      <location filename="../Debugger/DebugUI.py" line="409" />
       <source>Restart</source>
       <translation>Riavvio</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="420" />
+      <location filename="../Debugger/DebugUI.py" line="417" />
       <source>Restart the last debugged script</source>
       <translation>Riavvia l'ultimo script debuggato</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="422" />
+      <location filename="../Debugger/DebugUI.py" line="419" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Riavvia&lt;/b&gt;&lt;p&gt;Imposta gli argomenti della linea di comando e imposta la linea corrente per essere la prima istruzione eseguibile di Python dell'ultimo script in debug. Se il file ha modifiche non salvate è possibile salvarle prima.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="631" />
-      <location filename="../Debugger/DebugUI.py" line="436" />
-      <location filename="../Debugger/DebugUI.py" line="434" />
+      <location filename="../Debugger/DebugUI.py" line="628" />
+      <location filename="../Debugger/DebugUI.py" line="433" />
+      <location filename="../Debugger/DebugUI.py" line="431" />
       <source>Stop</source>
       <translation>Stop</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="442" />
+      <location filename="../Debugger/DebugUI.py" line="439" />
       <source>Stop the running script.</source>
       <translation>Ferma lo script in esecuzione.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="444" />
+      <location filename="../Debugger/DebugUI.py" line="441" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ferma&lt;/b&gt;&lt;p&gt;Questo ferma lo script in esecuzione nel backend del debugger.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="455" />
+      <location filename="../Debugger/DebugUI.py" line="452" />
       <source>Continue</source>
       <translation>Continua</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="457" />
+      <location filename="../Debugger/DebugUI.py" line="454" />
       <source>&amp;Continue</source>
       <translation>&amp;Continua</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="463" />
+      <location filename="../Debugger/DebugUI.py" line="460" />
       <source>Continue running the program from the current line</source>
       <translation>Continua l'esecuzione del programma dalla linea corrente</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="465" />
+      <location filename="../Debugger/DebugUI.py" line="462" />
       <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Continua&lt;/b&gt;&lt;p&gt;Continua l'esecuzione del programma dalla linea corrente. Il programma si fermerà quando finirà o quando incontrerà un breakpoint.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="476" />
+      <location filename="../Debugger/DebugUI.py" line="473" />
       <source>Continue to Cursor</source>
       <translation>Continua fino al cursore</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="478" />
+      <location filename="../Debugger/DebugUI.py" line="475" />
       <source>Continue &amp;To Cursor</source>
       <translation>Con&amp;tinua fino al Cursore</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="485" />
+      <location filename="../Debugger/DebugUI.py" line="482" />
       <source>Continue running the program from the current line to the current cursor position</source>
       <translation>Continua l'esecuzione del programma dalla linea attuale fino alla posizione del cursore</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="491" />
+      <location filename="../Debugger/DebugUI.py" line="488" />
       <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Continua fino al cursore&lt;/b&gt;&lt;p&gt;Continua l'esecuzione del programma dalla linea attuale fino alla posizione del cursore.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="501" />
+      <location filename="../Debugger/DebugUI.py" line="498" />
       <source>Continue Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="503" />
+      <location filename="../Debugger/DebugUI.py" line="500" />
       <source>Continue &amp;Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="510" />
+      <location filename="../Debugger/DebugUI.py" line="507" />
       <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="516" />
+      <location filename="../Debugger/DebugUI.py" line="513" />
       <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="527" />
+      <location filename="../Debugger/DebugUI.py" line="524" />
       <source>Move Instruction Pointer to Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="529" />
+      <location filename="../Debugger/DebugUI.py" line="526" />
       <source>&amp;Jump To Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="536" />
+      <location filename="../Debugger/DebugUI.py" line="533" />
       <source>Skip the code from the current line to the current cursor position</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="542" />
+      <location filename="../Debugger/DebugUI.py" line="539" />
       <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="556" />
+      <location filename="../Debugger/DebugUI.py" line="553" />
       <source>Single Step</source>
       <translation>Step Singolo</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="558" />
+      <location filename="../Debugger/DebugUI.py" line="555" />
       <source>Sin&amp;gle Step</source>
       <translation>Step Sin&amp;golo</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="564" />
+      <location filename="../Debugger/DebugUI.py" line="561" />
       <source>Execute a single Python statement</source>
       <translation>Esegui una singola istruzione Python</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="566" />
+      <location filename="../Debugger/DebugUI.py" line="563" />
       <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Passo singolo&lt;/b&gt;&lt;p&gt;Esegue una singola istruzione Python. Se l'istruzione è una &lt;tt&gt;import&lt;/tt&gt;, un costruttore di una classe, o un metodo o una chiamata di funzione allora il controllo verrà tornato al debugger alla prossima istruzione.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="578" />
+      <location filename="../Debugger/DebugUI.py" line="575" />
       <source>Step Over</source>
       <translation>Step Over</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="580" />
+      <location filename="../Debugger/DebugUI.py" line="577" />
       <source>Step &amp;Over</source>
       <translation>Step &amp;Over</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="587" />
+      <location filename="../Debugger/DebugUI.py" line="584" />
       <source>Execute a single Python statement staying in the current frame</source>
       <translation>Esegui una singola istruzione Python restando nella stessa struttura</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="593" />
+      <location filename="../Debugger/DebugUI.py" line="590" />
       <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Singolo passor&lt;/b&gt;&lt;p&gt;Esegui una singola istruzione Python restando nella stessa struttura. Se l'istruzione e' un &lt;tt&gt;import&lt;/tt&gt;, un costruttore di classe, o un metodo o una chiamata di funzione allora il controllo tornerà al debugger dopo che l'istruzione è completata.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="606" />
+      <location filename="../Debugger/DebugUI.py" line="603" />
       <source>Step Out</source>
       <translation>Step Out</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="608" />
+      <location filename="../Debugger/DebugUI.py" line="605" />
       <source>Step Ou&amp;t</source>
       <translation>Step Ou&amp;t</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="612" />
+      <source>Execute Python statements until leaving the current frame</source>
+      <translation>Esegue istruzioni Python fino a quando esce dal blocco corrente</translation>
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="615" />
-      <source>Execute Python statements until leaving the current frame</source>
-      <translation>Esegue istruzioni Python fino a quando esce dal blocco corrente</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="618" />
       <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Esegue istruzioni Python fino a quando esce dal blocco corrente. Se l'istruzione e' un &lt;tt&gt;import&lt;/tt&gt;, un costruttore di classe, o un metodo o una chiamata di funzione allora il controllo tornerà al debugger dopo l'uscita dal blocco corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="633" />
+      <location filename="../Debugger/DebugUI.py" line="630" />
       <source>&amp;Stop</source>
       <translation>&amp;Stop</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="639" />
+      <location filename="../Debugger/DebugUI.py" line="636" />
       <source>Stop debugging</source>
       <translation>Ferma il debug</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="641" />
+      <location filename="../Debugger/DebugUI.py" line="638" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Ferma la sessione di debug.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="647" />
+      <location filename="../Debugger/DebugUI.py" line="644" />
       <source>Variables Type Filter</source>
       <translation>Filtro per i tipi di variabili</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="648" />
+      <location filename="../Debugger/DebugUI.py" line="645" />
       <source>Varia&amp;bles Type Filter...</source>
       <translation>Filtro per i tipi di varia&amp;bili...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="654" />
+      <location filename="../Debugger/DebugUI.py" line="651" />
       <source>Configure variables type filter</source>
       <translation>Configura il filtro per i tipi di variabile</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="656" />
+      <location filename="../Debugger/DebugUI.py" line="653" />
       <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Filtro tipo variabili&lt;/b&gt;&lt;p&gt;Configura il filtro per i tipi variabile. Solo i tipi di variabile che non sono selezionati sono mostrati nella finestra delle variabili globali o locali durante una sessione di debug. &lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="667" />
+      <location filename="../Debugger/DebugUI.py" line="664" />
       <source>Exceptions Filter</source>
       <translation>Filtro per le eccezioni</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="668" />
+      <location filename="../Debugger/DebugUI.py" line="665" />
       <source>&amp;Exceptions Filter...</source>
       <translation>Filtro per le &amp;Eccezioni...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="674" />
+      <location filename="../Debugger/DebugUI.py" line="671" />
       <source>Configure exceptions filter</source>
       <translation>Configura il filtro per le eccezioni</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="676" />
+      <location filename="../Debugger/DebugUI.py" line="673" />
       <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Filtro per le Eccezioni&lt;/b&gt;&lt;p&gt;Configura il filtro per le eccezioni. Solo i tipi di eccezione che sono elencati sono evidenziati durante una sessione di debug.&lt;/p&gt;&lt;p&gt;Notare che, tutte le eccezioni non gestite sono evidenziate indipendentemente dalla lista del filtro.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="688" />
+      <location filename="../Debugger/DebugUI.py" line="685" />
       <source>Ignored Exceptions</source>
       <translation>Eccezione ignorata</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="689" />
+      <location filename="../Debugger/DebugUI.py" line="686" />
       <source>&amp;Ignored Exceptions...</source>
       <translation>Eccezione &amp;ignorata...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="695" />
+      <location filename="../Debugger/DebugUI.py" line="692" />
       <source>Configure ignored exceptions</source>
       <translation>Configura eccezioni ignorate</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="697" />
+      <location filename="../Debugger/DebugUI.py" line="694" />
       <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Eccezioni ignorate&lt;/b&gt;&lt;p&gt;Configura le eccezioni da ignorare. Solo i tipi di eccezione che non sono elencati sono evidenziati durante una sessione di debug.&lt;/p&gt;&lt;p&gt;Per favore nota che le eccezioni non gestite non possono essere ignorate.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="719" />
-      <location filename="../Debugger/DebugUI.py" line="713" />
-      <location filename="../Debugger/DebugUI.py" line="711" />
+      <location filename="../Debugger/DebugUI.py" line="716" />
+      <location filename="../Debugger/DebugUI.py" line="710" />
+      <location filename="../Debugger/DebugUI.py" line="708" />
       <source>Toggle Breakpoint</source>
       <translation>Toggle Breakpoint</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="714" />
+      <location filename="../Debugger/DebugUI.py" line="711" />
       <source>Shift+F11</source>
       <comment>Debug|Toggle Breakpoint</comment>
       <translation>Shift+F11</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="721" />
+      <location filename="../Debugger/DebugUI.py" line="718" />
       <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Attiva un breakpoint sulla linea corrente dell'editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="739" />
-      <location filename="../Debugger/DebugUI.py" line="731" />
+      <location filename="../Debugger/DebugUI.py" line="736" />
+      <location filename="../Debugger/DebugUI.py" line="728" />
       <source>Edit Breakpoint</source>
       <translation>Modifica Breakpoint</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="733" />
+      <location filename="../Debugger/DebugUI.py" line="730" />
       <source>Edit Breakpoint...</source>
       <translation>Modifica Breakpoint...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="734" />
+      <location filename="../Debugger/DebugUI.py" line="731" />
       <source>Shift+F12</source>
       <comment>Debug|Edit Breakpoint</comment>
       <translation>Shift+F12</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="741" />
+      <location filename="../Debugger/DebugUI.py" line="738" />
       <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Modifica Breakpoint&lt;/b&gt;&lt;p&gt;Apre un dialogo per modificare le proprietà del breakpoint. Lavora sulla linea corrente dell'editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="759" />
-      <location filename="../Debugger/DebugUI.py" line="753" />
-      <location filename="../Debugger/DebugUI.py" line="751" />
+      <location filename="../Debugger/DebugUI.py" line="756" />
+      <location filename="../Debugger/DebugUI.py" line="750" />
+      <location filename="../Debugger/DebugUI.py" line="748" />
       <source>Next Breakpoint</source>
       <translation>Prossimo Breakpoint</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="754" />
+      <location filename="../Debugger/DebugUI.py" line="751" />
       <source>Ctrl+Shift+PgDown</source>
       <comment>Debug|Next Breakpoint</comment>
       <translation>Ctrl+Shift+PgDown</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="761" />
+      <location filename="../Debugger/DebugUI.py" line="758" />
       <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Prossimo Breakpoint&lt;/b&gt;&lt;p&gt;Va al prossimo breakpoint dell'editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="778" />
-      <location filename="../Debugger/DebugUI.py" line="772" />
-      <location filename="../Debugger/DebugUI.py" line="770" />
+      <location filename="../Debugger/DebugUI.py" line="775" />
+      <location filename="../Debugger/DebugUI.py" line="769" />
+      <location filename="../Debugger/DebugUI.py" line="767" />
       <source>Previous Breakpoint</source>
       <translation>Breakpoint Precedente</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="773" />
+      <location filename="../Debugger/DebugUI.py" line="770" />
       <source>Ctrl+Shift+PgUp</source>
       <comment>Debug|Previous Breakpoint</comment>
       <translation>Ctrl+Shift+PgUp</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="780" />
+      <location filename="../Debugger/DebugUI.py" line="777" />
       <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Breakpoint Precedente&lt;/b&gt;&lt;p&gt;Va al breakpoint precedente dell'editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="796" />
-      <location filename="../Debugger/DebugUI.py" line="790" />
-      <location filename="../Debugger/DebugUI.py" line="789" />
+      <location filename="../Debugger/DebugUI.py" line="793" />
+      <location filename="../Debugger/DebugUI.py" line="787" />
+      <location filename="../Debugger/DebugUI.py" line="786" />
       <source>Clear Breakpoints</source>
       <translation>Pulisci i Breakpoint</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="798" />
+      <location filename="../Debugger/DebugUI.py" line="795" />
       <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Pulisci i Breakpoints&lt;/b&gt;&lt;p&gt;Elimina i breakpoint di tutti gli editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="822" />
+      <location filename="../Debugger/DebugUI.py" line="819" />
       <source>&amp;Debug</source>
       <translation>&amp;Debug</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="824" />
+      <location filename="../Debugger/DebugUI.py" line="821" />
       <source>Sta&amp;rt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="826" />
+      <location filename="../Debugger/DebugUI.py" line="823" />
       <source>&amp;Breakpoints</source>
       <translation>&amp;Breakpoints</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="869" />
-      <location filename="../Debugger/DebugUI.py" line="867" />
+      <location filename="../Debugger/DebugUI.py" line="866" />
+      <location filename="../Debugger/DebugUI.py" line="864" />
       <source>Start</source>
       <translation>Inizia</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="882" />
-      <location filename="../Debugger/DebugUI.py" line="880" />
+      <location filename="../Debugger/DebugUI.py" line="879" />
+      <location filename="../Debugger/DebugUI.py" line="877" />
       <source>Debug</source>
       <translation>Debug</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1345" />
+      <location filename="../Debugger/DebugUI.py" line="1342" />
       <source>Message: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1349" />
+      <location filename="../Debugger/DebugUI.py" line="1346" />
       <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1354" />
+      <location filename="../Debugger/DebugUI.py" line="1351" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1366" />
+      <location filename="../Debugger/DebugUI.py" line="1363" />
       <source>Program terminated</source>
       <translation>Programma terminato</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1402" />
+      <location filename="../Debugger/DebugUI.py" line="1399" />
       <source>The program being debugged contains an unspecified syntax error.</source>
       <translation>Il programma che viene debuggato contiene un errore di sintassi non specificato.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1422" />
+      <location filename="../Debugger/DebugUI.py" line="1419" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; contiene l'errore di sintassi &lt;b&gt;{1}&lt;/b&gt; alla linea &lt;b&gt;{2}&lt;/b&gt;, carattere &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1450" />
+      <location filename="../Debugger/DebugUI.py" line="1447" />
       <source>An unhandled exception occured. See the shell window for details.</source>
       <translation>Un'eccezione non gestita è occorso. Guarda la finestra di shell per dettagli.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1497" />
+      <location filename="../Debugger/DebugUI.py" line="1494" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il programma in debug ha sollevato un'eccezione &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Linea: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Interrompere qui ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1515" />
+      <location filename="../Debugger/DebugUI.py" line="1512" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il programma debuggato ha sollevato un'eccezione &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1573" />
+      <location filename="../Debugger/DebugUI.py" line="1570" />
       <source>&lt;p&gt;The program generate the signal "{0}".&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1591" />
+      <location filename="../Debugger/DebugUI.py" line="1588" />
       <source>The program being debugged has terminated unexpectedly.</source>
       <translation>Il programma debuggato è terminato in maniera inaspettata.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1652" />
+      <location filename="../Debugger/DebugUI.py" line="1649" />
       <source>No locals available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1699" />
+      <location filename="../Debugger/DebugUI.py" line="1696" />
       <source>Breakpoint Condition Error</source>
       <translation>Errore condizione di interruzione</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1700" />
+      <location filename="../Debugger/DebugUI.py" line="1697" />
       <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation>&lt;p&gt;La condizione del breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contiene un errore di sintassi.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1757" />
+      <location filename="../Debugger/DebugUI.py" line="1754" />
       <source>Watch Expression Error</source>
       <translation>Errore espressione di watch</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1758" />
+      <location filename="../Debugger/DebugUI.py" line="1755" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation>&lt;p&gt;L'espressione  &lt;b&gt;{0}&lt;/b&gt; contiene un errore di sintassi.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1786" />
+      <location filename="../Debugger/DebugUI.py" line="1783" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;L'espressione '&lt;b&gt;{0}&lt;/b&gt;' esiste già.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1791" />
+      <location filename="../Debugger/DebugUI.py" line="1788" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;L'espressione  '&lt;b&gt;{0}&lt;/b&gt;' per la variabile &lt;b&gt;{1}&lt;/b&gt; esiste già.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1797" />
+      <location filename="../Debugger/DebugUI.py" line="1794" />
       <source>Watch expression already exists</source>
       <translation>L'espressione di controllo esiste già</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1962" />
-      <location filename="../Debugger/DebugUI.py" line="1953" />
+      <location filename="../Debugger/DebugUI.py" line="1959" />
+      <location filename="../Debugger/DebugUI.py" line="1950" />
       <source>Coverage Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1955" />
+      <location filename="../Debugger/DebugUI.py" line="1952" />
       <source>Coverage Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2349" />
-      <location filename="../Debugger/DebugUI.py" line="2158" />
-      <location filename="../Debugger/DebugUI.py" line="1963" />
+      <location filename="../Debugger/DebugUI.py" line="2346" />
+      <location filename="../Debugger/DebugUI.py" line="2155" />
+      <location filename="../Debugger/DebugUI.py" line="1960" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>Non c'è uno script principale definito per il progetto. Esco</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2157" />
-      <location filename="../Debugger/DebugUI.py" line="2148" />
+      <location filename="../Debugger/DebugUI.py" line="2154" />
+      <location filename="../Debugger/DebugUI.py" line="2145" />
       <source>Profile Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2150" />
+      <location filename="../Debugger/DebugUI.py" line="2147" />
       <source>Profile Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2535" />
+      <location filename="../Debugger/DebugUI.py" line="2532" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation>Non c'è uno script principale per il progetto. Non è possibile il debug.</translation>
     </message>
@@ -10735,12 +10735,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1451" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1458" />
       <source>Debug Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1452" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1459" />
       <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -12569,7 +12569,7 @@
   <context>
     <name>Editor</name>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3527" />
+      <location filename="../QScintilla/Editor.py" line="3525" />
       <location filename="../QScintilla/Editor.py" line="470" />
       <location filename="../QScintilla/Editor.py" line="455" />
       <source>Open File</source>
@@ -12641,7 +12641,7 @@
       <translation>Annulla commenta</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9939" />
+      <location filename="../QScintilla/Editor.py" line="9937" />
       <location filename="../QScintilla/Editor.py" line="969" />
       <source>Generate Docstring</source>
       <translation type="unfinished" />
@@ -12919,7 +12919,7 @@
       <translation type="unfinished">Spelling</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9026" />
+      <location filename="../QScintilla/Editor.py" line="9024" />
       <location filename="../QScintilla/Editor.py" line="1367" />
       <source>Check spelling...</source>
       <translation>Controllo sillabazione...</translation>
@@ -12980,7 +12980,7 @@
       <translation>Modifica Breakpoint...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6498" />
+      <location filename="../QScintilla/Editor.py" line="6496" />
       <location filename="../QScintilla/Editor.py" line="1452" />
       <source>Enable breakpoint</source>
       <translation>Abilita breakpoint</translation>
@@ -13142,444 +13142,444 @@
       <translation>Stai tentando di modificare un file in sola lettura. Per favore prima salva come un file diverso.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="2701" />
+      <location filename="../QScintilla/Editor.py" line="2699" />
       <source>Add Breakpoint</source>
       <translation type="unfinished">Aggiungi un breakpoint</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="2702" />
+      <location filename="../QScintilla/Editor.py" line="2700" />
       <source>No Python byte code will be created for the selected line. No break point will be set!</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3056" />
+      <location filename="../QScintilla/Editor.py" line="3054" />
       <source>Printing...</source>
       <translation>In stampa...</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="3071" />
+      <source>Printing completed</source>
+      <translation>Stampa completata</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="3073" />
-      <source>Printing completed</source>
-      <translation>Stampa completata</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="3075" />
       <source>Error while printing</source>
       <translation>Errore durante la stampa</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3078" />
+      <location filename="../QScintilla/Editor.py" line="3076" />
       <source>Printing aborted</source>
       <translation>Stampa annullata</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3460" />
+      <location filename="../QScintilla/Editor.py" line="3458" />
       <source>File Modified</source>
       <translation>File modificato</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3461" />
+      <location filename="../QScintilla/Editor.py" line="3459" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; contiene modifiche non salvate.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3528" />
+      <location filename="../QScintilla/Editor.py" line="3526" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere aperto.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3719" />
-      <location filename="../QScintilla/Editor.py" line="3700" />
-      <location filename="../QScintilla/Editor.py" line="3660" />
+      <location filename="../QScintilla/Editor.py" line="3717" />
+      <location filename="../QScintilla/Editor.py" line="3698" />
+      <location filename="../QScintilla/Editor.py" line="3658" />
       <source>Save File</source>
       <translation>Salva file</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3661" />
+      <location filename="../QScintilla/Editor.py" line="3659" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere salvato.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3720" />
+      <location filename="../QScintilla/Editor.py" line="3718" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3864" />
+      <location filename="../QScintilla/Editor.py" line="3862" />
       <source>Save File to Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3865" />
+      <location filename="../QScintilla/Editor.py" line="3863" />
       <source>Enter the complete device file path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5653" />
+      <location filename="../QScintilla/Editor.py" line="5651" />
       <source>Autocompletion</source>
       <translation>Autocompletamento</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5654" />
+      <location filename="../QScintilla/Editor.py" line="5652" />
       <source>Autocompletion is not available because there is no autocompletion source set.</source>
       <translation>L'autocomplentamento non è disponibile perchè non ci sono fonti impostate.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5788" />
+      <location filename="../QScintilla/Editor.py" line="5786" />
       <source>Auto-Completion Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5789" />
+      <location filename="../QScintilla/Editor.py" line="5787" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6085" />
+      <location filename="../QScintilla/Editor.py" line="6083" />
       <source>Call-Tips Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6086" />
+      <location filename="../QScintilla/Editor.py" line="6084" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6502" />
+      <location filename="../QScintilla/Editor.py" line="6500" />
       <source>Disable breakpoint</source>
       <translation>Disabilita breakpoint</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6917" />
+      <location filename="../QScintilla/Editor.py" line="6915" />
       <source>Code Coverage</source>
       <translation>Analisi codice</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6918" />
+      <location filename="../QScintilla/Editor.py" line="6916" />
       <source>Please select a coverage file</source>
       <translation>Per favore seleziona un file per l'analisi</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6993" />
-      <location filename="../QScintilla/Editor.py" line="6985" />
+      <location filename="../QScintilla/Editor.py" line="6991" />
+      <location filename="../QScintilla/Editor.py" line="6983" />
       <source>Show Code Coverage Annotations</source>
       <translation>Mostra le annotazioni dell'analisi del codice</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6986" />
+      <location filename="../QScintilla/Editor.py" line="6984" />
       <source>All lines have been covered.</source>
       <translation>Tutte le linee sono state analizzate.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6994" />
+      <location filename="../QScintilla/Editor.py" line="6992" />
       <source>There is no coverage file available.</source>
       <translation>Non ci sono file di analisi disponibili.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7102" />
+      <location filename="../QScintilla/Editor.py" line="7100" />
       <source>Profile Data</source>
       <translation>Profilazione dati</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7103" />
+      <location filename="../QScintilla/Editor.py" line="7101" />
       <source>Please select a profile file</source>
       <translation>Per favore seleziona un file per la profilazione</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7265" />
-      <location filename="../QScintilla/Editor.py" line="7259" />
+      <location filename="../QScintilla/Editor.py" line="7263" />
+      <location filename="../QScintilla/Editor.py" line="7257" />
       <source>Syntax Error</source>
       <translation>Errore di sintassi</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7266" />
+      <location filename="../QScintilla/Editor.py" line="7264" />
       <source>No syntax error message available.</source>
       <translation>Nessun messaggio degli errori di sintassi disponibile.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7513" />
-      <location filename="../QScintilla/Editor.py" line="7507" />
+      <location filename="../QScintilla/Editor.py" line="7511" />
+      <location filename="../QScintilla/Editor.py" line="7505" />
       <source>Warning</source>
       <translation>Attenzione</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7513" />
+      <location filename="../QScintilla/Editor.py" line="7511" />
       <source>No warning messages available.</source>
       <translation>Nessun messaggio di attenzione disponibile.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7592" />
+      <location filename="../QScintilla/Editor.py" line="7590" />
       <source>Info: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7608" />
-      <location filename="../QScintilla/Editor.py" line="7594" />
+      <location filename="../QScintilla/Editor.py" line="7606" />
+      <location filename="../QScintilla/Editor.py" line="7592" />
       <source>Error: {0}</source>
       <translation>Errore: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7596" />
+      <location filename="../QScintilla/Editor.py" line="7594" />
       <source>Style: {0}</source>
       <translation>Stile: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7601" />
+      <location filename="../QScintilla/Editor.py" line="7599" />
       <source>Warning: {0}</source>
       <translation>Attenzione: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7729" />
       <source>Macro Name</source>
       <translation>Nome Macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7729" />
       <source>Select a macro name:</source>
       <translation>Seleziona un nome per la macro:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7757" />
+      <location filename="../QScintilla/Editor.py" line="7755" />
       <source>Load macro file</source>
       <translation>Carica un file di macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7803" />
-      <location filename="../QScintilla/Editor.py" line="7759" />
-      <source>Macro files (*.macro)</source>
-      <translation>File Macro (*.macro)</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7781" />
-      <location filename="../QScintilla/Editor.py" line="7771" />
-      <source>Error loading macro</source>
-      <translation>Errore nel caricamento della macro</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7772" />
-      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Il file macro &lt;b&gt;{0}&lt;/b&gt; non può essere letto.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7782" />
-      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Il file macro &lt;b&gt;{0}&lt;/b&gt; è danneggiato.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="7801" />
+      <location filename="../QScintilla/Editor.py" line="7757" />
+      <source>Macro files (*.macro)</source>
+      <translation>File Macro (*.macro)</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7779" />
+      <location filename="../QScintilla/Editor.py" line="7769" />
+      <source>Error loading macro</source>
+      <translation>Errore nel caricamento della macro</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7770" />
+      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Il file macro &lt;b&gt;{0}&lt;/b&gt; non può essere letto.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7780" />
+      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Il file macro &lt;b&gt;{0}&lt;/b&gt; è danneggiato.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7799" />
       <source>Save macro file</source>
       <translation>Salva un file di macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7819" />
+      <location filename="../QScintilla/Editor.py" line="7817" />
       <source>Save macro</source>
       <translation>Salva macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7820" />
+      <location filename="../QScintilla/Editor.py" line="7818" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file  delle macro &lt;b&gt;{0}&lt;/b&gt; esiste già.Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7835" />
+      <location filename="../QScintilla/Editor.py" line="7833" />
       <source>Error saving macro</source>
       <translation>Errore nel salvataggio della macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7836" />
+      <location filename="../QScintilla/Editor.py" line="7834" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file macro &lt;b&gt;{0}&lt;/b&gt; non può essere scritto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7849" />
+      <location filename="../QScintilla/Editor.py" line="7847" />
       <source>Start Macro Recording</source>
       <translation>Avvia registrazione della macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7850" />
+      <location filename="../QScintilla/Editor.py" line="7848" />
       <source>Macro recording is already active. Start new?</source>
       <translation>Registrazione macro già attiva. Avvia nuovamente ?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7876" />
+      <location filename="../QScintilla/Editor.py" line="7874" />
       <source>Macro Recording</source>
       <translation>Registrazione Macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7877" />
+      <location filename="../QScintilla/Editor.py" line="7875" />
       <source>Enter name of the macro:</source>
       <translation>Inserisci un nome per la macro:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8060" />
+      <location filename="../QScintilla/Editor.py" line="8058" />
       <source>{0} (ro)</source>
       <translation>{0} (ro)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8245" />
+      <location filename="../QScintilla/Editor.py" line="8243" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8251" />
+      <location filename="../QScintilla/Editor.py" line="8249" />
       <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
       <translation>&lt;br&gt;&lt;b&gt;Attenzione:&lt;/b&gt; con la riapertura le modifiche andranno perse.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8258" />
+      <location filename="../QScintilla/Editor.py" line="8256" />
       <source>File changed</source>
       <translation>File modificato</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8351" />
+      <location filename="../QScintilla/Editor.py" line="8349" />
       <source>Reload File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8352" />
+      <location filename="../QScintilla/Editor.py" line="8350" />
       <source>&lt;p&gt;The editor contains unsaved modifications.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reloading it.&lt;/p&gt;&lt;p&gt;Shall the editor really be reloaded?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8452" />
+      <location filename="../QScintilla/Editor.py" line="8450" />
       <source>Drop Error</source>
       <translation>Errore Drop</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8453" />
+      <location filename="../QScintilla/Editor.py" line="8451" />
       <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="../QScintilla/Editor.py" line="8472" />
+      <source>Resources</source>
+      <translation>Risorse</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="8474" />
-      <source>Resources</source>
-      <translation>Risorse</translation>
+      <source>Add file...</source>
+      <translation>Aggiungi file...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="8475" />
+      <source>Add files...</source>
+      <translation>Aggiungi files...</translation>
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="8476" />
-      <source>Add file...</source>
-      <translation>Aggiungi file...</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="8477" />
-      <source>Add files...</source>
-      <translation>Aggiungi files...</translation>
+      <source>Add aliased file...</source>
+      <translation>Aggiungi file sinonimo...</translation>
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="8478" />
-      <source>Add aliased file...</source>
-      <translation>Aggiungi file sinonimo...</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="8480" />
       <source>Add localized resource...</source>
       <translation>Aggiungi una risorsa localizzata...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8483" />
+      <location filename="../QScintilla/Editor.py" line="8481" />
       <source>Add resource frame</source>
       <translation>Aggiungi riquadro delle risorse</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8503" />
+      <location filename="../QScintilla/Editor.py" line="8501" />
       <source>Add file resource</source>
       <translation>Aggiungi un file risorse</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8517" />
+      <location filename="../QScintilla/Editor.py" line="8515" />
       <source>Add file resources</source>
       <translation>Aggiundi dei file risorse</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8541" />
-      <location filename="../QScintilla/Editor.py" line="8535" />
+      <location filename="../QScintilla/Editor.py" line="8539" />
+      <location filename="../QScintilla/Editor.py" line="8533" />
       <source>Add aliased file resource</source>
       <translation>Aggiungi file sinonimo delle risorse</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8542" />
+      <location filename="../QScintilla/Editor.py" line="8540" />
       <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
       <translation>Alias per il file &lt;b&gt;{0}&lt;/b&gt;:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8617" />
+      <location filename="../QScintilla/Editor.py" line="8615" />
       <source>Package Diagram</source>
       <translation>Diagrammi del package</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8618" />
+      <location filename="../QScintilla/Editor.py" line="8616" />
       <source>Include class attributes?</source>
       <translation>Includi gli attributi della classe ?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8638" />
+      <location filename="../QScintilla/Editor.py" line="8636" />
       <source>Imports Diagram</source>
       <translation>Importa diagrammi</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8639" />
+      <location filename="../QScintilla/Editor.py" line="8637" />
       <source>Include imports from external modules?</source>
       <translation>Includi gli import dai moduli esterni ?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8658" />
+      <location filename="../QScintilla/Editor.py" line="8656" />
       <source>Application Diagram</source>
       <translation>Diagrammi dell'applicazione</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8659" />
+      <location filename="../QScintilla/Editor.py" line="8657" />
       <source>Include module names?</source>
       <translation>Includi i nomi dei moduli ?</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="9028" />
+      <source>Add to dictionary</source>
+      <translation>Aggiungi al dizionario</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="9030" />
-      <source>Add to dictionary</source>
-      <translation>Aggiungi al dizionario</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="9032" />
       <source>Ignore All</source>
       <translation>Ignora tutto</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9479" />
+      <location filename="../QScintilla/Editor.py" line="9477" />
       <source>Sort Lines</source>
       <translation>Righe ordinate</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9480" />
+      <location filename="../QScintilla/Editor.py" line="9478" />
       <source>The selection contains illegal data for a numerical sort.</source>
       <translation>La selezione contiene dati non validi per un ordinamento numerico.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9573" />
+      <location filename="../QScintilla/Editor.py" line="9571" />
       <source>Register Mouse Click Handler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9574" />
+      <location filename="../QScintilla/Editor.py" line="9572" />
       <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9667" />
+      <location filename="../QScintilla/Editor.py" line="9665" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9673" />
+      <location filename="../QScintilla/Editor.py" line="9671" />
       <source>{0:4d}    {1}
     =&gt;  {2}</source>
       <comment>line number, source code, file name</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9742" />
+      <location filename="../QScintilla/Editor.py" line="9740" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9743" />
+      <location filename="../QScintilla/Editor.py" line="9741" />
       <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -18787,12 +18787,12 @@
   <context>
     <name>EricApplication</name>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="227" />
+      <location filename="../EricWidgets/EricApplication.py" line="226" />
       <source>Loading Style Sheet</source>
       <translation type="unfinished">Caricamento Style Sheet</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="230" />
+      <location filename="../EricWidgets/EricApplication.py" line="229" />
       <source>&lt;p&gt;The Qt Style Sheet file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Il file Qt Style Sheet &lt;b&gt;{0}&lt;/b&gt; non può essere letto. &lt;br&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
@@ -18950,12 +18950,12 @@
   <context>
     <name>EricJsonServer</name>
     <message>
-      <location filename="../EricNetwork/EricJsonServer.py" line="185" />
+      <location filename="../EricNetwork/EricJsonServer.py" line="199" />
       <source>JSON Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricNetwork/EricJsonServer.py" line="186" />
+      <location filename="../EricNetwork/EricJsonServer.py" line="200" />
       <source>&lt;p&gt;The response received from the client could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -19426,39 +19426,39 @@
   <context>
     <name>EricPathPickerBase</name>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="178" />
-      <location filename="../EricWidgets/EricPathPicker.py" line="107" />
-      <location filename="../EricWidgets/EricPathPicker.py" line="100" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="177" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="106" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="99" />
       <source>Enter Path Name</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="175" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="174" />
       <source>Enter Path Names separated by ';'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="520" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="519" />
       <source>Choose a file to open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="522" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="521" />
       <source>Choose files to open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="524" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="523" />
       <source>Choose files and directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="530" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="529" />
       <source>Choose a file to save</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="532" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="531" />
       <source>Choose a directory</source>
       <translation type="unfinished" />
     </message>
@@ -20248,12 +20248,12 @@
   <context>
     <name>EricTldExtractor</name>
     <message>
-      <location filename="../EricNetwork/EricTldExtractor.py" line="294" />
+      <location filename="../EricNetwork/EricTldExtractor.py" line="293" />
       <source>TLD Data File not found</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricNetwork/EricTldExtractor.py" line="295" />
+      <location filename="../EricNetwork/EricTldExtractor.py" line="294" />
       <source>&lt;p&gt;The file 'effective_tld_names.dat' was not found!&lt;br/&gt;You can download it from '&lt;a href="{0}"&gt;&lt;b&gt;here&lt;/b&gt;&lt;/a&gt;' to one of the following paths:&lt;/p&gt;&lt;ul&gt;{1}&lt;/ul&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -32215,77 +32215,77 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="573" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="575" />
       <source>Backward</source>
       <translation type="unfinished">Indietro</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="578" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="580" />
       <source>Forward</source>
       <translation type="unfinished">Avanti</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="583" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="585" />
       <source>Reload</source>
       <translation type="unfinished">Ricarica</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="595" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="597" />
       <source>Copy Page URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="601" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="603" />
       <source>Bookmark Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="609" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="611" />
       <source>Zoom in</source>
       <translation type="unfinished">Ingrandisci</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="614" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="616" />
       <source>Zoom out</source>
       <translation type="unfinished">Riduci</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="619" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="621" />
       <source>Zoom reset</source>
       <translation type="unfinished">Reset zoom</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="625" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="627" />
       <source>Copy</source>
       <translation type="unfinished">Copia</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="631" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="633" />
       <source>Select All</source>
       <translation type="unfinished">Seleziona tutti</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="638" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="640" />
       <source>Close</source>
       <translation type="unfinished">Chiudi</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="643" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="645" />
       <source>Close Others</source>
       <translation type="unfinished">Chiudi altri</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="661" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="663" />
       <source>Open Link in New Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="668" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="670" />
       <source>Open Link in Background Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="676" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="678" />
       <source>Copy URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
@@ -32293,184 +32293,184 @@
   <context>
     <name>HelpViewerWidget</name>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="126" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="127" />
       <source>Open a local file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="132" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="133" />
       <source>Select action from menu</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="148" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="149" />
       <source>Move one page backward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="153" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="154" />
       <source>Move one page forward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="165" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="166" />
       <source>Reload the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="176" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="177" />
       <source>Zoom in on the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="182" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="183" />
       <source>Zoom out on the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="189" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="190" />
       <source>Reset the zoom level of the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="201" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="202" />
       <source>Add a new empty page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="207" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="208" />
       <source>Close the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="218" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="219" />
       <source>Show or hide the search pane</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="294" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="295" />
       <source>Show list of open pages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="297" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="298" />
       <source>Show the table of contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="300" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="301" />
       <source>Show the help document index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="303" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="304" />
       <source>Show the help search window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="306" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="307" />
       <source>Show list of bookmarks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
-      <source>eric API Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="445" />
-      <source>Python 3 Documentation</source>
-      <translation type="unfinished">Documentazione Python 3</translation>
+      <source>eric API Documentation</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="446" />
-      <source>Qt5 Documentation</source>
-      <translation type="unfinished">Documentazione Qt4 {5 ?}</translation>
+      <source>Python 3 Documentation</source>
+      <translation type="unfinished">Documentazione Python 3</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="447" />
-      <source>Qt6 Documentation</source>
-      <translation type="unfinished">Documentazione Qt4 {6 ?}</translation>
+      <source>Qt5 Documentation</source>
+      <translation type="unfinished">Documentazione Qt4 {5 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
-      <source>PyQt5 Documentation</source>
-      <translation type="unfinished">Documentazione PyQt4 {5 ?}</translation>
+      <source>Qt6 Documentation</source>
+      <translation type="unfinished">Documentazione Qt4 {6 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
-      <source>PyQt6 Documentation</source>
-      <translation type="unfinished">Documentazione PyQt4 {6 ?}</translation>
+      <source>PyQt5 Documentation</source>
+      <translation type="unfinished">Documentazione PyQt4 {5 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
+      <source>PyQt6 Documentation</source>
+      <translation type="unfinished">Documentazione PyQt4 {6 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
+      <source>PySide2 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="452" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="508" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="509" />
       <source>Open HTML File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="510" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="511" />
       <source>HTML Files (*.htm *.html);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="697" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="698" />
       <source>Help Engine</source>
       <translation type="unfinished">Motore di help</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="721" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="722" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished">Ricerca documentazione...</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="732" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="733" />
       <source>eric Help Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="757" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="758" />
       <source>Manage QtHelp Documents</source>
       <translation type="unfinished">Gestisci i documenti QtHelp</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="760" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="761" />
       <source>Reindex Documentation</source>
       <translation type="unfinished">Reindicizza la documentazione</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="765" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="766" />
       <source>Configure Help Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="858" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="838" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="859" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="839" />
       <source>Clear History</source>
       <translation type="unfinished">Pulisci la history</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="961" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="962" />
       <source>Updating search index</source>
       <translation type="unfinished">Aggiornamento indice di ricerca</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1019" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1020" />
       <source>Filtered by: </source>
       <translation type="unfinished">Filtrato per:</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1055" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1050" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1056" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1051" />
       <source>Unfiltered</source>
       <translation type="unfinished">Non filtrato</translation>
     </message>
@@ -42032,22 +42032,22 @@
   <context>
     <name>Histedit</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="76" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="75" />
       <source>Starting histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="104" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="102" />
       <source>Continue histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="131" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="129" />
       <source>Abort histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="159" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="157" />
       <source>Edit Plan</source>
       <translation type="unfinished" />
     </message>
@@ -50172,17 +50172,17 @@
   <context>
     <name>LogViewerPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="36" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="33" />
       <source>&lt;b&gt;Message Filters for Standard Output&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stdout.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="43" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="40" />
       <source>&lt;b&gt;Message Filters for Standard Error &lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stderr.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="50" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="47" />
       <source>&lt;b&gt;Message Filters for both&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stdout or stderr.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -51799,8 +51799,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="364" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="347" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="361" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="344" />
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.ui" line="0" />
       <source>Press to show the password</source>
@@ -52084,66 +52084,66 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="56" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="53" />
       <source>Automatic</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="55" />
+      <source>Light</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="58" />
-      <source>Light</source>
+      <source>Dark</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="61" />
-      <source>Dark</source>
+      <source>Blue Cerulean</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="64" />
-      <source>Blue Cerulean</source>
+      <source>Brown Sand</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="67" />
-      <source>Brown Sand</source>
+      <source>Blue NCS</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="70" />
-      <source>Blue NCS</source>
+      <source>High Contrast</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="73" />
-      <source>High Contrast</source>
+      <source>Blue Icy</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="76" />
-      <source>Blue Icy</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="79" />
       <source>Qt</source>
       <translation type="unfinished">Qt</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="90" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="88" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="85" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="82" />
+      <source>All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="93" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="91" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="88" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="85" />
-      <source>All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="96" />
       <source>open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="360" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="343" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="357" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="340" />
       <source>Press to hide the password</source>
       <translation type="unfinished" />
     </message>
@@ -58391,62 +58391,62 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="44" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="42" />
       <source>Enter requirements file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="47" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="45" />
       <source>Press to select the requirements file through a file selection dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="50" />
+      <source>Text Files (*.txt);;All Files (*)</source>
+      <translation type="unfinished">File Testo(*.txt);;Tutti i file (*)</translation>
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="52" />
-      <source>Text Files (*.txt);;All Files (*)</source>
-      <translation type="unfinished">File Testo(*.txt);;Tutti i file (*)</translation>
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="54" />
       <source>Enter 'pyproject.toml' file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="57" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="55" />
       <source>Press to select the 'pyproject.toml' file through a file selection dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="60" />
+      <source>TOML Files (*.toml);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="62" />
-      <source>TOML Files (*.toml);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="64" />
       <source>Enter package file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="67" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="65" />
       <source>Press to select the package file through a file selection dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="73" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="71" />
       <source>Python Wheel (*.whl);;Archive Files (*.tar.gz *.zip);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="80" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="78" />
       <source>Enter file name:</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="81" />
+      <source>Press to select a file through a file selection dialog.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="83" />
-      <source>Press to select a file through a file selection dialog.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="85" />
       <source>All Files (*)</source>
       <translation type="unfinished" />
     </message>
@@ -60881,18 +60881,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1901" />
+      <location filename="../Preferences/__init__.py" line="1907" />
       <source>Export Preferences</source>
       <translation>Esporta Preferenze</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1930" />
-      <location filename="../Preferences/__init__.py" line="1903" />
+      <location filename="../Preferences/__init__.py" line="1936" />
+      <location filename="../Preferences/__init__.py" line="1909" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation>File proprietà (*.ini);;Tutti i file(*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1928" />
+      <location filename="../Preferences/__init__.py" line="1934" />
       <source>Import Preferences</source>
       <translation>Importa Preferenze</translation>
     </message>
@@ -62568,9 +62568,9 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6752" />
-      <location filename="../Project/Project.py" line="6723" />
-      <location filename="../Project/Project.py" line="6677" />
+      <location filename="../Project/Project.py" line="6746" />
+      <location filename="../Project/Project.py" line="6717" />
+      <location filename="../Project/Project.py" line="6671" />
       <location filename="../Project/Project.py" line="4820" />
       <source>Execute Make</source>
       <translation type="unfinished" />
@@ -62591,7 +62591,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6729" />
+      <location filename="../Project/Project.py" line="6723" />
       <location filename="../Project/Project.py" line="4839" />
       <source>Test for Changes</source>
       <translation type="unfinished" />
@@ -63126,37 +63126,37 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6678" />
+      <location filename="../Project/Project.py" line="6672" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6724" />
+      <location filename="../Project/Project.py" line="6718" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6732" />
+      <location filename="../Project/Project.py" line="6726" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6737" />
+      <location filename="../Project/Project.py" line="6731" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6753" />
+      <location filename="../Project/Project.py" line="6747" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7172" />
+      <location filename="../Project/Project.py" line="7166" />
       <source>Interpreter Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7173" />
+      <location filename="../Project/Project.py" line="7167" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation type="unfinished" />
     </message>
@@ -74124,7 +74124,7 @@
       <translation type="unfinished">Mostra sorgenti</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2178" />
+      <location filename="../QScintilla/Shell.py" line="2179" />
       <location filename="../QScintilla/Shell.py" line="1907" />
       <location filename="../QScintilla/Shell.py" line="1906" />
       <location filename="../QScintilla/Shell.py" line="401" />
@@ -74254,59 +74254,59 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2329" />
+      <location filename="../QScintilla/Shell.py" line="2330" />
       <source>Drop Error</source>
       <translation>Drop Error</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2330" />
+      <location filename="../QScintilla/Shell.py" line="2331" />
       <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="../QScintilla/Shell.py" line="2576" />
-      <location filename="../QScintilla/Shell.py" line="2562" />
-      <location filename="../QScintilla/Shell.py" line="2541" />
-      <source>Save Shell Contents</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="2543" />
-      <source>Text Files (*.txt);;All Files (*)</source>
-      <translation type="unfinished">File Testo(*.txt);;Tutti i file (*)</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="2563" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-      <translation type="unfinished">&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Shell.py" line="2577" />
+      <location filename="../QScintilla/Shell.py" line="2563" />
+      <location filename="../QScintilla/Shell.py" line="2542" />
+      <source>Save Shell Contents</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2544" />
+      <source>Text Files (*.txt);;All Files (*)</source>
+      <translation type="unfinished">File Testo(*.txt);;Tutti i file (*)</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2564" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2578" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere salvato.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2591" />
+      <location filename="../QScintilla/Shell.py" line="2592" />
       <source>&lt;tr&gt;&lt;td&gt;%restart&lt;/td&gt;&lt;td&gt;Kill the shell and start a new one.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%clear&lt;/td&gt;&lt;td&gt;Clear the display of the shell window.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%start [environment]&lt;/td&gt;&lt;td&gt;Start a shell for a virtual environment with the given name. If no name is given, a default shell is started.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%envs&lt;br/&gt;%environments&lt;/td&gt;&lt;td&gt;Show a list of known virtual environment names.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%which&lt;/td&gt;&lt;td&gt;Show the name of the active virtual environment.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%hist [n]&lt;br/&gt;%history [n]&lt;/td&gt;&lt;td&gt;Show the most recent 'n' entries of the history. If 'n' is not given, show all entries.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%shist&lt;br/&gt;%shistory&lt;br/&gt;%select_history&lt;/td&gt;&lt;td&gt;Select a command from the history.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%chist&lt;br/&gt;%chistory&lt;br/&gt;%clear_history&lt;/td&gt;&lt;td&gt;Clear the current history after confirmation.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%help&lt;/td&gt;&lt;td&gt;Show this help text.&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2613" />
+      <location filename="../QScintilla/Shell.py" line="2614" />
       <source>&lt;tr&gt;&lt;td&gt;%quit&lt;br/&gt;%quit()&lt;br/&gt;%exit&lt;br/&gt;%exit()&lt;/td&gt;&lt;td&gt;Exit the application.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;These commands are available through the window menus as well.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2621" />
+      <location filename="../QScintilla/Shell.py" line="2622" />
       <source>&lt;/table&gt;&lt;p&gt;These commands are available through the context menu as well.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2628" />
-      <source>Shell Special Commands</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/Shell.py" line="2629" />
+      <source>Shell Special Commands</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2630" />
       <source>The shell supports these special commands:</source>
       <translation type="unfinished" />
     </message>
@@ -90126,2545 +90126,2565 @@
   <context>
     <name>UserInterface</name>
     <message>
-      <location filename="../UI/UserInterface.py" line="308" />
+      <location filename="../UI/UserInterface.py" line="314" />
       <source>Initializing Basic Services...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="343" />
+      <location filename="../UI/UserInterface.py" line="349" />
       <source>Initializing Plugin Manager...</source>
       <translation>Inizializzazione Gestore Plugin...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="350" />
+      <location filename="../UI/UserInterface.py" line="356" />
       <source>Generating Main User Interface...</source>
       <translation>Generazione interfaccia utente principale...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="408" />
+      <location filename="../UI/UserInterface.py" line="414" />
       <source>Setting up signal/slot-connections...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="602" />
+      <location filename="../UI/UserInterface.py" line="607" />
       <source>Initializing Tools...</source>
       <translation>Inizializzazione strumenti...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="613" />
+      <location filename="../UI/UserInterface.py" line="618" />
       <source>Registering Objects...</source>
       <translation>Registrazione Oggetti...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="647" />
+      <location filename="../UI/UserInterface.py" line="652" />
       <source>Initializing Actions...</source>
       <translation>Inizializzazione Azioni...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="649" />
+      <location filename="../UI/UserInterface.py" line="654" />
       <source>Initializing Menus...</source>
       <translation>Inizializzazione Menù...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="651" />
+      <location filename="../UI/UserInterface.py" line="656" />
       <source>Initializing Toolbars...</source>
       <translation>Inizializzazione barre degli strumenti...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="653" />
+      <location filename="../UI/UserInterface.py" line="658" />
       <source>Initializing Statusbar...</source>
       <translation>Inizializzazione barra di stato...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="680" />
+      <location filename="../UI/UserInterface.py" line="685" />
       <source>Initializing Single Application Server...</source>
       <translation>Inizializzazione Single Application Server...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="686" />
-      <source>Initializing Plugins...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="689" />
-      <source>Activating Plugins...</source>
-      <translation>Attivazione Plugin...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="691" />
-      <source>Generating Plugins Toolbars...</source>
+      <source>Initializing Plugins...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="694" />
+      <source>Activating Plugins...</source>
+      <translation>Attivazione Plugin...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="696" />
+      <source>Generating Plugins Toolbars...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="699" />
       <source>Cleaning Plugins Download Area...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="704" />
+      <location filename="../UI/UserInterface.py" line="709" />
       <source>Restoring Toolbarmanager...</source>
       <translation>Ripristino toolbarmanager...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="712" />
+      <location filename="../UI/UserInterface.py" line="717" />
       <source>Setting View Profile...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="725" />
-      <source>Reading Tasks...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="730" />
-      <source>Reading Templates...</source>
+      <source>Reading Tasks...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="735" />
+      <source>Reading Templates...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="740" />
       <source>Starting Debugger...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2195" />
-      <location filename="../UI/UserInterface.py" line="1086" />
+      <location filename="../UI/UserInterface.py" line="2200" />
+      <location filename="../UI/UserInterface.py" line="1091" />
       <source>Left Toolbox</source>
       <translation type="unfinished">Barra degli strumenti sinistra</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2241" />
-      <location filename="../UI/UserInterface.py" line="1096" />
+      <location filename="../UI/UserInterface.py" line="2246" />
+      <location filename="../UI/UserInterface.py" line="1101" />
       <source>Horizontal Toolbox</source>
       <translation>Barra dei comandi orizzontale</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2218" />
-      <location filename="../UI/UserInterface.py" line="1107" />
+      <location filename="../UI/UserInterface.py" line="2223" />
+      <location filename="../UI/UserInterface.py" line="1112" />
       <source>Right Toolbox</source>
       <translation type="unfinished">Barra degli strumenti destra</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2037" />
-      <location filename="../UI/UserInterface.py" line="1301" />
-      <location filename="../UI/UserInterface.py" line="1117" />
+      <location filename="../UI/UserInterface.py" line="2042" />
+      <location filename="../UI/UserInterface.py" line="1306" />
+      <location filename="../UI/UserInterface.py" line="1122" />
       <source>Multiproject-Viewer</source>
       <translation>Multiproject-Viewer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2015" />
-      <location filename="../UI/UserInterface.py" line="1307" />
-      <location filename="../UI/UserInterface.py" line="1123" />
+      <location filename="../UI/UserInterface.py" line="2020" />
+      <location filename="../UI/UserInterface.py" line="1312" />
+      <location filename="../UI/UserInterface.py" line="1128" />
       <source>Project-Viewer</source>
       <translation>Project-Viewer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2577" />
-      <location filename="../UI/UserInterface.py" line="2576" />
-      <location filename="../UI/UserInterface.py" line="1314" />
-      <location filename="../UI/UserInterface.py" line="1130" />
+      <location filename="../UI/UserInterface.py" line="2582" />
+      <location filename="../UI/UserInterface.py" line="2581" />
+      <location filename="../UI/UserInterface.py" line="1319" />
+      <location filename="../UI/UserInterface.py" line="1135" />
       <source>Find/Replace In Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2600" />
-      <location filename="../UI/UserInterface.py" line="2599" />
-      <location filename="../UI/UserInterface.py" line="1321" />
-      <location filename="../UI/UserInterface.py" line="1137" />
+      <location filename="../UI/UserInterface.py" line="2605" />
+      <location filename="../UI/UserInterface.py" line="2604" />
+      <location filename="../UI/UserInterface.py" line="1326" />
+      <location filename="../UI/UserInterface.py" line="1142" />
       <source>Find File</source>
       <translation type="unfinished">Trova file</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1327" />
-      <location filename="../UI/UserInterface.py" line="1143" />
+      <location filename="../UI/UserInterface.py" line="1332" />
+      <location filename="../UI/UserInterface.py" line="1148" />
       <source>VCS Status</source>
       <translation type="unfinished">Stato VCS</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2170" />
-      <location filename="../UI/UserInterface.py" line="1334" />
-      <location filename="../UI/UserInterface.py" line="1150" />
+      <location filename="../UI/UserInterface.py" line="2175" />
+      <location filename="../UI/UserInterface.py" line="1339" />
+      <location filename="../UI/UserInterface.py" line="1155" />
       <source>Template-Viewer</source>
       <translation>Templates-Viewer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2103" />
-      <location filename="../UI/UserInterface.py" line="1341" />
-      <location filename="../UI/UserInterface.py" line="1157" />
+      <location filename="../UI/UserInterface.py" line="2108" />
+      <location filename="../UI/UserInterface.py" line="1346" />
+      <location filename="../UI/UserInterface.py" line="1162" />
       <source>File-Browser</source>
       <translation>File Browser</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1348" />
-      <location filename="../UI/UserInterface.py" line="1164" />
+      <location filename="../UI/UserInterface.py" line="1353" />
+      <location filename="../UI/UserInterface.py" line="1169" />
       <source>Symbols</source>
       <translation>Simboli</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2059" />
-      <location filename="../UI/UserInterface.py" line="1370" />
-      <location filename="../UI/UserInterface.py" line="1364" />
-      <location filename="../UI/UserInterface.py" line="1174" />
+      <location filename="../UI/UserInterface.py" line="2064" />
+      <location filename="../UI/UserInterface.py" line="1375" />
+      <location filename="../UI/UserInterface.py" line="1369" />
+      <location filename="../UI/UserInterface.py" line="1179" />
       <source>Debug-Viewer</source>
       <translation>Debug-Viewer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2431" />
-      <location filename="../UI/UserInterface.py" line="2430" />
-      <location filename="../UI/UserInterface.py" line="1377" />
-      <location filename="../UI/UserInterface.py" line="1181" />
+      <location filename="../UI/UserInterface.py" line="2436" />
+      <location filename="../UI/UserInterface.py" line="2435" />
+      <location filename="../UI/UserInterface.py" line="1382" />
+      <location filename="../UI/UserInterface.py" line="1186" />
       <source>Code Documentation Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2646" />
-      <location filename="../UI/UserInterface.py" line="2645" />
-      <location filename="../UI/UserInterface.py" line="1384" />
-      <location filename="../UI/UserInterface.py" line="1188" />
+      <location filename="../UI/UserInterface.py" line="2651" />
+      <location filename="../UI/UserInterface.py" line="2650" />
+      <location filename="../UI/UserInterface.py" line="1389" />
+      <location filename="../UI/UserInterface.py" line="1193" />
       <source>Help Viewer</source>
       <translation type="unfinished">Visualizzatore dell'Aiuto</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3550" />
-      <location filename="../UI/UserInterface.py" line="2526" />
-      <location filename="../UI/UserInterface.py" line="2525" />
-      <location filename="../UI/UserInterface.py" line="1390" />
-      <location filename="../UI/UserInterface.py" line="1194" />
+      <location filename="../UI/UserInterface.py" line="3575" />
+      <location filename="../UI/UserInterface.py" line="2531" />
+      <location filename="../UI/UserInterface.py" line="2530" />
+      <location filename="../UI/UserInterface.py" line="1395" />
+      <location filename="../UI/UserInterface.py" line="1199" />
       <source>Plugin Repository</source>
       <translation>Repository Plugin</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2550" />
-      <location filename="../UI/UserInterface.py" line="2549" />
-      <location filename="../UI/UserInterface.py" line="1396" />
-      <location filename="../UI/UserInterface.py" line="1200" />
-      <source>Virtual Environments</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2458" />
-      <location filename="../UI/UserInterface.py" line="2457" />
+      <location filename="../UI/UserInterface.py" line="2555" />
+      <location filename="../UI/UserInterface.py" line="2554" />
       <location filename="../UI/UserInterface.py" line="1401" />
       <location filename="../UI/UserInterface.py" line="1205" />
+      <source>Virtual Environments</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2463" />
+      <location filename="../UI/UserInterface.py" line="2462" />
+      <location filename="../UI/UserInterface.py" line="1406" />
+      <location filename="../UI/UserInterface.py" line="1210" />
       <source>PyPI</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2480" />
-      <location filename="../UI/UserInterface.py" line="2479" />
-      <location filename="../UI/UserInterface.py" line="1408" />
-      <location filename="../UI/UserInterface.py" line="1210" />
+      <location filename="../UI/UserInterface.py" line="2485" />
+      <location filename="../UI/UserInterface.py" line="2484" />
+      <location filename="../UI/UserInterface.py" line="1413" />
+      <location filename="../UI/UserInterface.py" line="1215" />
       <source>Conda</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1415" />
-      <location filename="../UI/UserInterface.py" line="1217" />
+      <location filename="../UI/UserInterface.py" line="1420" />
+      <location filename="../UI/UserInterface.py" line="1222" />
       <source>Cooperation</source>
       <translation>Cooperazione</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2358" />
-      <location filename="../UI/UserInterface.py" line="1419" />
-      <location filename="../UI/UserInterface.py" line="1222" />
+      <location filename="../UI/UserInterface.py" line="2363" />
+      <location filename="../UI/UserInterface.py" line="1424" />
+      <location filename="../UI/UserInterface.py" line="1227" />
       <source>IRC</source>
       <translation type="unfinished">IRC</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2502" />
-      <location filename="../UI/UserInterface.py" line="2501" />
-      <location filename="../UI/UserInterface.py" line="1425" />
-      <location filename="../UI/UserInterface.py" line="1229" />
+      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="2506" />
+      <location filename="../UI/UserInterface.py" line="1430" />
+      <location filename="../UI/UserInterface.py" line="1234" />
       <source>MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2081" />
-      <location filename="../UI/UserInterface.py" line="1433" />
-      <location filename="../UI/UserInterface.py" line="1237" />
+      <location filename="../UI/UserInterface.py" line="2086" />
+      <location filename="../UI/UserInterface.py" line="1438" />
+      <location filename="../UI/UserInterface.py" line="1242" />
       <source>Shell</source>
       <translation>Shell</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2147" />
-      <location filename="../UI/UserInterface.py" line="1439" />
-      <location filename="../UI/UserInterface.py" line="1241" />
+      <location filename="../UI/UserInterface.py" line="2152" />
+      <location filename="../UI/UserInterface.py" line="1444" />
+      <location filename="../UI/UserInterface.py" line="1246" />
       <source>Task-Viewer</source>
       <translation>Task-Viewer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2125" />
-      <location filename="../UI/UserInterface.py" line="1445" />
-      <location filename="../UI/UserInterface.py" line="1245" />
+      <location filename="../UI/UserInterface.py" line="2130" />
+      <location filename="../UI/UserInterface.py" line="1450" />
+      <location filename="../UI/UserInterface.py" line="1250" />
       <source>Log-Viewer</source>
       <translation>Log-Viewer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1452" />
-      <location filename="../UI/UserInterface.py" line="1252" />
+      <location filename="../UI/UserInterface.py" line="1457" />
+      <location filename="../UI/UserInterface.py" line="1257" />
       <source>Numbers</source>
       <translation>Numeri</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1827" />
+      <location filename="../UI/UserInterface.py" line="1832" />
       <source>{0} - Passive Mode</source>
       <translation>{0} - Passive Debug Mode</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1836" />
-      <location filename="../UI/UserInterface.py" line="1830" />
+      <location filename="../UI/UserInterface.py" line="1841" />
+      <location filename="../UI/UserInterface.py" line="1835" />
       <source>{0} - {1} - Passive Mode</source>
       <translation>{0} -{1} Passive Debug Mode</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1842" />
+      <location filename="../UI/UserInterface.py" line="1847" />
       <source>{0} - {1} - {2} - Passive Mode</source>
       <translation>{0} -{1} - {2} - Passive Debug Mode</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1868" />
+      <location filename="../UI/UserInterface.py" line="1873" />
       <source>Quit</source>
       <translation>Esci</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1870" />
+      <location filename="../UI/UserInterface.py" line="1875" />
       <source>&amp;Quit</source>
       <translation>&amp;Esci</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1871" />
+      <location filename="../UI/UserInterface.py" line="1876" />
       <source>Ctrl+Q</source>
       <comment>File|Quit</comment>
       <translation>Ctrl+Q</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1876" />
+      <location filename="../UI/UserInterface.py" line="1881" />
       <source>Quit the IDE</source>
       <translation>Esci dall'IDE</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1878" />
+      <location filename="../UI/UserInterface.py" line="1883" />
       <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Esci dall'IDE&lt;/b&gt;&lt;p&gt;Esci dall'IDE. Ogni cambiamento non salvato dovrebbe essere salvato prima. Ogni programma python in debug verrà fermato e le impostazioni scritte su disco.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1892" />
-      <location filename="../UI/UserInterface.py" line="1890" />
+      <location filename="../UI/UserInterface.py" line="1897" />
+      <location filename="../UI/UserInterface.py" line="1895" />
       <source>Restart</source>
       <translation type="unfinished">Riavvio</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1893" />
-      <source>Ctrl+Shift+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1898" />
+      <source>Ctrl+Shift+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1903" />
       <source>Restart the IDE</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1900" />
+      <location filename="../UI/UserInterface.py" line="1905" />
       <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1918" />
-      <location filename="../UI/UserInterface.py" line="1911" />
+      <location filename="../UI/UserInterface.py" line="1923" />
+      <location filename="../UI/UserInterface.py" line="1916" />
       <source>Save session</source>
       <translation>Salva sessione</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1912" />
+      <location filename="../UI/UserInterface.py" line="1917" />
       <source>Save session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1920" />
+      <location filename="../UI/UserInterface.py" line="1925" />
       <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7729" />
-      <location filename="../UI/UserInterface.py" line="1937" />
-      <location filename="../UI/UserInterface.py" line="1930" />
+      <location filename="../UI/UserInterface.py" line="7767" />
+      <location filename="../UI/UserInterface.py" line="1942" />
+      <location filename="../UI/UserInterface.py" line="1935" />
       <source>Load session</source>
       <translation type="unfinished">Carica sessione</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1931" />
+      <location filename="../UI/UserInterface.py" line="1936" />
       <source>Load session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1939" />
+      <location filename="../UI/UserInterface.py" line="1944" />
       <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1949" />
+      <location filename="../UI/UserInterface.py" line="1954" />
       <source>New Window</source>
       <translation type="unfinished">Nuova finestra</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1951" />
+      <location filename="../UI/UserInterface.py" line="1956" />
       <source>New &amp;Window</source>
       <translation type="unfinished">Nuova &amp;Finestra</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1952" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1957" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1962" />
       <source>Open a new eric instance</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1959" />
+      <location filename="../UI/UserInterface.py" line="1964" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1973" />
-      <location filename="../UI/UserInterface.py" line="1971" />
+      <location filename="../UI/UserInterface.py" line="1978" />
+      <location filename="../UI/UserInterface.py" line="1976" />
       <source>Edit Profile</source>
       <translation>Modifica profilo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1980" />
+      <location filename="../UI/UserInterface.py" line="1985" />
       <source>Activate the edit view profile</source>
       <translation>Attiva il profilo della vista di editing</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1982" />
+      <location filename="../UI/UserInterface.py" line="1987" />
       <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profilo di edit&lt;/p&gt;&lt;p&gt;Attiva il "Profilo di Edit". Le finestre da mostrare, se il profilo è attivo, possono essere configurate con il dialogo "Configura Profili.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1995" />
-      <location filename="../UI/UserInterface.py" line="1993" />
+      <location filename="../UI/UserInterface.py" line="2000" />
+      <location filename="../UI/UserInterface.py" line="1998" />
       <source>Debug Profile</source>
       <translation>Profilo Debug</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2002" />
+      <location filename="../UI/UserInterface.py" line="2007" />
       <source>Activate the debug view profile</source>
       <translation>Attiva profilo Debug</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2004" />
+      <location filename="../UI/UserInterface.py" line="2009" />
       <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profilo di debug&lt;/p&gt;&lt;p&gt;Attiva il "Profilo di Debug". Le finestre da mostrare, se il profilo è attivo, possono essere configurate con il dialogo "Configura Profili.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2016" />
+      <location filename="../UI/UserInterface.py" line="2021" />
       <source>&amp;Project-Viewer</source>
       <translation>&amp;Project-Viewer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2017" />
+      <location filename="../UI/UserInterface.py" line="2022" />
       <source>Alt+Shift+P</source>
       <translation>Alt+Shift+P</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2023" />
+      <location filename="../UI/UserInterface.py" line="2028" />
       <source>Switch the input focus to the Project-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2026" />
+      <location filename="../UI/UserInterface.py" line="2031" />
       <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2038" />
+      <location filename="../UI/UserInterface.py" line="2043" />
       <source>&amp;Multiproject-Viewer</source>
       <translation>&amp;Multiproject-Viewer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2039" />
+      <location filename="../UI/UserInterface.py" line="2044" />
       <source>Alt+Shift+M</source>
       <translation>Alt+Shift+M</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2045" />
+      <location filename="../UI/UserInterface.py" line="2050" />
       <source>Switch the input focus to the Multiproject-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2048" />
+      <location filename="../UI/UserInterface.py" line="2053" />
       <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2060" />
+      <location filename="../UI/UserInterface.py" line="2065" />
       <source>&amp;Debug-Viewer</source>
       <translation>&amp;Debug-Viewer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2061" />
+      <location filename="../UI/UserInterface.py" line="2066" />
       <source>Alt+Shift+D</source>
       <translation>Alt+Shift+D</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2067" />
+      <location filename="../UI/UserInterface.py" line="2072" />
       <source>Switch the input focus to the Debug-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2070" />
+      <location filename="../UI/UserInterface.py" line="2075" />
       <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2082" />
+      <location filename="../UI/UserInterface.py" line="2087" />
       <source>&amp;Shell</source>
       <translation>&amp;Shell</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2083" />
+      <location filename="../UI/UserInterface.py" line="2088" />
       <source>Alt+Shift+S</source>
       <translation>Alt+Shift+S</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2089" />
+      <location filename="../UI/UserInterface.py" line="2094" />
       <source>Switch the input focus to the Shell window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2092" />
+      <location filename="../UI/UserInterface.py" line="2097" />
       <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2104" />
+      <location filename="../UI/UserInterface.py" line="2109" />
       <source>&amp;File-Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2105" />
+      <location filename="../UI/UserInterface.py" line="2110" />
       <source>Alt+Shift+F</source>
       <translation>Alt+Shift+M</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2111" />
+      <location filename="../UI/UserInterface.py" line="2116" />
       <source>Switch the input focus to the File-Browser window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2114" />
+      <location filename="../UI/UserInterface.py" line="2119" />
       <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2126" />
+      <location filename="../UI/UserInterface.py" line="2131" />
       <source>Lo&amp;g-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2127" />
+      <location filename="../UI/UserInterface.py" line="2132" />
       <source>Alt+Shift+G</source>
       <translation>Alt+Shift+G</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2133" />
+      <location filename="../UI/UserInterface.py" line="2138" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2136" />
+      <location filename="../UI/UserInterface.py" line="2141" />
       <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2148" />
+      <location filename="../UI/UserInterface.py" line="2153" />
       <source>&amp;Task-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2149" />
+      <location filename="../UI/UserInterface.py" line="2154" />
       <source>Alt+Shift+T</source>
       <translation>Alt+Shift+T</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2155" />
+      <location filename="../UI/UserInterface.py" line="2160" />
       <source>Switch the input focus to the Task-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2158" />
+      <location filename="../UI/UserInterface.py" line="2163" />
       <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2171" />
+      <location filename="../UI/UserInterface.py" line="2176" />
       <source>Templ&amp;ate-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2172" />
+      <location filename="../UI/UserInterface.py" line="2177" />
       <source>Alt+Shift+A</source>
       <translation>Alt+Shift+A</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2178" />
+      <location filename="../UI/UserInterface.py" line="2183" />
       <source>Switch the input focus to the Template-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2181" />
+      <location filename="../UI/UserInterface.py" line="2186" />
       <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2196" />
+      <location filename="../UI/UserInterface.py" line="2201" />
       <source>&amp;Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2203" />
+      <location filename="../UI/UserInterface.py" line="2208" />
       <source>Toggle the Left Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2205" />
+      <location filename="../UI/UserInterface.py" line="2210" />
       <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2219" />
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&amp;Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2226" />
+      <location filename="../UI/UserInterface.py" line="2231" />
       <source>Toggle the Right Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2228" />
+      <location filename="../UI/UserInterface.py" line="2233" />
       <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2242" />
+      <location filename="../UI/UserInterface.py" line="2247" />
       <source>&amp;Horizontal Toolbox</source>
       <translation>Toolbox &amp;Orizzontale</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2249" />
+      <location filename="../UI/UserInterface.py" line="2254" />
       <source>Toggle the Horizontal Toolbox window</source>
       <translation>Abilita/Disabilita una finestra la toolbox orizzontale</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2251" />
+      <location filename="../UI/UserInterface.py" line="2256" />
       <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="2264" />
+      <location filename="../UI/UserInterface.py" line="2269" />
       <source>Left Sidebar</source>
       <translation>Barra laterale sinistra</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2265" />
+      <location filename="../UI/UserInterface.py" line="2270" />
       <source>&amp;Left Sidebar</source>
       <translation>Barra &amp;laterale sinistra</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2272" />
+      <location filename="../UI/UserInterface.py" line="2277" />
       <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="2274" />
+      <location filename="../UI/UserInterface.py" line="2279" />
       <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="2287" />
+      <location filename="../UI/UserInterface.py" line="2292" />
       <source>Right Sidebar</source>
       <translation type="unfinished">Barra laterale destra</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2288" />
+      <location filename="../UI/UserInterface.py" line="2293" />
       <source>&amp;Right Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2295" />
+      <location filename="../UI/UserInterface.py" line="2300" />
       <source>Toggle the right sidebar window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2297" />
+      <location filename="../UI/UserInterface.py" line="2302" />
       <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2310" />
+      <location filename="../UI/UserInterface.py" line="2315" />
       <source>Bottom Sidebar</source>
       <translation>Barra in basso</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2311" />
+      <location filename="../UI/UserInterface.py" line="2316" />
       <source>&amp;Bottom Sidebar</source>
       <translation>Barra in &amp;basso</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2318" />
+      <location filename="../UI/UserInterface.py" line="2323" />
       <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="2320" />
+      <location filename="../UI/UserInterface.py" line="2325" />
       <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="2333" />
+      <location filename="../UI/UserInterface.py" line="2338" />
       <source>Cooperation-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2334" />
+      <location filename="../UI/UserInterface.py" line="2339" />
       <source>Co&amp;operation-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2335" />
+      <location filename="../UI/UserInterface.py" line="2340" />
       <source>Alt+Shift+O</source>
       <translation>Alt+Shift+O</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2341" />
+      <location filename="../UI/UserInterface.py" line="2346" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2344" />
+      <location filename="../UI/UserInterface.py" line="2349" />
       <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2359" />
+      <location filename="../UI/UserInterface.py" line="2364" />
       <source>&amp;IRC</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2360" />
+      <location filename="../UI/UserInterface.py" line="2365" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2366" />
+      <location filename="../UI/UserInterface.py" line="2371" />
       <source>Switch the input focus to the IRC window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2369" />
+      <location filename="../UI/UserInterface.py" line="2374" />
       <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2380" />
+      <location filename="../UI/UserInterface.py" line="2385" />
       <source>Symbols-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2381" />
+      <location filename="../UI/UserInterface.py" line="2386" />
       <source>S&amp;ymbols-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2382" />
+      <location filename="../UI/UserInterface.py" line="2387" />
       <source>Alt+Shift+Y</source>
       <translation>Alt+Shift+Y</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2388" />
+      <location filename="../UI/UserInterface.py" line="2393" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2391" />
+      <location filename="../UI/UserInterface.py" line="2396" />
       <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2405" />
+      <location filename="../UI/UserInterface.py" line="2410" />
       <source>Numbers-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2406" />
+      <location filename="../UI/UserInterface.py" line="2411" />
       <source>Num&amp;bers-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2407" />
+      <location filename="../UI/UserInterface.py" line="2412" />
       <source>Alt+Shift+B</source>
       <translation>Alt+Shift+B</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2413" />
+      <location filename="../UI/UserInterface.py" line="2418" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2416" />
+      <location filename="../UI/UserInterface.py" line="2421" />
       <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2432" />
+      <location filename="../UI/UserInterface.py" line="2437" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2438" />
-      <source>Switch the input focus to the Code Documentation Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2443" />
+      <source>Switch the input focus to the Code Documentation Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2448" />
       <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2459" />
+      <location filename="../UI/UserInterface.py" line="2464" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2465" />
+      <location filename="../UI/UserInterface.py" line="2470" />
       <source>Switch the input focus to the PyPI window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2468" />
+      <location filename="../UI/UserInterface.py" line="2473" />
       <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2481" />
+      <location filename="../UI/UserInterface.py" line="2486" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2487" />
+      <location filename="../UI/UserInterface.py" line="2492" />
       <source>Switch the input focus to the Conda window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2490" />
+      <location filename="../UI/UserInterface.py" line="2495" />
       <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2503" />
+      <location filename="../UI/UserInterface.py" line="2508" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2509" />
+      <location filename="../UI/UserInterface.py" line="2514" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2512" />
+      <location filename="../UI/UserInterface.py" line="2517" />
       <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2527" />
+      <location filename="../UI/UserInterface.py" line="2532" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2533" />
+      <location filename="../UI/UserInterface.py" line="2538" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2536" />
+      <location filename="../UI/UserInterface.py" line="2541" />
       <source>&lt;b&gt;Plugin Repository&lt;/b&gt;&lt;p&gt;This switches the input focus to the Plugin Repository window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2551" />
+      <location filename="../UI/UserInterface.py" line="2556" />
       <source>Ctrl+Alt+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2557" />
-      <source>Switch the input focus to the Virtual Environments Manager window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2562" />
+      <source>Switch the input focus to the Virtual Environments Manager window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2567" />
       <source>&lt;b&gt;Virtual Environments&lt;/b&gt;&lt;p&gt;This switches the input focus to the Virtual Environments Manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2578" />
+      <location filename="../UI/UserInterface.py" line="2583" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2584" />
+      <location filename="../UI/UserInterface.py" line="2589" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2587" />
+      <location filename="../UI/UserInterface.py" line="2592" />
       <source>&lt;b&gt;Find/Replace In Files&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find/Replace In Files window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2601" />
+      <location filename="../UI/UserInterface.py" line="2606" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2607" />
+      <location filename="../UI/UserInterface.py" line="2612" />
       <source>Switch the input focus to the Find File window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2610" />
+      <location filename="../UI/UserInterface.py" line="2615" />
       <source>&lt;b&gt;Find File&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find File window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2624" />
-      <location filename="../UI/UserInterface.py" line="2623" />
+      <location filename="../UI/UserInterface.py" line="2629" />
+      <location filename="../UI/UserInterface.py" line="2628" />
       <source>VCS Status List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2625" />
+      <location filename="../UI/UserInterface.py" line="2630" />
       <source>Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2631" />
+      <location filename="../UI/UserInterface.py" line="2636" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2634" />
+      <location filename="../UI/UserInterface.py" line="2639" />
       <source>&lt;b&gt;VCS Status List&lt;/b&gt;&lt;p&gt;This switches the input focus to the VCS Status List window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2647" />
+      <location filename="../UI/UserInterface.py" line="2652" />
       <source>Alt+Shift+H</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2653" />
+      <location filename="../UI/UserInterface.py" line="2658" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2656" />
+      <location filename="../UI/UserInterface.py" line="2661" />
       <source>&lt;b&gt;Help Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2669" />
+      <location filename="../UI/UserInterface.py" line="2674" />
       <source>What's This?</source>
       <translation>Cos'è questo ?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2671" />
+      <location filename="../UI/UserInterface.py" line="2676" />
       <source>&amp;What's This?</source>
       <translation>C&amp;os'è Questo ?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2672" />
-      <source>Shift+F1</source>
-      <translation>Shift+F1</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2677" />
+      <source>Shift+F1</source>
+      <translation>Shift+F1</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2682" />
       <source>Context sensitive help</source>
       <translation>Help sensibile al contesto</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2679" />
+      <location filename="../UI/UserInterface.py" line="2684" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Mostra helo sensibile al contesto&lt;/b&gt;&lt;p&gt;Nella modalità Cos'è Questo, il cursore del mouse mostra una freccia con un punto interrogativo e puoi premere sugli elementi dell'interfaccia per avere una breve descrizione di cosa fanno e come usarli. Nel dialoghi questa funzionalità è accessibile usando il bottone di help contestuale nella fisestra del titolo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2692" />
+      <location filename="../UI/UserInterface.py" line="2697" />
       <source>Helpviewer</source>
       <translation>Visualizzatore Help</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2694" />
+      <location filename="../UI/UserInterface.py" line="2699" />
       <source>&amp;Helpviewer...</source>
       <translation>Visualizzatore &amp;Help...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2695" />
-      <source>F1</source>
-      <translation>F1</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2700" />
+      <source>F1</source>
+      <translation>F1</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2705" />
       <source>Open the helpviewer window</source>
       <translation>Apri il visualizzatore di help</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2702" />
+      <location filename="../UI/UserInterface.py" line="2707" />
       <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2722" />
+      <location filename="../UI/UserInterface.py" line="2727" />
       <source>Show Versions</source>
       <translation>Mostra versione</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2723" />
+      <location filename="../UI/UserInterface.py" line="2728" />
       <source>Show &amp;Versions</source>
       <translation>Mostra &amp;Versione</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2729" />
+      <location filename="../UI/UserInterface.py" line="2734" />
       <source>Display version information</source>
       <translation>Mostra informazioni sulla versione</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2731" />
+      <location filename="../UI/UserInterface.py" line="2736" />
       <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="2744" />
-      <location filename="../UI/UserInterface.py" line="2737" />
+      <location filename="../UI/UserInterface.py" line="2742" />
+      <source>Copy Versions</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2743" />
+      <source>&amp;Copy Versions</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2750" />
+      <source>Copy version information to the clipboard</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2753" />
+      <source>&lt;b&gt;Copy Versions&lt;/b&gt;&lt;p&gt;This generates version information and copies it to the clipboard.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2769" />
+      <location filename="../UI/UserInterface.py" line="2762" />
       <source>Show Error Log</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2738" />
+      <location filename="../UI/UserInterface.py" line="2763" />
       <source>Show Error &amp;Log...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2746" />
+      <location filename="../UI/UserInterface.py" line="2771" />
       <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2755" />
+      <location filename="../UI/UserInterface.py" line="2780" />
       <source>Show Install Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2756" />
+      <location filename="../UI/UserInterface.py" line="2781" />
       <source>Show Install &amp;Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2762" />
+      <location filename="../UI/UserInterface.py" line="2787" />
       <source>Show Installation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2764" />
+      <location filename="../UI/UserInterface.py" line="2789" />
       <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4634" />
-      <location filename="../UI/UserInterface.py" line="2774" />
+      <location filename="../UI/UserInterface.py" line="4672" />
+      <location filename="../UI/UserInterface.py" line="2799" />
       <source>Report Bug</source>
       <translation>Segnala Bug</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2774" />
+      <location filename="../UI/UserInterface.py" line="2799" />
       <source>Report &amp;Bug...</source>
       <translation>Segnala &amp;Bug...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2776" />
+      <location filename="../UI/UserInterface.py" line="2801" />
       <source>Report a bug</source>
       <translation>Segnala un bug</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2778" />
+      <location filename="../UI/UserInterface.py" line="2803" />
       <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="2784" />
+      <location filename="../UI/UserInterface.py" line="2809" />
       <source>Request Feature</source>
       <translation>Richiedi funzionalità</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2785" />
+      <location filename="../UI/UserInterface.py" line="2810" />
       <source>Request &amp;Feature...</source>
       <translation>Richiedi &amp;funzionalità...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2791" />
+      <location filename="../UI/UserInterface.py" line="2816" />
       <source>Send a feature request</source>
       <translation>Invia una richiesta di funzionalità</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2818" />
       <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="4094" />
-      <location filename="../UI/UserInterface.py" line="2804" />
+      <location filename="../UI/UserInterface.py" line="4120" />
+      <location filename="../UI/UserInterface.py" line="2829" />
       <source>Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2806" />
+      <location filename="../UI/UserInterface.py" line="2831" />
       <source>&amp;Testing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2812" />
+      <location filename="../UI/UserInterface.py" line="2837" />
       <source>Start the testing dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2814" />
+      <location filename="../UI/UserInterface.py" line="2839" />
       <source>&lt;b&gt;Testing&lt;/b&gt;&lt;p&gt;Perform test runs. The dialog gives the ability to select and run a test suite or auto discover them.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2825" />
+      <location filename="../UI/UserInterface.py" line="2850" />
       <source>Restart Last Test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2827" />
+      <location filename="../UI/UserInterface.py" line="2852" />
       <source>&amp;Restart Last Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2833" />
+      <location filename="../UI/UserInterface.py" line="2858" />
       <source>Restarts the last test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2835" />
+      <location filename="../UI/UserInterface.py" line="2860" />
       <source>&lt;b&gt;Restart Last Test&lt;/b&gt;&lt;p&gt;Restarts the test performed last.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2845" />
+      <location filename="../UI/UserInterface.py" line="2870" />
       <source>Rerun Failed Tests</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2847" />
+      <location filename="../UI/UserInterface.py" line="2872" />
       <source>Rerun Failed Tests...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2854" />
+      <location filename="../UI/UserInterface.py" line="2879" />
       <source>Rerun failed tests of the last run</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2857" />
+      <location filename="../UI/UserInterface.py" line="2882" />
       <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last test run.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2867" />
-      <source>Test Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2869" />
-      <source>Test &amp;Script...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2875" />
-      <source>Run tests of the current script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2877" />
-      <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2884" />
-      <source>Test Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2886" />
-      <source>Test &amp;Project...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2892" />
-      <source>Run tests of the current project</source>
+      <source>Test Script</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2894" />
-      <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2903" />
-      <source>Qt-Designer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2905" />
-      <source>Qt-&amp;Designer...</source>
+      <source>Test &amp;Script...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2900" />
+      <source>Run tests of the current script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2902" />
+      <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2909" />
+      <source>Test Project</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2911" />
-      <source>Start Qt-Designer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2913" />
-      <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2922" />
-      <source>Qt-Linguist</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2924" />
-      <source>Qt-&amp;Linguist...</source>
+      <source>Test &amp;Project...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2917" />
+      <source>Run tests of the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2919" />
+      <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2928" />
+      <source>Qt-Designer</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2930" />
+      <source>Qt-&amp;Designer...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2936" />
+      <source>Start Qt-Designer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2938" />
+      <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2947" />
+      <source>Qt-Linguist</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2949" />
+      <source>Qt-&amp;Linguist...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2955" />
       <source>Start Qt-Linguist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2932" />
+      <location filename="../UI/UserInterface.py" line="2957" />
       <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2940" />
+      <location filename="../UI/UserInterface.py" line="2965" />
       <source>UI Previewer</source>
       <translation>Anteprima UI</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2942" />
+      <location filename="../UI/UserInterface.py" line="2967" />
       <source>&amp;UI Previewer...</source>
       <translation>Antreprima &amp;UI...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2948" />
+      <location filename="../UI/UserInterface.py" line="2973" />
       <source>Start the UI Previewer</source>
       <translation>Avvia UI Previewer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2950" />
-      <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="2956" />
-      <source>Translations Previewer</source>
-      <translation>Anteprima traduzioni</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2958" />
-      <source>&amp;Translations Previewer...</source>
-      <translation>Anteprima &amp;Traduzioni...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2964" />
-      <source>Start the Translations Previewer</source>
-      <translation>Avvia l'anteprima delle traduzioni</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2966" />
-      <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Anteprima traduzioni&lt;/b&gt;&lt;p&gt;Avvia l'anteprima delle traduzioni.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2975" />
+      <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="2981" />
+      <source>Translations Previewer</source>
+      <translation>Anteprima traduzioni</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2983" />
+      <source>&amp;Translations Previewer...</source>
+      <translation>Anteprima &amp;Traduzioni...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2989" />
+      <source>Start the Translations Previewer</source>
+      <translation>Avvia l'anteprima delle traduzioni</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2991" />
+      <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Anteprima traduzioni&lt;/b&gt;&lt;p&gt;Avvia l'anteprima delle traduzioni.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3000" />
       <source>Compare Files</source>
       <translation>Confronta file</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
-      <source>&amp;Compare Files...</source>
-      <translation>&amp;Confronta file...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3002" />
-      <location filename="../UI/UserInterface.py" line="2983" />
+      <source>&amp;Compare Files...</source>
+      <translation>&amp;Confronta file...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3027" />
+      <location filename="../UI/UserInterface.py" line="3008" />
       <source>Compare two files</source>
       <translation>Confronta due file</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2985" />
+      <location filename="../UI/UserInterface.py" line="3010" />
       <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="2994" />
+      <location filename="../UI/UserInterface.py" line="3019" />
       <source>Compare Files side by side</source>
       <translation>Confronta file affiancati</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2996" />
+      <location filename="../UI/UserInterface.py" line="3021" />
       <source>Compare &amp;Files side by side...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3004" />
+      <location filename="../UI/UserInterface.py" line="3029" />
       <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="3014" />
+      <location filename="../UI/UserInterface.py" line="3039" />
       <source>SQL Browser</source>
       <translation>SQL Browser</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3016" />
+      <location filename="../UI/UserInterface.py" line="3041" />
       <source>SQL &amp;Browser...</source>
       <translation>SQL &amp;Browser...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3022" />
+      <location filename="../UI/UserInterface.py" line="3047" />
       <source>Browse a SQL database</source>
       <translation>Naviga un database SQL</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3024" />
-      <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="3038" />
-      <location filename="../UI/UserInterface.py" line="3030" />
-      <source>Mini Editor</source>
-      <translation>Mini Editor</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3032" />
-      <source>Mini &amp;Editor...</source>
-      <translation>Mini &amp;Editor...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3040" />
-      <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="3049" />
-      <source>Hex Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3051" />
-      <source>&amp;Hex Editor...</source>
-      <translation type="unfinished" />
+      <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="3063" />
+      <location filename="../UI/UserInterface.py" line="3055" />
+      <source>Mini Editor</source>
+      <translation>Mini Editor</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3057" />
+      <source>Mini &amp;Editor...</source>
+      <translation>Mini &amp;Editor...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3065" />
+      <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="3074" />
+      <source>Hex Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3076" />
+      <source>&amp;Hex Editor...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3082" />
       <source>Start the eric Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3059" />
+      <location filename="../UI/UserInterface.py" line="3084" />
       <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3069" />
+      <location filename="../UI/UserInterface.py" line="3094" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3071" />
-      <source>eric &amp;Web Browser...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3077" />
-      <source>Start the eric Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3079" />
-      <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3088" />
-      <source>Icon Editor</source>
-      <translation>Editor di icone</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3090" />
-      <source>&amp;Icon Editor...</source>
-      <translation>Editor di &amp;icone...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3096" />
+      <source>eric &amp;Web Browser...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3102" />
+      <source>Start the eric Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3104" />
+      <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3113" />
+      <source>Icon Editor</source>
+      <translation>Editor di icone</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3115" />
+      <source>&amp;Icon Editor...</source>
+      <translation>Editor di &amp;icone...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3121" />
       <source>Start the eric Icon Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3098" />
+      <location filename="../UI/UserInterface.py" line="3123" />
       <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6494" />
-      <location filename="../UI/UserInterface.py" line="3110" />
+      <location filename="../UI/UserInterface.py" line="6532" />
+      <location filename="../UI/UserInterface.py" line="3135" />
       <source>Snapshot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3112" />
+      <location filename="../UI/UserInterface.py" line="3137" />
       <source>&amp;Snapshot...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3118" />
+      <location filename="../UI/UserInterface.py" line="3143" />
       <source>Take snapshots of a screen region</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3120" />
+      <location filename="../UI/UserInterface.py" line="3145" />
       <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3130" />
+      <location filename="../UI/UserInterface.py" line="3155" />
       <source>eric PDF Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3132" />
-      <source>eric PDF &amp;Viewer...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3138" />
-      <source>Start the eric PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3140" />
-      <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3149" />
-      <source>Preferences</source>
-      <translation>Preferenze</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3151" />
-      <source>&amp;Preferences...</source>
-      <translation>&amp;Preferenze...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3157" />
+      <source>eric PDF &amp;Viewer...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3163" />
+      <source>Start the eric PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3165" />
+      <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3174" />
+      <source>Preferences</source>
+      <translation>Preferenze</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3176" />
+      <source>&amp;Preferences...</source>
+      <translation>&amp;Preferenze...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3182" />
       <source>Set the prefered configuration</source>
       <translation>Imposta la configurazione preferita</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3159" />
+      <location filename="../UI/UserInterface.py" line="3184" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Preferenze&lt;/b&gt;&lt;p&gt;Imposta i valori di configurazione dell'applicazione ai valori preferiti&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3170" />
+      <location filename="../UI/UserInterface.py" line="3195" />
       <source>Export Preferences</source>
       <translation>Esporta preferenze</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3172" />
+      <location filename="../UI/UserInterface.py" line="3197" />
       <source>E&amp;xport Preferences...</source>
       <translation>E&amp;sporta preferenze...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3178" />
+      <location filename="../UI/UserInterface.py" line="3203" />
       <source>Export the current configuration</source>
       <translation>Esporta la configurazione attuale</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3180" />
+      <location filename="../UI/UserInterface.py" line="3205" />
       <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="3189" />
+      <location filename="../UI/UserInterface.py" line="3214" />
       <source>Import Preferences</source>
       <translation>Importa preferenze</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3191" />
+      <location filename="../UI/UserInterface.py" line="3216" />
       <source>I&amp;mport Preferences...</source>
       <translation>I&amp;mporta preferenze...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3198" />
+      <location filename="../UI/UserInterface.py" line="3223" />
       <source>Import a previously exported configuration</source>
       <translation>Importa una configurazione precedentemente esportata</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3201" />
+      <location filename="../UI/UserInterface.py" line="3226" />
       <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="3210" />
+      <location filename="../UI/UserInterface.py" line="3235" />
       <source>Export Theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3212" />
-      <source>Export Theme...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3218" />
-      <source>Export the current theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3220" />
-      <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3229" />
-      <source>Import Theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3231" />
-      <source>Import Theme...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3237" />
+      <source>Export Theme...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3243" />
+      <source>Export the current theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3245" />
+      <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3254" />
+      <source>Import Theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3256" />
+      <source>Import Theme...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3262" />
       <source>Import a previously exported theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
+      <location filename="../UI/UserInterface.py" line="3264" />
       <source>&lt;b&gt;Import Theme&lt;/b&gt;&lt;p&gt;Import a previously exported theme.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3248" />
+      <location filename="../UI/UserInterface.py" line="3273" />
       <source>Reload APIs</source>
       <translation>Ricarica APIs</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3248" />
+      <location filename="../UI/UserInterface.py" line="3273" />
       <source>Reload &amp;APIs</source>
       <translation>Ricarica &amp;APIs</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3250" />
+      <location filename="../UI/UserInterface.py" line="3275" />
       <source>Reload the API information</source>
       <translation>Ricarica le informazioni delle API</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3252" />
+      <location filename="../UI/UserInterface.py" line="3277" />
       <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="3266" />
-      <location filename="../UI/UserInterface.py" line="3258" />
+      <location filename="../UI/UserInterface.py" line="3291" />
+      <location filename="../UI/UserInterface.py" line="3283" />
       <source>Show external tools</source>
       <translation>Mostra tool esterni</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3260" />
+      <location filename="../UI/UserInterface.py" line="3285" />
       <source>Show external &amp;tools</source>
       <translation>Mostra toll &amp;esterni</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3268" />
+      <location filename="../UI/UserInterface.py" line="3293" />
       <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3278" />
+      <location filename="../UI/UserInterface.py" line="3303" />
       <source>View Profiles</source>
       <translation>Vista Profili</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3280" />
+      <location filename="../UI/UserInterface.py" line="3305" />
       <source>&amp;View Profiles...</source>
       <translation>&amp;Vista profili...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3286" />
+      <location filename="../UI/UserInterface.py" line="3311" />
       <source>Configure view profiles</source>
       <translation>Configura i profili</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3288" />
+      <location filename="../UI/UserInterface.py" line="3313" />
       <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="3299" />
+      <location filename="../UI/UserInterface.py" line="3324" />
       <source>Toolbars</source>
       <translation>Toolbars</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3301" />
+      <location filename="../UI/UserInterface.py" line="3326" />
       <source>Tool&amp;bars...</source>
       <translation>Tool&amp;bars...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3307" />
+      <location filename="../UI/UserInterface.py" line="3332" />
       <source>Configure toolbars</source>
       <translation>Configura toolbars</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
+      <location filename="../UI/UserInterface.py" line="3334" />
       <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="3320" />
+      <location filename="../UI/UserInterface.py" line="3345" />
       <source>Keyboard Shortcuts</source>
       <translation>Scorciatoie da tastiera</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3322" />
+      <location filename="../UI/UserInterface.py" line="3347" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation>&amp;Scorciatoie da tastiera...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3328" />
+      <location filename="../UI/UserInterface.py" line="3353" />
       <source>Set the keyboard shortcuts</source>
       <translation>Imposta le scorciatoie da tastiera</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3330" />
+      <location filename="../UI/UserInterface.py" line="3355" />
       <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Scorciatoie da tastiera&lt;/b&gt;&lt;p&gt;Imposta le scorciatoie da tastiera dell'applicazione con i valori personalizzati.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7453" />
-      <location filename="../UI/UserInterface.py" line="7434" />
-      <location filename="../UI/UserInterface.py" line="3340" />
+      <location filename="../UI/UserInterface.py" line="7491" />
+      <location filename="../UI/UserInterface.py" line="7472" />
+      <location filename="../UI/UserInterface.py" line="3365" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Esporta scorciatoie da tastiera</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3342" />
-      <source>&amp;Export Keyboard Shortcuts...</source>
-      <translation>&amp;Esporta scorciatoie da tastiera...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3348" />
-      <source>Export the keyboard shortcuts</source>
-      <translation>Esporta le scorciatoie da tastiera</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3350" />
-      <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Esporta scorciatoie da tastiera&lt;/b&gt;&lt;p&gt;Esporta le scorciatoie da tastiera dell'applicazione.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7472" />
-      <location filename="../UI/UserInterface.py" line="3359" />
-      <source>Import Keyboard Shortcuts</source>
-      <translation>Importa scorciatoie da tastiera</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3361" />
-      <source>&amp;Import Keyboard Shortcuts...</source>
-      <translation>&amp;Importa scorciatoie da tastiera...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3367" />
+      <source>&amp;Export Keyboard Shortcuts...</source>
+      <translation>&amp;Esporta scorciatoie da tastiera...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3373" />
+      <source>Export the keyboard shortcuts</source>
+      <translation>Esporta le scorciatoie da tastiera</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3375" />
+      <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Esporta scorciatoie da tastiera&lt;/b&gt;&lt;p&gt;Esporta le scorciatoie da tastiera dell'applicazione.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="7510" />
+      <location filename="../UI/UserInterface.py" line="3384" />
+      <source>Import Keyboard Shortcuts</source>
+      <translation>Importa scorciatoie da tastiera</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3386" />
+      <source>&amp;Import Keyboard Shortcuts...</source>
+      <translation>&amp;Importa scorciatoie da tastiera...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3392" />
       <source>Import the keyboard shortcuts</source>
       <translation>Importa le scorciatoie da tastiera</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3369" />
+      <location filename="../UI/UserInterface.py" line="3394" />
       <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Importa scorciatoie da tastiera&lt;/b&gt;&lt;p&gt;Importa le scorciatoie da tastiera dell'applicazione.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3379" />
+      <location filename="../UI/UserInterface.py" line="3404" />
       <source>Manage SSL Certificates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3381" />
+      <location filename="../UI/UserInterface.py" line="3406" />
       <source>Manage SSL Certificates...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3388" />
-      <source>Manage the saved SSL certificates</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3391" />
-      <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3401" />
-      <source>Edit Message Filters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3403" />
-      <source>Edit Message Filters...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3410" />
-      <source>Edit the message filters used to suppress unwanted messages</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3413" />
-      <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3432" />
+      <source>Manage the saved SSL certificates</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3416" />
+      <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3426" />
-      <location filename="../UI/UserInterface.py" line="3424" />
-      <source>Clear private data</source>
-      <translation type="unfinished">Pulisci dati privati</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3434" />
-      <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3445" />
-      <location filename="../UI/UserInterface.py" line="3444" />
-      <source>Activate current editor</source>
-      <translation>Attiva editor corrente</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3446" />
-      <source>Alt+Shift+E</source>
-      <translation>Alt+Shift+E</translation>
+      <source>Edit Message Filters</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3428" />
+      <source>Edit Message Filters...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3435" />
+      <source>Edit the message filters used to suppress unwanted messages</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3438" />
+      <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3457" />
-      <location filename="../UI/UserInterface.py" line="3456" />
-      <source>Show next</source>
-      <translation>Mostra successivo</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3458" />
-      <source>Ctrl+Alt+Tab</source>
-      <translation>Ctrl+Alt+Tab</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3469" />
-      <location filename="../UI/UserInterface.py" line="3468" />
-      <source>Show previous</source>
-      <translation>Mostra precedente</translation>
+      <location filename="../UI/UserInterface.py" line="3451" />
+      <location filename="../UI/UserInterface.py" line="3449" />
+      <source>Clear private data</source>
+      <translation type="unfinished">Pulisci dati privati</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3459" />
+      <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3470" />
-      <source>Shift+Ctrl+Alt+Tab</source>
-      <translation>Shift+Ctrl+Alt+Tab</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3481" />
-      <location filename="../UI/UserInterface.py" line="3480" />
-      <source>Switch between tabs</source>
-      <translation>Cicla tra le linguette</translation>
+      <location filename="../UI/UserInterface.py" line="3469" />
+      <source>Activate current editor</source>
+      <translation>Attiva editor corrente</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3471" />
+      <source>Alt+Shift+E</source>
+      <translation>Alt+Shift+E</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3482" />
-      <source>Ctrl+1</source>
-      <translation>Ctrl+1</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3492" />
-      <source>Plugin Infos</source>
-      <translation>Informazioni su Plugin</translation>
+      <location filename="../UI/UserInterface.py" line="3481" />
+      <source>Show next</source>
+      <translation>Mostra successivo</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3483" />
+      <source>Ctrl+Alt+Tab</source>
+      <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3494" />
+      <location filename="../UI/UserInterface.py" line="3493" />
+      <source>Show previous</source>
+      <translation>Mostra precedente</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3495" />
+      <source>Shift+Ctrl+Alt+Tab</source>
+      <translation>Shift+Ctrl+Alt+Tab</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3506" />
+      <location filename="../UI/UserInterface.py" line="3505" />
+      <source>Switch between tabs</source>
+      <translation>Cicla tra le linguette</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3507" />
+      <source>Ctrl+1</source>
+      <translation>Ctrl+1</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3517" />
+      <source>Plugin Infos</source>
+      <translation>Informazioni su Plugin</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3519" />
       <source>&amp;Plugin Infos...</source>
       <translation>Informazioni su &amp;Plugin...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3500" />
+      <location filename="../UI/UserInterface.py" line="3525" />
       <source>Show Plugin Infos</source>
       <translation>Mostra informazioni sui Plugin</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3502" />
+      <location filename="../UI/UserInterface.py" line="3527" />
       <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="3520" />
-      <location filename="../UI/UserInterface.py" line="3512" />
+      <location filename="../UI/UserInterface.py" line="3545" />
+      <location filename="../UI/UserInterface.py" line="3537" />
       <source>Install Plugins</source>
       <translation>Installa Plugin</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3514" />
-      <source>&amp;Install Plugins...</source>
-      <translation>&amp;Installa Plugin...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3522" />
-      <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="3539" />
-      <location filename="../UI/UserInterface.py" line="3531" />
+      <source>&amp;Install Plugins...</source>
+      <translation>&amp;Installa Plugin...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3547" />
+      <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="3564" />
+      <location filename="../UI/UserInterface.py" line="3556" />
       <source>Uninstall Plugin</source>
       <translation>Disinstalla Plugin</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3533" />
-      <source>&amp;Uninstall Plugin...</source>
-      <translation>Disinstalla Pl&amp;ugin...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3541" />
-      <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="3552" />
-      <source>Plugin &amp;Repository...</source>
-      <translation>&amp;Repository Plugin...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3558" />
+      <source>&amp;Uninstall Plugin...</source>
+      <translation>Disinstalla Pl&amp;ugin...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3566" />
+      <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="3577" />
+      <source>Plugin &amp;Repository...</source>
+      <translation>&amp;Repository Plugin...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3583" />
       <source>Show Plugins available for download</source>
       <translation>Mostra Plugin disponibili per il download</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3560" />
+      <location filename="../UI/UserInterface.py" line="3585" />
       <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="3587" />
-      <location filename="../UI/UserInterface.py" line="3586" />
+      <location filename="../UI/UserInterface.py" line="3612" />
+      <location filename="../UI/UserInterface.py" line="3611" />
       <source>Qt5 Documentation</source>
       <translation type="unfinished">Documentazione Qt4 {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3593" />
+      <location filename="../UI/UserInterface.py" line="3618" />
       <source>Open Qt5 Documentation</source>
       <translation type="unfinished">Apri documentazione su Qt4 {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3595" />
+      <location filename="../UI/UserInterface.py" line="3620" />
       <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3608" />
-      <location filename="../UI/UserInterface.py" line="3607" />
+      <location filename="../UI/UserInterface.py" line="3633" />
+      <location filename="../UI/UserInterface.py" line="3632" />
       <source>Qt6 Documentation</source>
       <translation type="unfinished">Documentazione Qt4 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3614" />
+      <location filename="../UI/UserInterface.py" line="3639" />
       <source>Open Qt6 Documentation</source>
       <translation type="unfinished">Apri documentazione su Qt4 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3616" />
+      <location filename="../UI/UserInterface.py" line="3641" />
       <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3629" />
-      <location filename="../UI/UserInterface.py" line="3628" />
+      <location filename="../UI/UserInterface.py" line="3654" />
+      <location filename="../UI/UserInterface.py" line="3653" />
       <source>PyQt5 Documentation</source>
       <translation type="unfinished">Documentazione PyQt4 {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3635" />
+      <location filename="../UI/UserInterface.py" line="3660" />
       <source>Open PyQt5 Documentation</source>
       <translation type="unfinished">Apri documentazione su PyQt4 {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3637" />
+      <location filename="../UI/UserInterface.py" line="3662" />
       <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3650" />
-      <location filename="../UI/UserInterface.py" line="3649" />
+      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3674" />
       <source>PyQt6 Documentation</source>
       <translation type="unfinished">Documentazione PyQt4 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3656" />
+      <location filename="../UI/UserInterface.py" line="3681" />
       <source>Open PyQt6 Documentation</source>
       <translation type="unfinished">Apri documentazione su PyQt4 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3658" />
+      <location filename="../UI/UserInterface.py" line="3683" />
       <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3676" />
-      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3701" />
+      <location filename="../UI/UserInterface.py" line="3700" />
       <source>Python 3 Documentation</source>
       <translation>Documentazione Python 3</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3682" />
+      <location filename="../UI/UserInterface.py" line="3707" />
       <source>Open Python 3 Documentation</source>
       <translation>Apri documentazione Python 3</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3684" />
-      <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3703" />
-      <location filename="../UI/UserInterface.py" line="3702" />
-      <source>eric API Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3709" />
+      <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3728" />
+      <location filename="../UI/UserInterface.py" line="3727" />
+      <source>eric API Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3734" />
       <source>Open eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3711" />
+      <location filename="../UI/UserInterface.py" line="3736" />
       <source>&lt;b&gt;eric API Documentation&lt;/b&gt;&lt;p&gt;Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3729" />
-      <location filename="../UI/UserInterface.py" line="3728" />
+      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3753" />
       <source>PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3735" />
+      <location filename="../UI/UserInterface.py" line="3760" />
       <source>Open PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3737" />
+      <location filename="../UI/UserInterface.py" line="3762" />
       <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3755" />
-      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3780" />
+      <location filename="../UI/UserInterface.py" line="3779" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3761" />
+      <location filename="../UI/UserInterface.py" line="3786" />
       <source>Open PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3763" />
+      <location filename="../UI/UserInterface.py" line="3788" />
       <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3865" />
+      <location filename="../UI/UserInterface.py" line="3890" />
       <source>E&amp;xtras</source>
       <translation>E&amp;xtra</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3875" />
+      <location filename="../UI/UserInterface.py" line="3900" />
       <source>Wi&amp;zards</source>
       <translation>Wi&amp;zards</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3893" />
+      <location filename="../UI/UserInterface.py" line="3918" />
       <source>P&amp;lugins</source>
       <translation>P&amp;lugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3902" />
+      <location filename="../UI/UserInterface.py" line="3927" />
       <source>Configure...</source>
       <translation>Configura...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3911" />
+      <location filename="../UI/UserInterface.py" line="3936" />
       <source>&amp;Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3928" />
+      <location filename="../UI/UserInterface.py" line="3953" />
       <source>Select Tool Group</source>
       <translation>Seleziona Tool Group</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3939" />
+      <location filename="../UI/UserInterface.py" line="3964" />
       <source>Se&amp;ttings</source>
       <translation>Impos&amp;tazioni</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3972" />
+      <location filename="../UI/UserInterface.py" line="3997" />
       <source>&amp;Window</source>
       <translation>&amp;Finestre</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3981" />
+      <location filename="../UI/UserInterface.py" line="4006" />
       <source>&amp;Windows</source>
       <translation type="unfinished">&amp;Finestre</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3985" />
+      <location filename="../UI/UserInterface.py" line="4010" />
       <source>Central Park</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3989" />
+      <location filename="../UI/UserInterface.py" line="4014" />
       <source>Left Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4008" />
+      <location filename="../UI/UserInterface.py" line="4033" />
       <source>Right Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4027" />
+      <location filename="../UI/UserInterface.py" line="4052" />
       <source>Bottom Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4035" />
+      <location filename="../UI/UserInterface.py" line="4060" />
       <source>Plug-ins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4041" />
+      <location filename="../UI/UserInterface.py" line="4066" />
       <source>&amp;Toolbars</source>
       <translation>&amp;Toolbar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4054" />
+      <location filename="../UI/UserInterface.py" line="4079" />
       <source>&amp;Help</source>
       <translation>&amp;Help</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4109" />
-      <location filename="../UI/UserInterface.py" line="4093" />
+      <location filename="../UI/UserInterface.py" line="4135" />
+      <location filename="../UI/UserInterface.py" line="4119" />
       <source>Tools</source>
       <translation>Strumenti</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4111" />
-      <location filename="../UI/UserInterface.py" line="4097" />
+      <location filename="../UI/UserInterface.py" line="4137" />
+      <location filename="../UI/UserInterface.py" line="4123" />
       <source>Settings</source>
       <translation>Impostazioni</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6222" />
-      <location filename="../UI/UserInterface.py" line="4112" />
-      <location filename="../UI/UserInterface.py" line="4098" />
+      <location filename="../UI/UserInterface.py" line="6260" />
+      <location filename="../UI/UserInterface.py" line="4138" />
+      <location filename="../UI/UserInterface.py" line="4124" />
       <source>Help</source>
       <translation>Aiuto</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4113" />
-      <location filename="../UI/UserInterface.py" line="4099" />
+      <location filename="../UI/UserInterface.py" line="4139" />
+      <location filename="../UI/UserInterface.py" line="4125" />
       <source>Profiles</source>
       <translation>Profili</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
-      <location filename="../UI/UserInterface.py" line="4100" />
+      <location filename="../UI/UserInterface.py" line="4140" />
+      <location filename="../UI/UserInterface.py" line="4126" />
       <source>Plugins</source>
       <translation>Plugins</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4110" />
+      <location filename="../UI/UserInterface.py" line="4136" />
       <source>Unittest</source>
       <translation>Unittest</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4284" />
+      <location filename="../UI/UserInterface.py" line="4310" />
       <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Questa zona della barra di stato mostra il linguaggio usato dall'editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4293" />
+      <location filename="../UI/UserInterface.py" line="4319" />
       <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Questa zona della barra di stato mostra l'encoding usato dall'editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4302" />
+      <location filename="../UI/UserInterface.py" line="4328" />
       <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Questa zona della barra di stato mostra l'eol usato dall'editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4311" />
+      <location filename="../UI/UserInterface.py" line="4337" />
       <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="4320" />
+      <location filename="../UI/UserInterface.py" line="4346" />
       <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="4329" />
+      <location filename="../UI/UserInterface.py" line="4355" />
       <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="4343" />
+      <location filename="../UI/UserInterface.py" line="4369" />
       <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4414" />
-      <location filename="../UI/UserInterface.py" line="4373" />
+      <location filename="../UI/UserInterface.py" line="4440" />
+      <location filename="../UI/UserInterface.py" line="4399" />
       <source>External Tools/{0}</source>
       <translation>Tool Esterni/{0}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4522" />
+      <location filename="../UI/UserInterface.py" line="4548" />
       <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="4571" />
+      <location filename="../UI/UserInterface.py" line="4597" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Security)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4588" />
+      <location filename="../UI/UserInterface.py" line="4614" />
       <source>Desktop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4592" />
+      <location filename="../UI/UserInterface.py" line="4618" />
       <source>Session Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4595" />
+      <location filename="../UI/UserInterface.py" line="4621" />
       <source>&lt;/table&gt;</source>
       <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4635" />
+      <location filename="../UI/UserInterface.py" line="4673" />
       <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
       <translation>L'indirizzo di posta o il server si posta sono vuoti. Per cortesia configura le opzioni per l'Email nel dialogo delle preferenze.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4970" />
+      <location filename="../UI/UserInterface.py" line="5008" />
       <source>Restart application</source>
       <translation>Riavvia applicazione</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4971" />
+      <location filename="../UI/UserInterface.py" line="5009" />
       <source>The application needs to be restarted. Do it now?</source>
       <translation>L'applicazione necessita di un riavvio. Farlo ora ?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4995" />
+      <location filename="../UI/UserInterface.py" line="5033" />
       <source>Upgrade PyQt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4996" />
+      <location filename="../UI/UserInterface.py" line="5034" />
       <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5046" />
-      <location filename="../UI/UserInterface.py" line="5020" />
+      <location filename="../UI/UserInterface.py" line="5084" />
+      <location filename="../UI/UserInterface.py" line="5058" />
       <source>Upgrade Eric</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5021" />
+      <location filename="../UI/UserInterface.py" line="5059" />
       <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5047" />
+      <location filename="../UI/UserInterface.py" line="5085" />
       <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
  Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5105" />
+      <location filename="../UI/UserInterface.py" line="5143" />
       <source>&amp;Builtin Tools</source>
       <translation>Tool &amp;Builtin</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5124" />
+      <location filename="../UI/UserInterface.py" line="5162" />
       <source>&amp;Plugin Tools</source>
       <translation>Informazioni sui &amp;Plugin Tools</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5127" />
+      <location filename="../UI/UserInterface.py" line="5165" />
       <source>&amp;User Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5153" />
+      <location filename="../UI/UserInterface.py" line="5191" />
       <source>Configure Tool Groups ...</source>
       <translation>Configura Tools Groups...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5157" />
+      <location filename="../UI/UserInterface.py" line="5195" />
       <source>Configure current Tool Group ...</source>
       <translation>Configura Tools Groups correnti...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5196" />
-      <location filename="../UI/UserInterface.py" line="5176" />
+      <location filename="../UI/UserInterface.py" line="5234" />
+      <location filename="../UI/UserInterface.py" line="5214" />
       <source>No User Tools Configured</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5272" />
+      <location filename="../UI/UserInterface.py" line="5310" />
       <source>&amp;Show all</source>
       <translation>Mo&amp;stra tutti</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5274" />
+      <location filename="../UI/UserInterface.py" line="5312" />
       <source>&amp;Hide all</source>
       <translation>Nascondi &amp;tutti</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6359" />
-      <location filename="../UI/UserInterface.py" line="6348" />
-      <location filename="../UI/UserInterface.py" line="6300" />
-      <location filename="../UI/UserInterface.py" line="6290" />
-      <location filename="../UI/UserInterface.py" line="6121" />
-      <location filename="../UI/UserInterface.py" line="6111" />
-      <location filename="../UI/UserInterface.py" line="6053" />
-      <location filename="../UI/UserInterface.py" line="6043" />
+      <location filename="../UI/UserInterface.py" line="6397" />
+      <location filename="../UI/UserInterface.py" line="6386" />
+      <location filename="../UI/UserInterface.py" line="6338" />
+      <location filename="../UI/UserInterface.py" line="6328" />
+      <location filename="../UI/UserInterface.py" line="6159" />
+      <location filename="../UI/UserInterface.py" line="6149" />
+      <location filename="../UI/UserInterface.py" line="6091" />
+      <location filename="../UI/UserInterface.py" line="6081" />
       <source>Problem</source>
       <translation>Problema</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6360" />
-      <location filename="../UI/UserInterface.py" line="6349" />
-      <location filename="../UI/UserInterface.py" line="6301" />
-      <location filename="../UI/UserInterface.py" line="6291" />
-      <location filename="../UI/UserInterface.py" line="6122" />
-      <location filename="../UI/UserInterface.py" line="6112" />
-      <location filename="../UI/UserInterface.py" line="6054" />
-      <location filename="../UI/UserInterface.py" line="6044" />
+      <location filename="../UI/UserInterface.py" line="6398" />
+      <location filename="../UI/UserInterface.py" line="6387" />
+      <location filename="../UI/UserInterface.py" line="6339" />
+      <location filename="../UI/UserInterface.py" line="6329" />
+      <location filename="../UI/UserInterface.py" line="6160" />
+      <location filename="../UI/UserInterface.py" line="6150" />
+      <location filename="../UI/UserInterface.py" line="6092" />
+      <location filename="../UI/UserInterface.py" line="6082" />
       <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="6603" />
-      <location filename="../UI/UserInterface.py" line="6514" />
-      <location filename="../UI/UserInterface.py" line="6395" />
-      <location filename="../UI/UserInterface.py" line="6372" />
-      <location filename="../UI/UserInterface.py" line="6313" />
-      <location filename="../UI/UserInterface.py" line="6260" />
-      <location filename="../UI/UserInterface.py" line="6238" />
-      <location filename="../UI/UserInterface.py" line="6197" />
-      <location filename="../UI/UserInterface.py" line="6188" />
-      <location filename="../UI/UserInterface.py" line="6153" />
-      <location filename="../UI/UserInterface.py" line="6144" />
-      <location filename="../UI/UserInterface.py" line="6085" />
-      <location filename="../UI/UserInterface.py" line="6076" />
+      <location filename="../UI/UserInterface.py" line="6641" />
+      <location filename="../UI/UserInterface.py" line="6552" />
+      <location filename="../UI/UserInterface.py" line="6433" />
+      <location filename="../UI/UserInterface.py" line="6410" />
+      <location filename="../UI/UserInterface.py" line="6351" />
+      <location filename="../UI/UserInterface.py" line="6298" />
+      <location filename="../UI/UserInterface.py" line="6276" />
+      <location filename="../UI/UserInterface.py" line="6235" />
+      <location filename="../UI/UserInterface.py" line="6226" />
+      <location filename="../UI/UserInterface.py" line="6191" />
+      <location filename="../UI/UserInterface.py" line="6182" />
+      <location filename="../UI/UserInterface.py" line="6123" />
+      <location filename="../UI/UserInterface.py" line="6114" />
       <source>Process Generation Error</source>
       <translation>Errore Generazione Processo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6077" />
+      <location filename="../UI/UserInterface.py" line="6115" />
       <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="6086" />
+      <location filename="../UI/UserInterface.py" line="6124" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6145" />
+      <location filename="../UI/UserInterface.py" line="6183" />
       <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="6154" />
+      <location filename="../UI/UserInterface.py" line="6192" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6189" />
+      <location filename="../UI/UserInterface.py" line="6227" />
       <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="6198" />
+      <location filename="../UI/UserInterface.py" line="6236" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6223" />
-      <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="6239" />
-      <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="6261" />
+      <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="6277" />
+      <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="6299" />
       <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="6314" />
+      <location filename="../UI/UserInterface.py" line="6352" />
       <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="6373" />
+      <location filename="../UI/UserInterface.py" line="6411" />
       <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Non posso avviare l'anteprima delle traduzioni.&lt;br&gt;Assicurarsi che sia disponibile come &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6396" />
+      <location filename="../UI/UserInterface.py" line="6434" />
       <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="6495" />
+      <location filename="../UI/UserInterface.py" line="6533" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6515" />
+      <location filename="../UI/UserInterface.py" line="6553" />
       <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6548" />
-      <location filename="../UI/UserInterface.py" line="6538" />
-      <source>External Tools</source>
-      <translation>Tool esterni</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6539" />
-      <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
-      <translation>Nessun elemento per il tool esterno '{0}' trovato nel gruppo '{1}'.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6549" />
-      <source>No toolgroup entry '{0}' found.</source>
-      <translation>Nessun gruppo '{0}' trovato.</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="6586" />
+      <location filename="../UI/UserInterface.py" line="6576" />
+      <source>External Tools</source>
+      <translation>Tool esterni</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6577" />
+      <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
+      <translation>Nessun elemento per il tool esterno '{0}' trovato nel gruppo '{1}'.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6587" />
+      <source>No toolgroup entry '{0}' found.</source>
+      <translation>Nessun gruppo '{0}' trovato.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6624" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>Avvio processo '{0} {1}'.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6604" />
+      <location filename="../UI/UserInterface.py" line="6642" />
       <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Non posso avviare l'elemento degli strumenti &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Assicurarsi che sia disponibile come &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6683" />
+      <location filename="../UI/UserInterface.py" line="6721" />
       <source>Process '{0}' has exited.
 </source>
       <translation>Il processo '{0}' è terminato.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6970" />
-      <location filename="../UI/UserInterface.py" line="6908" />
-      <location filename="../UI/UserInterface.py" line="6864" />
-      <location filename="../UI/UserInterface.py" line="6790" />
-      <location filename="../UI/UserInterface.py" line="6726" />
+      <location filename="../UI/UserInterface.py" line="7008" />
+      <location filename="../UI/UserInterface.py" line="6946" />
+      <location filename="../UI/UserInterface.py" line="6902" />
+      <location filename="../UI/UserInterface.py" line="6828" />
+      <location filename="../UI/UserInterface.py" line="6764" />
       <source>Documentation Missing</source>
       <translation>Documentazione mancante</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6971" />
-      <location filename="../UI/UserInterface.py" line="6909" />
-      <location filename="../UI/UserInterface.py" line="6865" />
-      <location filename="../UI/UserInterface.py" line="6791" />
-      <location filename="../UI/UserInterface.py" line="6727" />
+      <location filename="../UI/UserInterface.py" line="7009" />
+      <location filename="../UI/UserInterface.py" line="6947" />
+      <location filename="../UI/UserInterface.py" line="6903" />
+      <location filename="../UI/UserInterface.py" line="6829" />
+      <location filename="../UI/UserInterface.py" line="6765" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation>&lt;p&gt;L'inizio della documentazione "&lt;b&gt;{0}&lt;/b&gt;" non viene trovato.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6952" />
-      <location filename="../UI/UserInterface.py" line="6834" />
+      <location filename="../UI/UserInterface.py" line="6990" />
+      <location filename="../UI/UserInterface.py" line="6872" />
       <source>Documentation</source>
       <translation>Documentazione</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6835" />
+      <location filename="../UI/UserInterface.py" line="6873" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6953" />
+      <location filename="../UI/UserInterface.py" line="6991" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7132" />
-      <location filename="../UI/UserInterface.py" line="7068" />
+      <location filename="../UI/UserInterface.py" line="7170" />
+      <location filename="../UI/UserInterface.py" line="7106" />
       <source>Start Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7069" />
+      <location filename="../UI/UserInterface.py" line="7107" />
       <source>The eric web browser could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7133" />
+      <location filename="../UI/UserInterface.py" line="7171" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7179" />
+      <location filename="../UI/UserInterface.py" line="7217" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7179" />
+      <location filename="../UI/UserInterface.py" line="7217" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7512" />
       <location filename="../UI/UserInterface.py" line="7474" />
-      <location filename="../UI/UserInterface.py" line="7436" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7454" />
+      <location filename="../UI/UserInterface.py" line="7492" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7682" />
+      <location filename="../UI/UserInterface.py" line="7720" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7683" />
+      <location filename="../UI/UserInterface.py" line="7721" />
       <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="7706" />
+      <location filename="../UI/UserInterface.py" line="7744" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7731" />
-      <location filename="../UI/UserInterface.py" line="7708" />
+      <location filename="../UI/UserInterface.py" line="7769" />
+      <location filename="../UI/UserInterface.py" line="7746" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7776" />
+      <location filename="../UI/UserInterface.py" line="7814" />
       <source>Crash Session found!</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7777" />
+      <location filename="../UI/UserInterface.py" line="7815" />
       <source>A session file of a crashed session was found. Shall this session be restored?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8154" />
+      <location filename="../UI/UserInterface.py" line="8192" />
       <source>Drop Error</source>
       <translation>Errore Drop</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8155" />
+      <location filename="../UI/UserInterface.py" line="8193" />
       <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="8341" />
+      <location filename="../UI/UserInterface.py" line="8379" />
       <source>Upgrade available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8342" />
+      <location filename="../UI/UserInterface.py" line="8380" />
       <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8387" />
+      <location filename="../UI/UserInterface.py" line="8425" />
       <source>First time usage</source>
       <translation>Primo avvio</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8388" />
+      <location filename="../UI/UserInterface.py" line="8426" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8410" />
+      <location filename="../UI/UserInterface.py" line="8448" />
       <source>Select Workspace Directory</source>
       <translation type="unfinished">Seleziona cartella di lavoro</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8575" />
+      <location filename="../UI/UserInterface.py" line="8616" />
       <source>Unsaved Data Detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8576" />
+      <location filename="../UI/UserInterface.py" line="8617" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -93108,40 +93128,40 @@
       <translation>&lt;b&gt;Finestra di visualizzazione delle variabili locali&lt;/b&gt;&lt;p&gt;Questa finestra mostra le variabili locali del programma in debug.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1055" />
+      <location filename="../Debugger/VariablesViewer.py" line="1056" />
       <source>Show Details...</source>
       <translation>Mostra dettagli...</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1057" />
-      <source>Expand</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1058" />
-      <source>Collapse</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Debugger/VariablesViewer.py" line="1059" />
+      <source>Expand Subitems</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/VariablesViewer.py" line="1062" />
+      <source>Collapse Subitems</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/VariablesViewer.py" line="1064" />
       <source>Collapse All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1067" />
-      <location filename="../Debugger/VariablesViewer.py" line="1061" />
+      <location filename="../Debugger/VariablesViewer.py" line="1072" />
+      <location filename="../Debugger/VariablesViewer.py" line="1066" />
       <source>Refresh</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1069" />
-      <location filename="../Debugger/VariablesViewer.py" line="1063" />
+      <location filename="../Debugger/VariablesViewer.py" line="1074" />
+      <location filename="../Debugger/VariablesViewer.py" line="1068" />
       <source>Configure...</source>
       <translation>Configura...</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1071" />
-      <location filename="../Debugger/VariablesViewer.py" line="1064" />
+      <location filename="../Debugger/VariablesViewer.py" line="1076" />
+      <location filename="../Debugger/VariablesViewer.py" line="1069" />
       <source>Variables Type Filter...</source>
       <translation type="unfinished" />
     </message>
@@ -97742,91 +97762,91 @@
       <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; contiene modifiche non salvate.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5972" />
+      <location filename="../ViewManager/ViewManager.py" line="5969" />
       <source>Line: {0:5}</source>
       <translation>Linea: {0:5}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5978" />
+      <location filename="../ViewManager/ViewManager.py" line="5975" />
       <source>Pos: {0:5}</source>
       <translation>Pos: {0:5}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5998" />
+      <location filename="../ViewManager/ViewManager.py" line="5995" />
       <source>Language: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6007" />
+      <location filename="../ViewManager/ViewManager.py" line="6004" />
       <source>EOL Mode: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6503" />
-      <location filename="../ViewManager/ViewManager.py" line="6460" />
+      <location filename="../ViewManager/ViewManager.py" line="6500" />
+      <location filename="../ViewManager/ViewManager.py" line="6457" />
       <source>&amp;Clear</source>
       <translation>Pulis&amp;ci</translation>
     </message>
     <message>
+      <location filename="../ViewManager/ViewManager.py" line="6494" />
+      <source>&amp;Add</source>
+      <translation>&amp;Aggiungi</translation>
+    </message>
+    <message>
       <location filename="../ViewManager/ViewManager.py" line="6497" />
-      <source>&amp;Add</source>
-      <translation>&amp;Aggiungi</translation>
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="6500" />
       <source>&amp;Edit...</source>
       <translation>&amp;Modifica...</translation>
     </message>
     <message>
+      <location filename="../ViewManager/ViewManager.py" line="7567" />
+      <location filename="../ViewManager/ViewManager.py" line="7553" />
+      <location filename="../ViewManager/ViewManager.py" line="7521" />
+      <source>Edit Spelling Dictionary</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7524" />
+      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7540" />
+      <source>Editing {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7556" />
+      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../ViewManager/ViewManager.py" line="7570" />
-      <location filename="../ViewManager/ViewManager.py" line="7556" />
-      <location filename="../ViewManager/ViewManager.py" line="7524" />
-      <source>Edit Spelling Dictionary</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7527" />
-      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7543" />
-      <source>Editing {0}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7559" />
-      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7573" />
       <source>The spelling dictionary was saved successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6682" />
+      <location filename="../ViewManager/ViewManager.py" line="6679" />
       <source>Clear Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6683" />
+      <location filename="../ViewManager/ViewManager.py" line="6680" />
       <source>Do you really want to delete all text of the current editor?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="8103" />
-      <location filename="../ViewManager/ViewManager.py" line="8086" />
+      <location filename="../ViewManager/ViewManager.py" line="8100" />
+      <location filename="../ViewManager/ViewManager.py" line="8083" />
       <source>File System Watcher Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="8087" />
+      <location filename="../ViewManager/ViewManager.py" line="8084" />
       <source>&lt;p&gt;The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should &lt;ul&gt;&lt;li&gt;sudo nano /etc/sysctl.conf&lt;/li&gt;&lt;li&gt;add to the bottom "fs.inotify.max_user_instances = 1024"&lt;/li&gt;&lt;li&gt;save and close the editor&lt;/li&gt;&lt;li&gt;sudo sysctl -p&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Error Message: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="8104" />
+      <location filename="../ViewManager/ViewManager.py" line="8101" />
       <source>The file system watcher reported an error with code &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -99682,16 +99702,6 @@
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
-      <source>Select to delete all web databases</source>
-      <translation type="unfinished">Seleziona per cancellare tutti i database web</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
-      <source>Web &amp;Databases</source>
-      <translation type="unfinished">Base &amp;Dati Web</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
       <source>Select to delete all remembered zoom settings</source>
       <translation type="unfinished" />
     </message>
@@ -99705,6 +99715,14 @@
       <source>SSL Certificate Error Exceptions</source>
       <translation type="unfinished" />
     </message>
+    <message>
+      <source>Select to delete all web databases</source>
+      <translation type="vanished">Seleziona per cancellare tutti i database web</translation>
+    </message>
+    <message>
+      <source>Web &amp;Databases</source>
+      <translation type="vanished">Base &amp;Dati Web</translation>
+    </message>
   </context>
   <context>
     <name>WebBrowserJavaScriptConsole</name>
@@ -99953,6 +99971,16 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
+      <source>Select to render all web contents using a dark theme.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
+      <source>Force Dark Mode</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
       <source>Startup</source>
       <translation type="unfinished">Avvio</translation>
     </message>
@@ -100892,355 +100920,355 @@
   <context>
     <name>WebBrowserView</name>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="366" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="353" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="341" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="329" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="367" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="354" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="342" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="330" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="330" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="331" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non esiste.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="367" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="342" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="368" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="343" />
       <source>&lt;p&gt;Could not start a viewer for file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Non posso avviare un visualizzatore per il file &lt;b&gt;{0}&lt;/b&gt;.&lt;p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="354" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="355" />
       <source>&lt;p&gt;Could not start an application for URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Non posso lanciare un'applicazione per l'URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="608" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="609" />
       <source>Match {0} of {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="634" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="635" />
       <source>Inspect Element...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="666" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="667" />
       <source>No suggestions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="723" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="724" />
       <source>Open Link in New Tab	Ctrl+LMB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="728" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="729" />
       <source>Open Link in New Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="734" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="735" />
       <source>Open Link in New Private Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="741" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="742" />
       <source>Save Lin&amp;k</source>
       <translation type="unfinished">Salva lin&amp;k</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="745" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="746" />
       <source>Bookmark this Link</source>
       <translation type="unfinished">Insersci nei bookmark questo link</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="751" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="752" />
       <source>Copy URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="755" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="756" />
       <source>Send URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="764" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="765" />
       <source>Scan Link with VirusTotal</source>
       <translation type="unfinished">Scansiona il collegamento con VirusTotal</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="782" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="783" />
       <source>Open Image in New Tab</source>
       <translation type="unfinished">Apri immagine in una nuova linguetta</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="789" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="790" />
       <source>Save Image</source>
       <translation type="unfinished">Salva immagine</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="792" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="793" />
       <source>Copy Image to Clipboard</source>
       <translation type="unfinished">Copia immagine nella Clipboard</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="794" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="795" />
       <source>Copy Image URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="799" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="800" />
       <source>Send Image URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="818" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="810" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="819" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="811" />
       <source>Search image in {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="814" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="815" />
       <source>Search image with...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="825" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="826" />
       <source>Block Image</source>
       <translation type="unfinished">Blocca immagine</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="835" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="836" />
       <source>Scan Image with VirusTotal</source>
       <translation type="unfinished">Scansiona l'immagine con VirusTotal</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="855" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="856" />
       <source>Play</source>
       <translation type="unfinished">Riproduci</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="861" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="862" />
       <source>Pause</source>
       <translation type="unfinished">Pausa</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="867" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="868" />
       <source>Unmute</source>
       <translation type="unfinished">Parlante</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="873" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="874" />
       <source>Mute</source>
       <translation type="unfinished">Muto</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="878" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="879" />
       <source>Copy Media URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="883" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="884" />
       <source>Send Media URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="889" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="890" />
       <source>Save Media</source>
       <translation type="unfinished">Salva Media</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="910" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="911" />
       <source>Send Text</source>
       <translation type="unfinished">Invia testo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="917" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="918" />
       <source>Search with '{0}'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="921" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="922" />
       <source>Search with...</source>
       <translation type="unfinished">Cerca con...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1078" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="947" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1079" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="948" />
       <source>Google Translate</source>
       <translation type="unfinished">Traduttore Google</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="957" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="958" />
       <source>Dictionary</source>
       <translation type="unfinished">Dizionario</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="965" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="966" />
       <source>Go to web address</source>
       <translation type="unfinished">Vai all'indirizzo di rete</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="994" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="995" />
       <source>Add New Page</source>
       <translation type="unfinished">Aggiungi una nuova pagina</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="999" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1000" />
       <source>Configure Speed Dial</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1005" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1006" />
       <source>Reload All Dials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1009" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1010" />
       <source>Reset to Default Dials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1014" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1015" />
       <source>Bookmark this Page</source>
       <translation type="unfinished">Inserisci nei segnalibri questa pagina</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1018" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1019" />
       <source>Copy Page URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1023" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1024" />
       <source>Send Page URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1029" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1030" />
       <source>User Agent</source>
       <translation type="unfinished">User Agent</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1057" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1058" />
       <source>Validate Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1120" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1121" />
       <source>Add to web search toolbar</source>
       <translation type="unfinished">Aggiungi alla toolbar delle ricerche web</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1804" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1805" />
       <source>Empty Page</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="1869" />
       <location filename="../WebBrowser/WebBrowserView.py" line="1868" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="1867" />
       <source>Render Process terminated abnormally</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1873" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1874" />
       <source>The render process crashed while loading this page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1878" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1879" />
       <source>The render process was killed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1880" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1881" />
       <source>The render process terminated while loading this page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1884" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1885" />
       <source>Try reloading the page or closing some tabs to make more memory available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2012" />
-      <source>Web Archive (*.mhtml *.mht)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2013" />
-      <source>HTML File (*.html *.htm)</source>
+      <source>Web Archive (*.mhtml *.mht)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2014" />
+      <source>HTML File (*.html *.htm)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2015" />
       <source>HTML File with all resources (*.html *.htm)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2036" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2037" />
       <source>Save Web Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2428" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2429" />
       <source>eric7 {0} ({1})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2439" />
-      <source>Print Page</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2440" />
+      <source>Print Page</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2441" />
       <source>There is already a print job in progress. Printing is temporarily disabled until the current job is finished.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2555" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="2485" />
-      <source>Print to PDF</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2486" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2556" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2486" />
+      <source>Print to PDF</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2487" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2557" />
       <source>&lt;p&gt;The PDF file &lt;b&gt;{0}&lt;/b&gt; could not be generated.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2590" />
-      <source>Quota Request</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2591" />
+      <source>Quota Request</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2592" />
       <source>&lt;p&gt; Allow the website at &lt;b&gt;{0}&lt;/b&gt; to use &lt;b&gt;{1}&lt;/b&gt; of persistent storage?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2634" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2635" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Read&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2642" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2643" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Write&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2647" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2648" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Read and Write&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2654" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2655" />
       <source>File System Access Request</source>
       <translation type="unfinished" />
     </message>
@@ -101354,10 +101382,10 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4099" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3007" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2991" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2976" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4105" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3013" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2997" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2982" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="207" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
@@ -101368,2074 +101396,2074 @@
       <translation type="unfinished">Contenuti</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1758" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1758" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1764" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1764" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="306" />
       <source>Index</source>
       <translation type="unfinished">Indice</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1769" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1768" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1774" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="318" />
       <source>Search</source>
       <translation type="unfinished">Ricerca</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2115" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2114" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2121" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2120" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="325" />
       <source>JavaScript Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="737" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="743" />
       <source>New Tab</source>
       <translation type="unfinished">Nuova scheda</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="739" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="745" />
       <source>&amp;New Tab</source>
       <translation type="unfinished">&amp;Nuova scheda</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="740" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="746" />
       <source>Ctrl+T</source>
       <comment>File|New Tab</comment>
       <translation type="unfinished">Ctrl+T</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="745" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="751" />
       <source>Open a new web browser tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="747" />
-      <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="753" />
+      <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="759" />
       <source>New Window</source>
       <translation type="unfinished">Nuova finestra</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="755" />
-      <source>New &amp;Window</source>
-      <translation type="unfinished">Nuova &amp;Finestra</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="756" />
-      <source>Ctrl+N</source>
-      <comment>File|New Window</comment>
-      <translation type="unfinished">Ctrl+N</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="761" />
+      <source>New &amp;Window</source>
+      <translation type="unfinished">Nuova &amp;Finestra</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="762" />
+      <source>Ctrl+N</source>
+      <comment>File|New Window</comment>
+      <translation type="unfinished">Ctrl+N</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="767" />
       <source>Open a new web browser window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="763" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="769" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new web browser window in the current privacy mode.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2889" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="773" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2895" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="779" />
       <source>New Private Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="781" />
       <source>New &amp;Private Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="776" />
-      <source>Ctrl+Shift+P</source>
-      <comment>File|New Private Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="782" />
+      <source>Ctrl+Shift+P</source>
+      <comment>File|New Private Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="788" />
       <source>Open a new private web browser window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="785" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="791" />
       <source>&lt;b&gt;New Private Window&lt;/b&gt;&lt;p&gt;This opens a new private web browser window by starting a new web browser instance in private mode.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2927" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2904" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="795" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2933" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2910" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="801" />
       <source>Open File</source>
       <translation type="unfinished">Apri File</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="797" />
-      <source>&amp;Open File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="798" />
-      <source>Ctrl+O</source>
-      <comment>File|Open</comment>
-      <translation type="unfinished">Ctrl+O</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="803" />
+      <source>&amp;Open File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="804" />
+      <source>Ctrl+O</source>
+      <comment>File|Open</comment>
+      <translation type="unfinished">Ctrl+O</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="809" />
       <source>Open a file for display</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="805" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="811" />
       <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new file for display. It pops up a file selection dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="815" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="821" />
       <source>Open File in New Tab</source>
       <translation type="unfinished">Apri il file in una nuova scheda</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="817" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="823" />
       <source>Open File in New &amp;Tab</source>
       <translation type="unfinished">Apri file in una nuova &amp;scheda</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="818" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="824" />
       <source>Shift+Ctrl+O</source>
       <comment>File|Open in new tab</comment>
       <translation type="unfinished">Ctrl+Shift+O</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="823" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="829" />
       <source>Open a file for display in a new tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="825" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="831" />
       <source>&lt;b&gt;Open File in New Tab&lt;/b&gt;&lt;p&gt;This opens a new file for display in a new tab. It pops up a file selection dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="836" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="842" />
       <source>Save As</source>
       <translation type="unfinished">Salva come</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="838" />
-      <source>&amp;Save As...</source>
-      <translation type="unfinished">&amp;Salva come...</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="839" />
-      <source>Shift+Ctrl+S</source>
-      <comment>File|Save As</comment>
-      <translation type="unfinished">Ctrl+Shift+S</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="844" />
+      <source>&amp;Save As...</source>
+      <translation type="unfinished">&amp;Salva come...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="845" />
+      <source>Shift+Ctrl+S</source>
+      <comment>File|Save As</comment>
+      <translation type="unfinished">Ctrl+Shift+S</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="850" />
       <source>Save the current page to disk</source>
       <translation type="unfinished">Salva la pagina corrente su disco</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="846" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="852" />
       <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current page to disk.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Salva come...&lt;/b&gt;&lt;p&gt;Salva la pagina corrente su disco.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="854" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="860" />
       <source>Save Page Screen</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="856" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="862" />
       <source>Save Page Screen...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="863" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="869" />
       <source>Save the visible part of the current page as a screen shot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="866" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="872" />
       <source>&lt;b&gt;Save Page Screen...&lt;/b&gt;&lt;p&gt;Saves the visible part of the current page as a screen shot.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="877" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="883" />
       <source>Import Bookmarks</source>
       <translation type="unfinished">Importa Segnalibri</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="878" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="884" />
       <source>&amp;Import Bookmarks...</source>
       <translation type="unfinished">&amp;Importa Segnalibri...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="885" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="891" />
       <source>Import bookmarks from other browsers</source>
       <translation type="unfinished">Importa segnalibri da altri browser</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="888" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="894" />
       <source>&lt;b&gt;Import Bookmarks&lt;/b&gt;&lt;p&gt;Import bookmarks from other browsers.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Importa segnalibri&lt;/b&gt;&lt;p&gt;Importa segnalibri da un altro browser.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="897" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="903" />
       <source>Export Bookmarks</source>
       <translation type="unfinished">Esporta segnalibri</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="898" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="904" />
       <source>&amp;Export Bookmarks...</source>
       <translation type="unfinished">&amp;Esporta Segnalibri...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="905" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="911" />
       <source>Export the bookmarks into a file</source>
       <translation type="unfinished">Esporta i segnalibri in un file</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="908" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="914" />
       <source>&lt;b&gt;Export Bookmarks&lt;/b&gt;&lt;p&gt;Export the bookmarks into a file.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Esporta segnalibri&lt;/b&gt;&lt;p&gt;Esporta segnalibri in un file.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2537" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="917" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2543" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="923" />
       <source>Print</source>
       <translation type="unfinished">Stampa</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="919" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="925" />
       <source>&amp;Print</source>
       <translation type="unfinished">Stam&amp;pa</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="920" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="926" />
       <source>Ctrl+P</source>
       <comment>File|Print</comment>
       <translation type="unfinished">Ctrl+P</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="925" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="931" />
       <source>Print the displayed help</source>
       <translation type="unfinished">Stampa l'help mostrato</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="927" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="933" />
       <source>&lt;b&gt;Print&lt;/b&gt;&lt;p&gt;Print the displayed help text.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Stampa&lt;/b&gt;&lt;p&gt;Stampa il testo di help visualizzato.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="935" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="933" />
-      <source>Print as PDF</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="941" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="939" />
+      <source>Print as PDF</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="947" />
       <source>Print the displayed help as PDF</source>
       <translation type="unfinished">Stampa l'help visualizzato come PDF</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="943" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="949" />
       <source>&lt;b&gt;Print as PDF&lt;/b&gt;&lt;p&gt;Print the displayed help text as a PDF file.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Stampa come PDF&lt;/b&gt;&lt;p&gt;Stampa il testo di aiuto visualizzato come file PDF.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="954" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="952" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="960" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="958" />
       <source>Print Preview</source>
       <translation type="unfinished">Anteprima Stampa</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="961" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="967" />
       <source>Print preview of the displayed help</source>
       <translation type="unfinished">Vai alla schermata di help iniziale</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="964" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="970" />
       <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the displayed help text.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Stampa Preview&lt;/b&gt;&lt;p&gt;Stampa la preview del testo di help mostrato.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="975" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="973" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="981" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="979" />
       <source>Send Page Link</source>
       <translation type="unfinished">Invia collegamento pagina</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="982" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="988" />
       <source>Send the link of the current page via email</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="985" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="991" />
       <source>&lt;b&gt;Send Page Link&lt;/b&gt;&lt;p&gt;Send the link of the current page via email.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="994" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1000" />
       <source>Close</source>
       <translation type="unfinished">Chiudi</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="996" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1002" />
       <source>&amp;Close</source>
       <translation type="unfinished">&amp;Chiudi</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="997" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1003" />
       <source>Ctrl+W</source>
       <comment>File|Close</comment>
       <translation type="unfinished">Ctrl+W</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1002" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1008" />
       <source>Close the current help window</source>
       <translation type="unfinished">Chiudi l'attuale finestra di help</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1004" />
-      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1010" />
+      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1016" />
       <source>Close All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1011" />
-      <source>Close &amp;All</source>
-      <translation type="unfinished">Chiudi &amp;tutti</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1017" />
+      <source>Close &amp;All</source>
+      <translation type="unfinished">Chiudi &amp;tutti</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1023" />
       <source>Close all help windows</source>
       <translation type="unfinished">Chiudi tutte le finestre di help</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1019" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1025" />
       <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all web browser windows except the first one.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1028" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1034" />
       <source>Quit</source>
       <translation type="unfinished">Esci</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3319" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1030" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3325" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1036" />
       <source>&amp;Quit</source>
       <translation type="unfinished">&amp;Esci</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1031" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1037" />
       <source>Ctrl+Q</source>
       <comment>File|Quit</comment>
       <translation type="unfinished">Ctrl+Q</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1036" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1042" />
       <source>Quit the eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1038" />
-      <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1044" />
+      <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1050" />
       <source>Backward</source>
       <translation type="unfinished">Indietro</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1046" />
-      <source>&amp;Backward</source>
-      <translation type="unfinished">&amp;Indietro</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1047" />
-      <source>Alt+Left</source>
-      <comment>Go|Backward</comment>
-      <translation type="unfinished">Alt+Sinistra</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1052" />
+      <source>&amp;Backward</source>
+      <translation type="unfinished">&amp;Indietro</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1053" />
+      <source>Alt+Left</source>
+      <comment>Go|Backward</comment>
+      <translation type="unfinished">Alt+Sinistra</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1058" />
       <source>Move one screen backward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1054" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1060" />
       <source>&lt;b&gt;Backward&lt;/b&gt;&lt;p&gt;Moves one screen backward. If none is available, this action is disabled.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1064" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1070" />
       <source>Forward</source>
       <translation type="unfinished">Avanti</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1066" />
-      <source>&amp;Forward</source>
-      <translation type="unfinished">A&amp;vanti</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1067" />
-      <source>Alt+Right</source>
-      <comment>Go|Forward</comment>
-      <translation type="unfinished">Alt+Destra</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1072" />
+      <source>&amp;Forward</source>
+      <translation type="unfinished">A&amp;vanti</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1073" />
+      <source>Alt+Right</source>
+      <comment>Go|Forward</comment>
+      <translation type="unfinished">Alt+Destra</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1078" />
       <source>Move one screen forward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1074" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1080" />
       <source>&lt;b&gt;Forward&lt;/b&gt;&lt;p&gt;Moves one screen forward. If none is available, this action is disabled.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1084" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1090" />
       <source>Home</source>
       <translation type="unfinished">Home</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1086" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1092" />
       <source>&amp;Home</source>
       <translation type="unfinished">&amp;Home</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1087" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1093" />
       <source>Ctrl+Home</source>
       <comment>Go|Home</comment>
       <translation type="unfinished">Ctrl+Home</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1092" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1098" />
       <source>Move to the initial screen</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1094" />
-      <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1100" />
+      <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1106" />
       <source>Reload</source>
       <translation type="unfinished">Ricarica</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1102" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1108" />
       <source>&amp;Reload</source>
       <translation type="unfinished">&amp;Ricarica</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1103" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1109" />
       <source>Ctrl+R</source>
       <comment>Go|Reload</comment>
       <translation type="unfinished">Ctrl+R</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1104" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1110" />
       <source>F5</source>
       <comment>Go|Reload</comment>
       <translation type="unfinished">F5</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1108" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1114" />
       <source>Reload the current screen</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1110" />
-      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1116" />
+      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1122" />
       <source>Stop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1118" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1124" />
       <source>&amp;Stop</source>
       <translation type="unfinished">&amp;Stop</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1119" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1125" />
       <source>Ctrl+.</source>
       <comment>Go|Stop</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1120" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1126" />
       <source>Esc</source>
       <comment>Go|Stop</comment>
       <translation type="unfinished">Esc</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1124" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1130" />
       <source>Stop loading</source>
       <translation type="unfinished">Ferma caricamento</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1126" />
-      <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
-      <translation type="unfinished">&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Ferma il caricamento della linguetta corrente.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1132" />
+      <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Ferma il caricamento della linguetta corrente.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1138" />
       <source>Copy</source>
       <translation type="unfinished">Copia</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1134" />
-      <source>&amp;Copy</source>
-      <translation type="unfinished">&amp;Copia</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1135" />
-      <source>Ctrl+C</source>
-      <comment>Edit|Copy</comment>
-      <translation type="unfinished">Ctrl+C</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1140" />
+      <source>&amp;Copy</source>
+      <translation type="unfinished">&amp;Copia</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1141" />
+      <source>Ctrl+C</source>
+      <comment>Edit|Copy</comment>
+      <translation type="unfinished">Ctrl+C</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1146" />
       <source>Copy the selected text</source>
       <translation type="unfinished">Copia il testo selezionato</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1142" />
-      <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="../WebBrowser/WebBrowserWindow.py" line="1148" />
+      <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="../WebBrowser/WebBrowserWindow.py" line="1154" />
       <source>Cut</source>
       <translation type="unfinished">Taglia</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1150" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1156" />
       <source>Cu&amp;t</source>
       <translation type="unfinished">&amp;Taglia</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1151" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1157" />
       <source>Ctrl+X</source>
       <comment>Edit|Cut</comment>
       <translation type="unfinished">Ctrl+X</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1156" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1162" />
       <source>Cut the selected text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1158" />
-      <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" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1164" />
+      <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" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1170" />
       <source>Paste</source>
       <translation type="unfinished">Incolla</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1166" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1172" />
       <source>&amp;Paste</source>
       <translation type="unfinished">&amp;Incolla</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1167" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1173" />
       <source>Ctrl+V</source>
       <comment>Edit|Paste</comment>
       <translation type="unfinished">Ctrl+V</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1172" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1178" />
       <source>Paste text from the clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1174" />
-      <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1180" />
+      <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1186" />
       <source>Undo</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1182" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1188" />
       <source>&amp;Undo</source>
       <translation type="unfinished">&amp;Undo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1183" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1189" />
       <source>Ctrl+Z</source>
       <comment>Edit|Undo</comment>
       <translation type="unfinished">Ctrl+Z</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1188" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1194" />
       <source>Undo the last edit action</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1190" />
-      <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1196" />
+      <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1202" />
       <source>Redo</source>
       <translation type="unfinished">Rifai</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1198" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1204" />
       <source>&amp;Redo</source>
       <translation type="unfinished">&amp;Rifai</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1199" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1205" />
       <source>Ctrl+Shift+Z</source>
       <comment>Edit|Redo</comment>
       <translation type="unfinished">Ctrl+Shift+Z</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1204" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1210" />
       <source>Redo the last edit action</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1206" />
-      <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1212" />
+      <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1218" />
       <source>Select All</source>
       <translation type="unfinished">Seleziona tutti</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1214" />
-      <source>&amp;Select All</source>
-      <translation type="unfinished">&amp;Seleziona tutto</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1215" />
-      <source>Ctrl+A</source>
-      <comment>Edit|Select All</comment>
-      <translation type="unfinished">Ctrl+A</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1220" />
+      <source>&amp;Select All</source>
+      <translation type="unfinished">&amp;Seleziona tutto</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1221" />
+      <source>Ctrl+A</source>
+      <comment>Edit|Select All</comment>
+      <translation type="unfinished">Ctrl+A</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1226" />
       <source>Select all text</source>
       <translation type="unfinished">Seleziona tutto il testo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1222" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1228" />
       <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current browser.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1232" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1231" />
-      <source>Unselect</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1233" />
-      <source>Alt+Ctrl+A</source>
-      <comment>Edit|Unselect</comment>
-      <translation type="unfinished">Alt+Ctrl+A</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1238" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1237" />
+      <source>Unselect</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1239" />
+      <source>Alt+Ctrl+A</source>
+      <comment>Edit|Unselect</comment>
+      <translation type="unfinished">Alt+Ctrl+A</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1244" />
       <source>Clear current selection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1240" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1246" />
       <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1249" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1255" />
       <source>Find...</source>
       <translation type="unfinished">Trova...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1251" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1257" />
       <source>&amp;Find...</source>
       <translation type="unfinished">&amp;Trova...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1252" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1258" />
       <source>Ctrl+F</source>
       <comment>Edit|Find</comment>
       <translation type="unfinished">Ctrl+F</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1257" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1263" />
       <source>Find text in page</source>
       <translation type="unfinished">Trova testo nella pagina</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1259" />
-      <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
-      <translation type="unfinished">&lt;b&gt;Trova&lt;/b&gt;&lt;p&gt;Trova il testo nella pagina corrente.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1265" />
+      <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;b&gt;Trova&lt;/b&gt;&lt;p&gt;Trova il testo nella pagina corrente.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1271" />
       <source>Find next</source>
       <translation type="unfinished">Trova successivo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1267" />
-      <source>Find &amp;next</source>
-      <translation type="unfinished">Trova &amp;successivo</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1268" />
-      <source>F3</source>
-      <comment>Edit|Find next</comment>
-      <translation type="unfinished">F3</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1273" />
+      <source>Find &amp;next</source>
+      <translation type="unfinished">Trova &amp;successivo</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1274" />
+      <source>F3</source>
+      <comment>Edit|Find next</comment>
+      <translation type="unfinished">F3</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1279" />
       <source>Find next occurrence of text in page</source>
       <translation type="unfinished">Trova la prossima ricorrenza del testo nella pagina</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1275" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1281" />
       <source>&lt;b&gt;Find next&lt;/b&gt;&lt;p&gt;Find the next occurrence of text in the current page.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Trova prossimo&lt;/b&gt;&lt;p&gt;Trova la prossima ricorrenza del testo nella pagina corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1284" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1290" />
       <source>Find previous</source>
       <translation type="unfinished">Trova precedente</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1286" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1292" />
       <source>Find &amp;previous</source>
       <translation type="unfinished">Trova &amp;precedente</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1287" />
-      <source>Shift+F3</source>
-      <comment>Edit|Find previous</comment>
-      <translation type="unfinished">Shift+F3</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1293" />
+      <source>Shift+F3</source>
+      <comment>Edit|Find previous</comment>
+      <translation type="unfinished">Shift+F3</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1299" />
       <source>Find previous occurrence of text in page</source>
       <translation type="unfinished">Trova la precedente ricorrenza del testo nella pagina</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1296" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1302" />
       <source>&lt;b&gt;Find previous&lt;/b&gt;&lt;p&gt;Find the previous occurrence of text in the current page.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Trova precedente&lt;/b&gt;&lt;p&gt;Trova la precedente ricorrenza del testo nella pagina corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1306" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1312" />
       <source>Manage Bookmarks</source>
       <translation type="unfinished">Gestisci segnalibri</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1307" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1313" />
       <source>&amp;Manage Bookmarks...</source>
       <translation type="unfinished">&amp;Gestisci segnalibri...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1308" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1314" />
       <source>Ctrl+Shift+B</source>
       <comment>Help|Manage bookmarks</comment>
       <translation type="unfinished">Ctrl+Shift+B</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1314" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1320" />
       <source>Open a dialog to manage the bookmarks.</source>
       <translation type="unfinished">Apri un dialogo per gestire i segnalibri.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1317" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1323" />
       <source>&lt;b&gt;Manage Bookmarks...&lt;/b&gt;&lt;p&gt;Open a dialog to manage the bookmarks.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Gestisci segnalibri...&lt;/b&gt;&lt;p&gt;Apri un dialogo per gestire i segnalibri.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1326" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1332" />
       <source>Add Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1328" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1334" />
       <source>Add &amp;Bookmark...</source>
       <translation type="unfinished">&amp;Aggiungi segnalibro...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1329" />
-      <source>Ctrl+D</source>
-      <comment>Help|Add bookmark</comment>
-      <translation type="unfinished">Ctrl+D</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1335" />
+      <source>Ctrl+D</source>
+      <comment>Help|Add bookmark</comment>
+      <translation type="unfinished">Ctrl+D</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1341" />
       <source>Open a dialog to add a bookmark.</source>
       <translation type="unfinished">Apri un dialogo per aggiungere un segnalibro.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1337" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1343" />
       <source>&lt;b&gt;Add Bookmark&lt;/b&gt;&lt;p&gt;Open a dialog to add the current URL as a bookmark.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Aggiungi segnalibro&lt;/b&gt;&lt;p&gt;Apri un dialogo per aggiungere l'URL corrente come segnalibro.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1346" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1352" />
       <source>Add Folder</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1347" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1353" />
       <source>Add &amp;Folder...</source>
       <translation type="unfinished">Aggiungi &amp;Cartella...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1354" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1360" />
       <source>Open a dialog to add a new bookmarks folder.</source>
       <translation type="unfinished">Apri un dialogo per aggiungere una nuova cartella di segnalibri.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1357" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1363" />
       <source>&lt;b&gt;Add Folder...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Aggiungi cartella...&lt;/b&gt;&lt;p&gt;Apri un dialogo per aggiungere una nuova cartella di segnalibri.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1366" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1372" />
       <source>Bookmark All Tabs</source>
       <translation type="unfinished">Aggiungi ai segnalibri tutte le linguette</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1367" />
-      <source>Bookmark All Tabs...</source>
-      <translation type="unfinished">Aggiungi ai segnalibri tutte le linguette...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1373" />
+      <source>Bookmark All Tabs...</source>
+      <translation type="unfinished">Aggiungi ai segnalibri tutte le linguette...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1379" />
       <source>Bookmark all open tabs.</source>
       <translation type="unfinished">Aggiungi ai segnalibri tutte lelinguette aperte.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1375" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1381" />
       <source>&lt;b&gt;Bookmark All Tabs...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder for all open tabs.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Aggiungi ai segnalibri tutte le linguette...&lt;/b&gt;&lt;p&gt;Apri un dialogo per aggiungere ai segnalibri tutte le linguette aperte.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1385" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1391" />
       <source>What's This?</source>
       <translation type="unfinished">Cos'è questo ?</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1387" />
-      <source>&amp;What's This?</source>
-      <translation type="unfinished">C&amp;os'è Questo ?</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1388" />
-      <source>Shift+F1</source>
-      <comment>Help|What's This?'</comment>
-      <translation type="unfinished">Shift+F1</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1393" />
+      <source>&amp;What's This?</source>
+      <translation type="unfinished">C&amp;os'è Questo ?</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1394" />
+      <source>Shift+F1</source>
+      <comment>Help|What's This?'</comment>
+      <translation type="unfinished">Shift+F1</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1399" />
       <source>Context sensitive help</source>
       <translation type="unfinished">Help sensibile al contesto</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1395" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1401" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1408" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1414" />
       <source>About</source>
       <translation type="unfinished">About</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1408" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1414" />
       <source>&amp;About</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1410" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1416" />
       <source>Display information about this software</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1412" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1418" />
       <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="../WebBrowser/WebBrowserWindow.py" line="1421" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1427" />
       <source>About Qt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1422" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1428" />
       <source>About &amp;Qt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1429" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1435" />
       <source>Display information about the Qt toolkit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1432" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1438" />
       <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" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1441" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1447" />
       <source>Zoom in</source>
       <translation type="unfinished">Ingrandisci</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1443" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1449" />
       <source>Zoom &amp;in</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1444" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1450" />
       <source>Ctrl++</source>
       <comment>View|Zoom in</comment>
       <translation type="unfinished">Ctrl++</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1445" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1451" />
       <source>Zoom In</source>
       <comment>View|Zoom in</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1449" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1455" />
       <source>Zoom in on the web page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1451" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1457" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the web page. This makes the web page bigger.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1461" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1467" />
       <source>Zoom out</source>
       <translation type="unfinished">Riduci</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1463" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1469" />
       <source>Zoom &amp;out</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1464" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1470" />
       <source>Ctrl+-</source>
       <comment>View|Zoom out</comment>
       <translation type="unfinished">Ctrl+-</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1465" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1471" />
       <source>Zoom Out</source>
       <comment>View|Zoom out</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1469" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1475" />
       <source>Zoom out on the web page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1471" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1477" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the web page. This makes the web page smaller.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1481" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1487" />
       <source>Zoom reset</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1483" />
-      <source>Zoom &amp;reset</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1484" />
-      <source>Ctrl+0</source>
-      <comment>View|Zoom reset</comment>
-      <translation type="unfinished">Ctrl+0</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1489" />
+      <source>Zoom &amp;reset</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1490" />
+      <source>Ctrl+0</source>
+      <comment>View|Zoom reset</comment>
+      <translation type="unfinished">Ctrl+0</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1495" />
       <source>Reset the zoom of the web page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1491" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1497" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the web page. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1502" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1501" />
-      <source>Show page source</source>
-      <translation type="unfinished">Mostra sorgente pagina</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1503" />
-      <source>Ctrl+U</source>
-      <translation type="unfinished">Ctrl+U</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1508" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1507" />
+      <source>Show page source</source>
+      <translation type="unfinished">Mostra sorgente pagina</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1509" />
+      <source>Ctrl+U</source>
+      <translation type="unfinished">Ctrl+U</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1514" />
       <source>Show the page source in an editor</source>
       <translation type="unfinished">Mostra il sorgente della pagina in un editor</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1510" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1516" />
       <source>&lt;b&gt;Show page source&lt;/b&gt;&lt;p&gt;Show the page source in an editor.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Mostra sorgente pagina&lt;/b&gt;&lt;p&gt;Mostra il sorgente della pagina nell'editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1520" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1526" />
       <source>Full Screen</source>
       <translation type="unfinished">Tutto schermo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1522" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1528" />
       <source>&amp;Full Screen</source>
       <translation type="unfinished">&amp;Tutto schermo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1529" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1535" />
       <source>Meta+Ctrl+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1531" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1537" />
       <source>F11</source>
       <translation type="unfinished">F11</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1538" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1537" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1544" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1543" />
       <source>Show next tab</source>
       <translation type="unfinished">Mostra linguetta successiva</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1539" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1545" />
       <source>Ctrl+Alt+Tab</source>
       <translation type="unfinished">Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1550" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1549" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1556" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1555" />
       <source>Show previous tab</source>
       <translation type="unfinished">Mostra la linguetta precedente</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1551" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1557" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation type="unfinished">Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1562" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1561" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1568" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1567" />
       <source>Switch between tabs</source>
       <translation type="unfinished">Cicla tra le linguette</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1563" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1569" />
       <source>Ctrl+1</source>
       <translation type="unfinished">Ctrl+1</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1573" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1579" />
       <source>Preferences</source>
       <translation type="unfinished">Preferenze</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1575" />
-      <source>&amp;Preferences...</source>
-      <translation type="unfinished">&amp;Preferenze...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1581" />
+      <source>&amp;Preferences...</source>
+      <translation type="unfinished">&amp;Preferenze...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1587" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished">Imposta la configurazione preferita</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1583" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1589" />
       <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">&lt;b&gt;Preferenze&lt;/b&gt;&lt;p&gt;Imposta i valori di configurazione dell'applicazione ai valori preferiti&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1593" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1599" />
       <source>Languages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1595" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1601" />
       <source>&amp;Languages...</source>
       <translation type="unfinished">&amp;Lingue...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1602" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1608" />
       <source>Configure the accepted languages for web pages</source>
       <translation type="unfinished">Configura le lingue accettare per le pagine web</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1605" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1611" />
       <source>&lt;b&gt;Languages&lt;/b&gt;&lt;p&gt;Configure the accepted languages for web pages.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Lingue&lt;/b&gt;&lt;p&gt;Configura le lingue accettare per le pagine web.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1614" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1620" />
       <source>Cookies</source>
       <translation type="unfinished">Cookies</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1616" />
-      <source>C&amp;ookies...</source>
-      <translation type="unfinished">C&amp;ookie...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1622" />
+      <source>C&amp;ookies...</source>
+      <translation type="unfinished">C&amp;ookie...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1628" />
       <source>Configure cookies handling</source>
       <translation type="unfinished">Configura la gestione dei cookie</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1624" />
-      <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
-      <translation type="unfinished">&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configura la gestione dei cookie.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1630" />
+      <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configura la gestione dei cookie.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1636" />
       <source>Personal Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1632" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1638" />
       <source>Personal Information...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1639" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1645" />
       <source>Configure personal information for completing form fields</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1642" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1648" />
       <source>&lt;b&gt;Personal Information...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the personal information used for completing form fields.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1652" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1658" />
       <source>GreaseMonkey Scripts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1654" />
-      <source>GreaseMonkey Scripts...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1660" />
+      <source>GreaseMonkey Scripts...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1666" />
       <source>Configure the GreaseMonkey Scripts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1662" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1668" />
       <source>&lt;b&gt;GreaseMonkey Scripts...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available GreaseMonkey Scripts.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1672" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1678" />
       <source>Edit Message Filters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1674" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1680" />
       <source>Edit Message Filters...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1681" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1687" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1684" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1690" />
       <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1695" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1701" />
       <source>Edit HTML5 Feature Permissions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1697" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1703" />
       <source>Edit HTML5 Feature Permissions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1704" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1710" />
       <source>Edit the remembered HTML5 feature permissions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1707" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1713" />
       <source>&lt;b&gt;Edit HTML5 Feature Permissions&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the remembered HTML5 feature permissions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1720" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1718" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1726" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1724" />
       <source>Sync with Table of Contents</source>
       <translation type="unfinished">Sincronizza con l'indice</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1733" />
       <source>Synchronizes the table of contents with current page</source>
       <translation type="unfinished">Sincronizza l'indice con il contenuto della pagina attuale</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1730" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1736" />
       <source>&lt;b&gt;Sync with Table of Contents&lt;/b&gt;&lt;p&gt;Synchronizes the table of contents with current page.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Sincronizza con l'indice&lt;/b&gt;&lt;p&gt;Sincronizza l'indice con il contenuto della pagina attuale.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1741" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1740" />
-      <source>Table of Contents</source>
-      <translation type="unfinished">Indice dei contenuti</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1747" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1746" />
+      <source>Table of Contents</source>
+      <translation type="unfinished">Indice dei contenuti</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1753" />
       <source>Shows the table of contents window</source>
       <translation type="unfinished">Mostra la finestra dell'indice dei contenuti</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1749" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1755" />
       <source>&lt;b&gt;Table of Contents&lt;/b&gt;&lt;p&gt;Shows the table of contents window.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Indice dei contenuti&lt;/b&gt;&lt;p&gt;Mostra la finestra dell'indice dei contenuti.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1760" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1766" />
       <source>Shows the index window</source>
       <translation type="unfinished">Mostra la finestra dell'indice</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1762" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1768" />
       <source>&lt;b&gt;Index&lt;/b&gt;&lt;p&gt;Shows the index window.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Indice&lt;/b&gt;&lt;p&gt;Mostra la finestra dell'indice.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1781" />
       <source>Shows the search window</source>
       <translation type="unfinished">Mostra la finestra di ricerca</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1777" />
-      <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
-      <translation type="unfinished">&lt;b&gt;Cerca&lt;/b&gt;&lt;p&gt;Mostra la finestra di ricerca&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1783" />
+      <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;b&gt;Cerca&lt;/b&gt;&lt;p&gt;Mostra la finestra di ricerca&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1789" />
       <source>Manage QtHelp Documents</source>
       <translation type="unfinished">Gestisci i documenti QtHelp</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1784" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1790" />
       <source>Manage QtHelp &amp;Documents</source>
       <translation type="unfinished">Gestisci i &amp;Documenti QtHelp</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1791" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1797" />
       <source>Shows a dialog to manage the QtHelp documentation set</source>
       <translation type="unfinished">Mostra un dialogo per gestire i documenti QtHelp</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1794" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1800" />
       <source>&lt;b&gt;Manage QtHelp Documents&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the QtHelp documentation set.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Gestisci i documenti QtHelp&lt;/b&gt;&lt;p&gt;Mostra un dialogo per gestire i documenti QtHelp.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1804" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1810" />
       <source>Reindex Documentation</source>
       <translation type="unfinished">Reindicizza la documentazione</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1805" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1811" />
       <source>&amp;Reindex Documentation</source>
       <translation type="unfinished">&amp;Reindicizza la documentazione</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1812" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1818" />
       <source>Reindexes the documentation set</source>
       <translation type="unfinished">Reindicizza l'insieme della documentazione</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1815" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1821" />
       <source>&lt;b&gt;Reindex Documentation&lt;/b&gt;&lt;p&gt;Reindexes the documentation set.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Reindicizza la documentazione&lt;/b&gt;&lt;p&gt;Reindicizza l'insieme della documentazione&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1840" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1834" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1828" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1826" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1832" />
       <source>Clear private data</source>
       <translation type="unfinished">Pulisci dati privati</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1836" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1842" />
       <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like browsing history, search history or the favicons database.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Pulisci dati privati&lt;/b&gt;&lt;p&gt;Pulische i dati privati come la cronologia di navigazione, cronologia ricerche o il database delle favicon.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1846" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1852" />
       <source>Clear icons database</source>
       <translation type="unfinished">Pulisci il database delle icone</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1847" />
-      <source>Clear &amp;icons database</source>
-      <translation type="unfinished">Pulisci database delle &amp;icone</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1853" />
+      <source>Clear &amp;icons database</source>
+      <translation type="unfinished">Pulisci database delle &amp;icone</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1859" />
       <source>Clear the database of favicons</source>
       <translation type="unfinished">Pulisci il database delle favicone</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1855" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1861" />
       <source>&lt;b&gt;Clear icons database&lt;/b&gt;&lt;p&gt;Clears the database of favicons of previously visited URLs.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Pulisci il database delle icone&lt;/b&gt;&lt;p&gt;Pulisci il databse delle favicons dei siti visitati precedentemente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1867" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1865" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1873" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1871" />
       <source>Manage Saved Favicons</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1874" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1880" />
       <source>Show a dialog to manage the saved favicons</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1877" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1883" />
       <source>&lt;b&gt;Manage Saved Favicons&lt;/b&gt;&lt;p&gt;This shows a dialog to manage the saved favicons of previously visited URLs.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1887" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1893" />
       <source>Configure Search Engines</source>
       <translation type="unfinished">Configura motori di ricerca</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1888" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1894" />
       <source>Configure Search &amp;Engines...</source>
       <translation type="unfinished">Configura motori di &amp;ricerca...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1895" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1901" />
       <source>Configure the available search engines</source>
       <translation type="unfinished">Configura i motori di ricerca disponibili</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1898" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1904" />
       <source>&lt;b&gt;Configure Search Engines...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available search engines.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Configura motori di ricerca...&lt;/b&gt;&lt;p&gt;Apri un dialogo per configurare i motori di ricerca disponibi.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1908" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1914" />
       <source>Manage Saved Passwords</source>
       <translation type="unfinished">Gestisci password salvate</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1910" />
-      <source>Manage Saved Passwords...</source>
-      <translation type="unfinished">Gestisci password salvate...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1916" />
+      <source>Manage Saved Passwords...</source>
+      <translation type="unfinished">Gestisci password salvate...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1922" />
       <source>Manage the saved passwords</source>
       <translation type="unfinished">Gestisci le password salvate</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1918" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1924" />
       <source>&lt;b&gt;Manage Saved Passwords...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved passwords.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Gestisci password salvate...&lt;/b&gt;&lt;p&gt;Apre un dialogo per gestire le password salvate.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1927" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1933" />
       <source>Ad Block</source>
       <translation type="unfinished">Ad Block</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1929" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1935" />
       <source>&amp;Ad Block...</source>
       <translation type="unfinished">&amp;Ad Block...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1936" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1942" />
       <source>Configure AdBlock subscriptions and rules</source>
       <translation type="unfinished">Configura le regole di sottoscrizione di AdBlock</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1939" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1945" />
       <source>&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure AdBlock subscriptions and rules.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Apre un dialogo per configurare le regole di sottoscrizione di AdBlock.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1949" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1955" />
       <source>Manage SSL Certificate Errors</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1951" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1957" />
       <source>Manage SSL Certificate Errors...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1958" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1964" />
       <source>Manage the accepted SSL certificate Errors</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1961" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1967" />
       <source>&lt;b&gt;Manage SSL Certificate Errors...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the accepted SSL certificate errors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1971" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1977" />
       <source>Manage Safe Browsing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1973" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1979" />
       <source>Manage Safe Browsing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1980" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1986" />
       <source>Configure Safe Browsing and manage local cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1983" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1989" />
       <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1994" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1993" />
-      <source>Downloads</source>
-      <translation type="unfinished">Downloads</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2000" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1999" />
+      <source>Downloads</source>
+      <translation type="unfinished">Downloads</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2006" />
       <source>Shows the downloads window</source>
       <translation type="unfinished">Mostra la finestra dei download</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2002" />
-      <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
-      <translation type="unfinished">&lt;b&gt;Download&lt;/b&gt;&lt;p&gt;Mostra la finestra dei download.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2008" />
+      <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;b&gt;Download&lt;/b&gt;&lt;p&gt;Mostra la finestra dei download.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2014" />
       <source>RSS Feeds Dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2010" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2016" />
       <source>&amp;RSS Feeds Dialog...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2011" />
-      <source>Ctrl+Shift+F</source>
-      <comment>Help|RSS Feeds Dialog</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2017" />
+      <source>Ctrl+Shift+F</source>
+      <comment>Help|RSS Feeds Dialog</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2023" />
       <source>Open a dialog showing the configured RSS feeds.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2020" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2026" />
       <source>&lt;b&gt;RSS Feeds Dialog...&lt;/b&gt;&lt;p&gt;Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2031" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2037" />
       <source>Siteinfo Dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2033" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2039" />
       <source>&amp;Siteinfo Dialog...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2034" />
-      <source>Ctrl+Shift+I</source>
-      <comment>Help|Siteinfo Dialog</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2040" />
+      <source>Ctrl+Shift+I</source>
+      <comment>Help|Siteinfo Dialog</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2046" />
       <source>Open a dialog showing some information about the current site.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2043" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2049" />
       <source>&lt;b&gt;Siteinfo Dialog...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the current site.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2053" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2059" />
       <source>Manage User Agent Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2054" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2060" />
       <source>Manage &amp;User Agent Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2061" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2067" />
       <source>Shows a dialog to manage the User Agent settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2064" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2070" />
       <source>&lt;b&gt;Manage User Agent Settings&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the User Agent settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2073" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2079" />
       <source>Synchronize data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2075" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2081" />
       <source>&amp;Synchronize Data...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2082" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2088" />
       <source>Shows a dialog to synchronize data via the network</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2085" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2091" />
       <source>&lt;b&gt;Synchronize Data...&lt;/b&gt;&lt;p&gt;This shows a dialog to synchronize data via the network.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2095" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2101" />
       <source>Manage Saved Zoom Values</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2097" />
-      <source>Manage Saved Zoom Values...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2103" />
+      <source>Manage Saved Zoom Values...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2109" />
       <source>Manage the saved zoom values</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2105" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2111" />
       <source>&lt;b&gt;Manage Saved Zoom Values...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved zoom values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2122" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2128" />
       <source>Toggle the JavaScript console window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2125" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2131" />
       <source>&lt;b&gt;JavaScript Console&lt;/b&gt;&lt;p&gt;This toggles the JavaScript console window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2135" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2134" />
-      <source>Tab Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2141" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2140" />
+      <source>Tab Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2147" />
       <source>Shows the tab manager window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2143" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2149" />
       <source>&lt;b&gt;Tab Manager&lt;/b&gt;&lt;p&gt;Shows the tab manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2151" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2157" />
       <source>Session Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2152" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2158" />
       <source>Session Manager...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2159" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2165" />
       <source>Shows the session manager window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2162" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2168" />
       <source>&lt;b&gt;Session Manager&lt;/b&gt;&lt;p&gt;Shows the session manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2173" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2171" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2179" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2177" />
       <source>Scan current site</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5180" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5170" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2187" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2185" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5185" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5175" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2193" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2191" />
       <source>IP Address Report</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5194" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2199" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2197" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5199" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2205" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2203" />
       <source>Domain Report</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2217" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2223" />
       <source>Keyboard Shortcuts</source>
       <translation type="unfinished">Scorciatoie da tastiera</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2219" />
-      <source>Keyboard &amp;Shortcuts...</source>
-      <translation type="unfinished">&amp;Scorciatoie da tastiera...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2225" />
+      <source>Keyboard &amp;Shortcuts...</source>
+      <translation type="unfinished">&amp;Scorciatoie da tastiera...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2231" />
       <source>Set the keyboard shortcuts</source>
       <translation type="unfinished">Imposta le scorciatoie da tastiera</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2227" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2233" />
       <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">&lt;b&gt;Scorciatoie da tastiera&lt;/b&gt;&lt;p&gt;Imposta le scorciatoie da tastiera dell'applicazione con i valori personalizzati.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5600" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5581" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2237" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5605" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5586" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2243" />
       <source>Export Keyboard Shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2239" />
-      <source>&amp;Export Keyboard Shortcuts...</source>
-      <translation type="unfinished">&amp;Esporta scorciatoie da tastiera...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2245" />
+      <source>&amp;Export Keyboard Shortcuts...</source>
+      <translation type="unfinished">&amp;Esporta scorciatoie da tastiera...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2251" />
       <source>Export the keyboard shortcuts</source>
       <translation type="unfinished">Esporta le scorciatoie da tastiera</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2247" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2253" />
       <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">&lt;b&gt;Esporta scorciatoie da tastiera&lt;/b&gt;&lt;p&gt;Esporta le scorciatoie da tastiera dell'applicazione.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5620" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2256" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5625" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2262" />
       <source>Import Keyboard Shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2258" />
-      <source>&amp;Import Keyboard Shortcuts...</source>
-      <translation type="unfinished">&amp;Importa scorciatoie da tastiera...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2264" />
+      <source>&amp;Import Keyboard Shortcuts...</source>
+      <translation type="unfinished">&amp;Importa scorciatoie da tastiera...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2270" />
       <source>Import the keyboard shortcuts</source>
       <translation type="unfinished">Importa le scorciatoie da tastiera</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2266" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2272" />
       <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">&lt;b&gt;Importa scorciatoie da tastiera&lt;/b&gt;&lt;p&gt;Importa le scorciatoie da tastiera dell'applicazione.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2275" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2281" />
       <source>Protocol Handler Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2276" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2282" />
       <source>Protocol Handler Manager...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2283" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2289" />
       <source>Shows the protocol handler manager window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2286" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2292" />
       <source>&lt;b&gt;Protocol Handler Manager&lt;/b&gt;&lt;p&gt;Shows the protocol handler manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2330" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2336" />
       <source>&amp;File</source>
       <translation type="unfinished">&amp;File</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2524" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2338" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2530" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2344" />
       <source>Sessions</source>
       <translation type="unfinished">Sessioni</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2362" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2368" />
       <source>&amp;Edit</source>
       <translation type="unfinished">&amp;Edita</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2596" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2378" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2602" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2384" />
       <source>&amp;View</source>
       <translation type="unfinished">&amp;Visualizza</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2389" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2395" />
       <source>Text Encoding</source>
       <translation type="unfinished">Codifica testo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2398" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2404" />
       <source>H&amp;istory</source>
       <translation type="unfinished">Cronolog&amp;ia</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2414" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2420" />
       <source>&amp;Bookmarks</source>
       <translation type="unfinished">Segnali&amp;bri</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2430" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2436" />
       <source>&amp;Settings</source>
       <translation type="unfinished">Impo&amp;stazioni</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2460" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2466" />
       <source>Global User Agent</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2627" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2472" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2633" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2478" />
       <source>&amp;Tools</source>
       <translation type="unfinished">&amp;Tools</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2634" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2479" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2640" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2485" />
       <source>&amp;VirusTotal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2598" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2485" />
-      <source>&amp;Windows</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2604" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2491" />
+      <source>&amp;Windows</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2610" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2497" />
       <source>QtHelp</source>
       <translation type="unfinished">QtHelp</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2496" />
-      <source>&amp;Toolbars</source>
-      <translation type="unfinished">&amp;Toolbar</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2502" />
+      <source>&amp;Toolbars</source>
+      <translation type="unfinished">&amp;Toolbar</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2508" />
       <source>&amp;Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2531" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2537" />
       <source>Save</source>
       <translation type="unfinished">Salva</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2551" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2557" />
       <source>Show All History...</source>
       <translation type="unfinished">Mostra tutta la cronologia...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2721" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2558" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2564" />
       <source>Settings</source>
       <translation type="unfinished">Impostazioni</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2652" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2658" />
       <source>File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2676" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2682" />
       <source>Edit</source>
       <translation type="unfinished">Modifica</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2688" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2694" />
       <source>View</source>
       <translation type="unfinished">Visualizza</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2697" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2703" />
       <source>Find</source>
       <translation type="unfinished">Trova</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2705" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2711" />
       <source>Filter</source>
       <translation type="unfinished">Filtro</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2712" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2718" />
       <source>Filtered by: </source>
       <translation type="unfinished">Filtrato per:</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2732" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2738" />
       <source>Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2740" />
-      <source>Help</source>
-      <translation type="unfinished">Aiuto</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2746" />
+      <source>Help</source>
+      <translation type="unfinished">Aiuto</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2752" />
       <source>VirusTotal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2890" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2896" />
       <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Non posso avviare il processo.&lt;br&gt;Assicurarsi sia disponibile come &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2894" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2900" />
       <source>OK</source>
       <translation type="unfinished">OK</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2929" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2906" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2935" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2912" />
       <source>HTML Files (*.html *.htm *.mhtml *.mht);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2977" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2983" />
       <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chromium {2} with Security Patches {3}.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2992" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2998" />
       <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chromium {2}.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3127" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3133" />
       <source>Saved Tabs</source>
       <translation type="unfinished">Salva Linguette</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3310" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3316" />
       <source>Are you sure you want to close the web browser?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3311" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3317" />
       <source>Are you sure you want to close the web browser?
 You have {0} windows with {1} tabs open.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3910" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3916" />
       <source>Could not find any associated content.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3956" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3962" />
       <source>Unfiltered</source>
       <translation type="unfinished">Non filtrato</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4012" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4018" />
       <source>Updating search index</source>
       <translation type="unfinished">Aggiornamento indice di ricerca</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4088" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4094" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished">Ricerca documentazione...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4121" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4127" />
       <source>Help Engine</source>
       <translation type="unfinished">Motore di help</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4717" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4722" />
       <source>System</source>
       <translation type="unfinished">Sistema</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4721" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4726" />
       <source>ISO</source>
       <translation type="unfinished">ISO</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4724" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4729" />
       <source>Unicode</source>
       <translation type="unfinished">Unicode</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4732" />
       <source>Windows</source>
       <translation type="unfinished">Windows</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4730" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4735" />
       <source>IBM</source>
       <translation type="unfinished">IBM</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4733" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4738" />
       <source>Apple</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4736" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4741" />
       <source>Other</source>
       <translation type="unfinished">Altro</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4763" />
-      <source>Menu Bar</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="4768" />
-      <source>Bookmarks</source>
-      <translation type="unfinished">Segnalibri</translation>
+      <source>Menu Bar</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="4773" />
+      <source>Bookmarks</source>
+      <translation type="unfinished">Segnalibri</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4778" />
       <source>Status Bar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4788" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4793" />
       <source>&amp;Show all</source>
       <translation type="unfinished">Mo&amp;stra tutti</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4790" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4795" />
       <source>&amp;Hide all</source>
       <translation type="unfinished">Nascondi &amp;tutti</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5136" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5141" />
       <source>VirusTotal Scan</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5137" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5142" />
       <source>&lt;p&gt;The VirusTotal scan could not be scheduled.&lt;p&gt;
 &lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5171" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5176" />
       <source>Enter a valid IPv4 address in dotted quad notation:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5181" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5186" />
       <source>The given IP address is not in dotted quad notation.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5195" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5200" />
       <source>Enter a valid domain name:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5622" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5583" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5627" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5588" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5601" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5606" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
--- a/src/eric7/i18n/eric7_pt.ts	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/i18n/eric7_pt.ts	Sun Jun 02 09:51:20 2024 +0200
@@ -1809,42 +1809,42 @@
       <translation>{0} sem configurar.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="217" />
+      <location filename="../Utilities/BackgroundService.py" line="230" />
       <source>Initialization of Background Service</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="218" />
-      <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="231" />
+      <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="244" />
       <source>Restart background client?</source>
       <translation>Reiniciar cliente de fundo?</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="232" />
+      <location filename="../Utilities/BackgroundService.py" line="245" />
       <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It's used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Yes'&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Retry'&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'No'&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
       <translation>&lt;p&gt;O cliente de fundo para &lt;b&gt;{0}&lt;/b&gt; parou devido a uma exceção. Usa-se por varios complementos tais como os diferentes verificadores.&lt;/p&gt;&lt;p&gt;Selecionar&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Sim'&lt;/b&gt; para reiniciar o cliente mas abandona o último trabalho&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Reintentar'&lt;/b&gt; para reiniciar o cliente e o último trabalho&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Não'&lt;/b&gt; para deixar o cliente apagado.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Nota: O cliente pode reiniciar-se abrindo e confirmando a caixa de diálogo de preferências ou recarregando/alterando o projeto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="261" />
+      <location filename="../Utilities/BackgroundService.py" line="274" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="502" />
+      <location filename="../Utilities/BackgroundService.py" line="515" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation type="unfinished">Cliente de fundo de Eric desconectou-se por motivo desconhecido.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="511" />
+      <location filename="../Utilities/BackgroundService.py" line="524" />
       <source>Background client disconnected.</source>
       <translation>Cliente de fundo desconectado.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="512" />
+      <location filename="../Utilities/BackgroundService.py" line="525" />
       <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
       <translation>Cliente de fundo para &lt;b&gt;{0}&lt;/b&gt; desconetou-se por um motivo desconhecido. &lt;br&gt;Deveria reiniciar-se?</translation>
     </message>
@@ -9377,665 +9377,665 @@
   <context>
     <name>DebugUI</name>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="210" />
+      <location filename="../Debugger/DebugUI.py" line="207" />
       <source>Notification</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2342" />
-      <location filename="../Debugger/DebugUI.py" line="237" />
+      <location filename="../Debugger/DebugUI.py" line="2339" />
+      <location filename="../Debugger/DebugUI.py" line="234" />
       <source>Run Script</source>
       <translation>Executar Script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="239" />
+      <location filename="../Debugger/DebugUI.py" line="236" />
       <source>&amp;Run Script...</source>
       <translation>&amp;Executar Script...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="245" />
+      <location filename="../Debugger/DebugUI.py" line="242" />
       <source>Run the current Script</source>
       <translation>Executar o Script atual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="247" />
+      <location filename="../Debugger/DebugUI.py" line="244" />
       <source>&lt;b&gt;Run Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Executar Script&lt;/b&gt;&lt;p&gt;Definir os argumentos da linha de comandos e executar o script fora do depurador. Poderão gravar-se primeiro as alterações que estejam por gravar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2348" />
-      <location filename="../Debugger/DebugUI.py" line="2342" />
-      <location filename="../Debugger/DebugUI.py" line="258" />
+      <location filename="../Debugger/DebugUI.py" line="2345" />
+      <location filename="../Debugger/DebugUI.py" line="2339" />
+      <location filename="../Debugger/DebugUI.py" line="255" />
       <source>Run Project</source>
       <translation>Executar Projeto</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="260" />
+      <location filename="../Debugger/DebugUI.py" line="257" />
       <source>Run &amp;Project...</source>
       <translation>Executar &amp;Projeto...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="266" />
+      <location filename="../Debugger/DebugUI.py" line="263" />
       <source>Run the current Project</source>
       <translation>Executar Projeto actual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="268" />
+      <location filename="../Debugger/DebugUI.py" line="265" />
       <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Executar Projeto&lt;/b&gt;&lt;p&gt;Definir os argumentos da linha de comandos e executar o projeto atual fora do depurador. Poderão gravar-se primeiro as alterações dos ficheiros do projeto que estejam por gravar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="280" />
+      <location filename="../Debugger/DebugUI.py" line="277" />
       <source>Coverage run of Script</source>
       <translation>Execução Cobertura de Script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="282" />
+      <location filename="../Debugger/DebugUI.py" line="279" />
       <source>Coverage run of Script...</source>
       <translation>Execução Cobertura de Script...</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="286" />
+      <source>Perform a coverage run of the current Script</source>
+      <translation>Realizar execução de cobertura do Script actual</translation>
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="289" />
-      <source>Perform a coverage run of the current Script</source>
-      <translation>Realizar execução de cobertura do Script actual</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="292" />
       <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="303" />
+      <location filename="../Debugger/DebugUI.py" line="300" />
       <source>Coverage run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="305" />
+      <location filename="../Debugger/DebugUI.py" line="302" />
       <source>Coverage run of Project...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="309" />
+      <source>Perform a coverage run of the current Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="312" />
-      <source>Perform a coverage run of the current Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="315" />
       <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="327" />
+      <location filename="../Debugger/DebugUI.py" line="324" />
       <source>Profile Script</source>
       <translation>Perfilar Script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="329" />
+      <location filename="../Debugger/DebugUI.py" line="326" />
       <source>Profile Script...</source>
       <translation>Perfilar Script...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="335" />
+      <location filename="../Debugger/DebugUI.py" line="332" />
       <source>Profile the current Script</source>
       <translation>Perfilar o Script atual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="337" />
+      <location filename="../Debugger/DebugUI.py" line="334" />
       <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Perfilar Script&lt;/b&gt;&lt;p&gt;Define os argumentos da linha de comandos e perfila o script. Antes, poderá gravar as alterações.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="347" />
+      <location filename="../Debugger/DebugUI.py" line="344" />
       <source>Profile Project</source>
       <translation>Perfilar Projeto</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="349" />
+      <location filename="../Debugger/DebugUI.py" line="346" />
       <source>Profile Project...</source>
       <translation>Perfilar Projeto...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="355" />
+      <location filename="../Debugger/DebugUI.py" line="352" />
       <source>Profile the current Project</source>
       <translation>Perfilar o Projeto atual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="357" />
+      <location filename="../Debugger/DebugUI.py" line="354" />
       <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Perfilar Projeto&lt;/b&gt;&lt;p&gt;Define os argumentos da linha de comandos e perfila o projeto atual. Poderá gravar antes os ficheiros alterados por gravar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2528" />
-      <location filename="../Debugger/DebugUI.py" line="368" />
+      <location filename="../Debugger/DebugUI.py" line="2525" />
+      <location filename="../Debugger/DebugUI.py" line="365" />
       <source>Debug Script</source>
       <translation>Depurar Script</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="370" />
+      <location filename="../Debugger/DebugUI.py" line="367" />
       <source>&amp;Debug Script...</source>
       <translation>&amp;Depurar Script...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="376" />
+      <location filename="../Debugger/DebugUI.py" line="373" />
       <source>Debug the current Script</source>
       <translation>Depurar o Script atual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="378" />
+      <location filename="../Debugger/DebugUI.py" line="375" />
       <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Depurar Script&lt;/b&gt;&lt;p&gt;Definir os argumentos da linha de comandos e definir a linha atual para que seja a primeira instrução Python executável da janela do editor atual. Poderão gravar-se primeiro as alterações que estejam por gravar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2534" />
-      <location filename="../Debugger/DebugUI.py" line="2528" />
-      <location filename="../Debugger/DebugUI.py" line="390" />
+      <location filename="../Debugger/DebugUI.py" line="2531" />
+      <location filename="../Debugger/DebugUI.py" line="2525" />
+      <location filename="../Debugger/DebugUI.py" line="387" />
       <source>Debug Project</source>
       <translation>Depurar projeto</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="392" />
+      <location filename="../Debugger/DebugUI.py" line="389" />
       <source>Debug &amp;Project...</source>
       <translation>Depurar &amp;Projeto...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="398" />
+      <location filename="../Debugger/DebugUI.py" line="395" />
       <source>Debug the current Project</source>
       <translation>Depurar o Projeto atual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="400" />
+      <location filename="../Debugger/DebugUI.py" line="397" />
       <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Depurar Projeto&lt;/b&gt;&lt;p&gt;Definir os argumentos da linha de comandos e definir a linha atual para que seja a primeira instrução Python executável do script principal do projeto atual. Poderão gravar-se primeiro as alterações dos ficheiros do projeto que estejam por gravar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="414" />
-      <location filename="../Debugger/DebugUI.py" line="412" />
+      <location filename="../Debugger/DebugUI.py" line="411" />
+      <location filename="../Debugger/DebugUI.py" line="409" />
       <source>Restart</source>
       <translation>Reiniciar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="420" />
+      <location filename="../Debugger/DebugUI.py" line="417" />
       <source>Restart the last debugged script</source>
       <translation>Reiniciar o último script depurado</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="422" />
+      <location filename="../Debugger/DebugUI.py" line="419" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Reiniciar&lt;/b&gt;&lt;p&gt;Define os argumentos da linha de comandos e define a linha atual como a primeira instrução Python executável do último script depurado. Poderão gravar-se primeiro as alterações não gravadas.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="631" />
-      <location filename="../Debugger/DebugUI.py" line="436" />
-      <location filename="../Debugger/DebugUI.py" line="434" />
+      <location filename="../Debugger/DebugUI.py" line="628" />
+      <location filename="../Debugger/DebugUI.py" line="433" />
+      <location filename="../Debugger/DebugUI.py" line="431" />
       <source>Stop</source>
       <translation>Parar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="442" />
+      <location filename="../Debugger/DebugUI.py" line="439" />
       <source>Stop the running script.</source>
       <translation>Parar o script em execução.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="444" />
+      <location filename="../Debugger/DebugUI.py" line="441" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Parar&lt;/b&gt;&lt;p&gt;Parar o script em execução na instalação de retaguarda do depurador.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="455" />
+      <location filename="../Debugger/DebugUI.py" line="452" />
       <source>Continue</source>
       <translation>Continuar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="457" />
+      <location filename="../Debugger/DebugUI.py" line="454" />
       <source>&amp;Continue</source>
       <translation>&amp;Continuar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="463" />
+      <location filename="../Debugger/DebugUI.py" line="460" />
       <source>Continue running the program from the current line</source>
       <translation>Continuar a execução do programa a partir da linha atual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="465" />
+      <location filename="../Debugger/DebugUI.py" line="462" />
       <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continuar a execução do programa a partir da linha atual. O programa parará quando terine ou alcance outro ponto de interrupção.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="476" />
+      <location filename="../Debugger/DebugUI.py" line="473" />
       <source>Continue to Cursor</source>
       <translation>Continuar até ao cursor</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="478" />
+      <location filename="../Debugger/DebugUI.py" line="475" />
       <source>Continue &amp;To Cursor</source>
       <translation>Continuar a&amp;té ao cursor</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="485" />
+      <location filename="../Debugger/DebugUI.py" line="482" />
       <source>Continue running the program from the current line to the current cursor position</source>
       <translation>Continuar a execução do programa a partir da linha atual até à posição atual do cursor</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="491" />
+      <location filename="../Debugger/DebugUI.py" line="488" />
       <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Continuar até Cursor&lt;/b&gt;&lt;p&gt;Continuar a execução do programa desde a linha atual até à posição atual do cursor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="501" />
+      <location filename="../Debugger/DebugUI.py" line="498" />
       <source>Continue Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="503" />
+      <location filename="../Debugger/DebugUI.py" line="500" />
       <source>Continue &amp;Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="510" />
+      <location filename="../Debugger/DebugUI.py" line="507" />
       <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="516" />
+      <location filename="../Debugger/DebugUI.py" line="513" />
       <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="527" />
+      <location filename="../Debugger/DebugUI.py" line="524" />
       <source>Move Instruction Pointer to Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="529" />
+      <location filename="../Debugger/DebugUI.py" line="526" />
       <source>&amp;Jump To Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="536" />
+      <location filename="../Debugger/DebugUI.py" line="533" />
       <source>Skip the code from the current line to the current cursor position</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="542" />
+      <location filename="../Debugger/DebugUI.py" line="539" />
       <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="556" />
+      <location filename="../Debugger/DebugUI.py" line="553" />
       <source>Single Step</source>
       <translation>Passo Único</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="558" />
+      <location filename="../Debugger/DebugUI.py" line="555" />
       <source>Sin&amp;gle Step</source>
       <translation>Passo &amp;Único</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="564" />
+      <location filename="../Debugger/DebugUI.py" line="561" />
       <source>Execute a single Python statement</source>
       <translation>Executar uma única instrução Python</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="566" />
+      <location filename="../Debugger/DebugUI.py" line="563" />
       <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Passo Único&lt;/b&gt;&lt;p&gt;Executa uma.única instrução Python. Se a instrução é um &lt;tt&gt;import&lt;tt&gt;, um construtor de classe, uma chamada de função ou método, então o controlo é devolvido ao depurador na instrução seguinte.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="578" />
+      <location filename="../Debugger/DebugUI.py" line="575" />
       <source>Step Over</source>
       <translation>Saltar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="580" />
+      <location filename="../Debugger/DebugUI.py" line="577" />
       <source>Step &amp;Over</source>
       <translation>&amp;Saltar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="587" />
+      <location filename="../Debugger/DebugUI.py" line="584" />
       <source>Execute a single Python statement staying in the current frame</source>
       <translation>Executar uma única instrução Python e ficar no marco atual</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="593" />
+      <location filename="../Debugger/DebugUI.py" line="590" />
       <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="606" />
+      <location filename="../Debugger/DebugUI.py" line="603" />
       <source>Step Out</source>
       <translation>Sair</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="608" />
+      <location filename="../Debugger/DebugUI.py" line="605" />
       <source>Step Ou&amp;t</source>
       <translation>Sai&amp;r</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="612" />
+      <source>Execute Python statements until leaving the current frame</source>
+      <translation>Executar instruções Python até sair do marco atual</translation>
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="615" />
-      <source>Execute Python statements until leaving the current frame</source>
-      <translation>Executar instruções Python até sair do marco atual</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="618" />
       <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="633" />
+      <location filename="../Debugger/DebugUI.py" line="630" />
       <source>&amp;Stop</source>
       <translation>&amp;Parar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="639" />
+      <location filename="../Debugger/DebugUI.py" line="636" />
       <source>Stop debugging</source>
       <translation>Parar de depurar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="641" />
+      <location filename="../Debugger/DebugUI.py" line="638" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Parar&lt;/b&gt;&lt;p&gt;Parar a sessão de depuração.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="647" />
+      <location filename="../Debugger/DebugUI.py" line="644" />
       <source>Variables Type Filter</source>
       <translation>Filtro do Tipo de Varáveis</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="648" />
+      <location filename="../Debugger/DebugUI.py" line="645" />
       <source>Varia&amp;bles Type Filter...</source>
       <translation>Filtro do Tipo de &amp;Variáveis...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="654" />
+      <location filename="../Debugger/DebugUI.py" line="651" />
       <source>Configure variables type filter</source>
       <translation>Configurar o filtro de tipo de variáveis</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="656" />
+      <location filename="../Debugger/DebugUI.py" line="653" />
       <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Filtro de Tipo de Variáveis&lt;/b&gt;&lt;p&gt;Configurar o filtro do tipo de variáveis. Apenas se mostrarão as variáveis que não estejam selecionadas, na janela global ou local, durante a sessão de depuração.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="667" />
+      <location filename="../Debugger/DebugUI.py" line="664" />
       <source>Exceptions Filter</source>
       <translation>Filtro de Exceções</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="668" />
+      <location filename="../Debugger/DebugUI.py" line="665" />
       <source>&amp;Exceptions Filter...</source>
       <translation>Filtro de &amp;Exceções...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="674" />
+      <location filename="../Debugger/DebugUI.py" line="671" />
       <source>Configure exceptions filter</source>
       <translation>Configurar filtro de exceções</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="676" />
+      <location filename="../Debugger/DebugUI.py" line="673" />
       <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Filtro de Exceções&lt;/b&gt;&lt;p&gt;Configurar o filtro de exceções. Apenas os tipos de exceções que estão listadas serão ressaltadas durante a sessão de depuração.&lt;/p&gt;&lt;p&gt;Por favor tenha em conta que todas as exceções sem tratamento serão ressaltadas independentemente da lista do filtro.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="688" />
+      <location filename="../Debugger/DebugUI.py" line="685" />
       <source>Ignored Exceptions</source>
       <translation>Exceções Ignoradas</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="689" />
+      <location filename="../Debugger/DebugUI.py" line="686" />
       <source>&amp;Ignored Exceptions...</source>
       <translation>Exceções &amp;Ignoradas...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="695" />
+      <location filename="../Debugger/DebugUI.py" line="692" />
       <source>Configure ignored exceptions</source>
       <translation>Configurar exceções ignoradas</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="697" />
+      <location filename="../Debugger/DebugUI.py" line="694" />
       <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Exceções Ignoradas&lt;/b&gt;&lt;p&gt;Configura as exceções ignoradas. Apenas os tipos de exceções que não estão listadas são realçadas durante uma sessão de depuração.&lt;/p&gt;&lt;p&gt;Note-se que não se podem ignorar as exceções sem tratamento.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="719" />
-      <location filename="../Debugger/DebugUI.py" line="713" />
-      <location filename="../Debugger/DebugUI.py" line="711" />
+      <location filename="../Debugger/DebugUI.py" line="716" />
+      <location filename="../Debugger/DebugUI.py" line="710" />
+      <location filename="../Debugger/DebugUI.py" line="708" />
       <source>Toggle Breakpoint</source>
       <translation>Alternar Pontos de Interrupção</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="714" />
+      <location filename="../Debugger/DebugUI.py" line="711" />
       <source>Shift+F11</source>
       <comment>Debug|Toggle Breakpoint</comment>
       <translation />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="721" />
+      <location filename="../Debugger/DebugUI.py" line="718" />
       <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Alternar Ponto de Interrupção&lt;/b&gt;&lt;p&gt;Alterna um ponto de instrução na linha atual do editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="739" />
-      <location filename="../Debugger/DebugUI.py" line="731" />
+      <location filename="../Debugger/DebugUI.py" line="736" />
+      <location filename="../Debugger/DebugUI.py" line="728" />
       <source>Edit Breakpoint</source>
       <translation>Editar o Ponto de Interrupção</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="733" />
+      <location filename="../Debugger/DebugUI.py" line="730" />
       <source>Edit Breakpoint...</source>
       <translation>Editar o Ponto de Interrupção...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="734" />
+      <location filename="../Debugger/DebugUI.py" line="731" />
       <source>Shift+F12</source>
       <comment>Debug|Edit Breakpoint</comment>
       <translation />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="741" />
+      <location filename="../Debugger/DebugUI.py" line="738" />
       <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Editar Ponto de Interrupção&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo para editar as propriedades dos pontos de interrupção. Funciona na linha atual do editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="759" />
-      <location filename="../Debugger/DebugUI.py" line="753" />
-      <location filename="../Debugger/DebugUI.py" line="751" />
+      <location filename="../Debugger/DebugUI.py" line="756" />
+      <location filename="../Debugger/DebugUI.py" line="750" />
+      <location filename="../Debugger/DebugUI.py" line="748" />
       <source>Next Breakpoint</source>
       <translation>Ponto de Interrupção Seguinte</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="754" />
+      <location filename="../Debugger/DebugUI.py" line="751" />
       <source>Ctrl+Shift+PgDown</source>
       <comment>Debug|Next Breakpoint</comment>
       <translation />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="761" />
+      <location filename="../Debugger/DebugUI.py" line="758" />
       <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ponto de Interrupção Seguinte&lt;/b&gt;&lt;p&gt;Vai ao próximo ponto de interrupção do editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="778" />
-      <location filename="../Debugger/DebugUI.py" line="772" />
-      <location filename="../Debugger/DebugUI.py" line="770" />
+      <location filename="../Debugger/DebugUI.py" line="775" />
+      <location filename="../Debugger/DebugUI.py" line="769" />
+      <location filename="../Debugger/DebugUI.py" line="767" />
       <source>Previous Breakpoint</source>
       <translation>Ponto de Interrupção Anterior</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="773" />
+      <location filename="../Debugger/DebugUI.py" line="770" />
       <source>Ctrl+Shift+PgUp</source>
       <comment>Debug|Previous Breakpoint</comment>
       <translation />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="780" />
+      <location filename="../Debugger/DebugUI.py" line="777" />
       <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ponto de Interrupção Anterior&lt;/b&gt;&lt;p&gt;Vai ao ponto de interrupção anterior do editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="796" />
-      <location filename="../Debugger/DebugUI.py" line="790" />
-      <location filename="../Debugger/DebugUI.py" line="789" />
+      <location filename="../Debugger/DebugUI.py" line="793" />
+      <location filename="../Debugger/DebugUI.py" line="787" />
+      <location filename="../Debugger/DebugUI.py" line="786" />
       <source>Clear Breakpoints</source>
       <translation>Limpar Pontos de Interrupção</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="798" />
+      <location filename="../Debugger/DebugUI.py" line="795" />
       <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Limpar Pontos de Interrupção&lt;/b&gt;&lt;p&gt;Limpar pontos de interrupção dos editores todos.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="822" />
+      <location filename="../Debugger/DebugUI.py" line="819" />
       <source>&amp;Debug</source>
       <translation>&amp;Depurar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="824" />
+      <location filename="../Debugger/DebugUI.py" line="821" />
       <source>Sta&amp;rt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="826" />
+      <location filename="../Debugger/DebugUI.py" line="823" />
       <source>&amp;Breakpoints</source>
       <translation>Pontos de &amp;Interrupção</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="869" />
-      <location filename="../Debugger/DebugUI.py" line="867" />
+      <location filename="../Debugger/DebugUI.py" line="866" />
+      <location filename="../Debugger/DebugUI.py" line="864" />
       <source>Start</source>
       <translation>Iniciar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="882" />
-      <location filename="../Debugger/DebugUI.py" line="880" />
+      <location filename="../Debugger/DebugUI.py" line="879" />
+      <location filename="../Debugger/DebugUI.py" line="877" />
       <source>Debug</source>
       <translation>Depurar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1345" />
+      <location filename="../Debugger/DebugUI.py" line="1342" />
       <source>Message: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1349" />
+      <location filename="../Debugger/DebugUI.py" line="1346" />
       <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1354" />
+      <location filename="../Debugger/DebugUI.py" line="1351" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1366" />
+      <location filename="../Debugger/DebugUI.py" line="1363" />
       <source>Program terminated</source>
       <translation>Programa Terminado</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1402" />
+      <location filename="../Debugger/DebugUI.py" line="1399" />
       <source>The program being debugged contains an unspecified syntax error.</source>
       <translation>O programa a depurar tem um erro de sintaxe não especificado.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1422" />
+      <location filename="../Debugger/DebugUI.py" line="1419" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; tem um erro de sintaxe &lt;b&gt;{1}&lt;/b&gt; na linha &lt;b&gt;{2}&lt;/b&gt;, caráter &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1450" />
+      <location filename="../Debugger/DebugUI.py" line="1447" />
       <source>An unhandled exception occured. See the shell window for details.</source>
       <translation>Ocurreu uma exceção sem tratamento. Ver a janela da shell para mais detalhes.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1497" />
+      <location filename="../Debugger/DebugUI.py" line="1494" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
       <translation>&lt;p&gt;O programa depurado provocou a exceção &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;Ficheiro: &lt;b&gt;{2}&lt;/b&gt;, Linha :&lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Interromper aqui?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1515" />
+      <location filename="../Debugger/DebugUI.py" line="1512" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</source>
       <translation>&lt;p&gt;O programa depurado provocou a exceção &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1573" />
+      <location filename="../Debugger/DebugUI.py" line="1570" />
       <source>&lt;p&gt;The program generate the signal "{0}".&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1591" />
+      <location filename="../Debugger/DebugUI.py" line="1588" />
       <source>The program being debugged has terminated unexpectedly.</source>
       <translation>O programa a depurar acabou inesperadamente.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1652" />
+      <location filename="../Debugger/DebugUI.py" line="1649" />
       <source>No locals available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1699" />
+      <location filename="../Debugger/DebugUI.py" line="1696" />
       <source>Breakpoint Condition Error</source>
       <translation>Erro de Condição de Ponto de Interrupção</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1700" />
+      <location filename="../Debugger/DebugUI.py" line="1697" />
       <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation>&lt;p&gt;A condição do ponto de interrupção &lt;b&gt;{0}, {1}&lt;/b&gt;tem um erro de sintaxe.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1757" />
+      <location filename="../Debugger/DebugUI.py" line="1754" />
       <source>Watch Expression Error</source>
       <translation>Observar Erro de Expressão</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1758" />
+      <location filename="../Debugger/DebugUI.py" line="1755" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1786" />
+      <location filename="../Debugger/DebugUI.py" line="1783" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1791" />
+      <location filename="../Debugger/DebugUI.py" line="1788" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1797" />
+      <location filename="../Debugger/DebugUI.py" line="1794" />
       <source>Watch expression already exists</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1962" />
-      <location filename="../Debugger/DebugUI.py" line="1953" />
+      <location filename="../Debugger/DebugUI.py" line="1959" />
+      <location filename="../Debugger/DebugUI.py" line="1950" />
       <source>Coverage Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1955" />
+      <location filename="../Debugger/DebugUI.py" line="1952" />
       <source>Coverage Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2349" />
-      <location filename="../Debugger/DebugUI.py" line="2158" />
-      <location filename="../Debugger/DebugUI.py" line="1963" />
+      <location filename="../Debugger/DebugUI.py" line="2346" />
+      <location filename="../Debugger/DebugUI.py" line="2155" />
+      <location filename="../Debugger/DebugUI.py" line="1960" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>O projeto atual não tem um script principal definido. A cancelar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2157" />
-      <location filename="../Debugger/DebugUI.py" line="2148" />
+      <location filename="../Debugger/DebugUI.py" line="2154" />
+      <location filename="../Debugger/DebugUI.py" line="2145" />
       <source>Profile Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2150" />
+      <location filename="../Debugger/DebugUI.py" line="2147" />
       <source>Profile Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2535" />
+      <location filename="../Debugger/DebugUI.py" line="2532" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation>O projeto atual não tem um script principal definido. Impossível depurar.</translation>
     </message>
@@ -10746,12 +10746,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1451" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1458" />
       <source>Debug Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1452" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1459" />
       <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -12581,7 +12581,7 @@
   <context>
     <name>Editor</name>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3527" />
+      <location filename="../QScintilla/Editor.py" line="3525" />
       <location filename="../QScintilla/Editor.py" line="470" />
       <location filename="../QScintilla/Editor.py" line="455" />
       <source>Open File</source>
@@ -12653,7 +12653,7 @@
       <translation>Descomentar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9939" />
+      <location filename="../QScintilla/Editor.py" line="9937" />
       <location filename="../QScintilla/Editor.py" line="969" />
       <source>Generate Docstring</source>
       <translation type="unfinished" />
@@ -12931,7 +12931,7 @@
       <translation type="unfinished">Verificação ortográfica</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9026" />
+      <location filename="../QScintilla/Editor.py" line="9024" />
       <location filename="../QScintilla/Editor.py" line="1367" />
       <source>Check spelling...</source>
       <translation>Verificação ortográfica...</translation>
@@ -12992,7 +12992,7 @@
       <translation>Editar ponto de interrupção...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6498" />
+      <location filename="../QScintilla/Editor.py" line="6496" />
       <location filename="../QScintilla/Editor.py" line="1452" />
       <source>Enable breakpoint</source>
       <translation>Habilitar pontos de interrupção</translation>
@@ -13154,444 +13154,444 @@
       <translation>Tenta alterar um ficheiro de Apenas Leitura. Por favor guarde-o primeiro num ficheiro diferente. </translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="2701" />
+      <location filename="../QScintilla/Editor.py" line="2699" />
       <source>Add Breakpoint</source>
       <translation type="unfinished">Adicionar Ponto de Interrupção</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="2702" />
+      <location filename="../QScintilla/Editor.py" line="2700" />
       <source>No Python byte code will be created for the selected line. No break point will be set!</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3056" />
+      <location filename="../QScintilla/Editor.py" line="3054" />
       <source>Printing...</source>
       <translation>A imprimir...</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="3071" />
+      <source>Printing completed</source>
+      <translation>Impressão completa</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="3073" />
-      <source>Printing completed</source>
-      <translation>Impressão completa</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="3075" />
       <source>Error while printing</source>
       <translation>Erro durante a impressão</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3078" />
+      <location filename="../QScintilla/Editor.py" line="3076" />
       <source>Printing aborted</source>
       <translation>Impressão cancelada</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3460" />
+      <location filename="../QScintilla/Editor.py" line="3458" />
       <source>File Modified</source>
       <translation>Ficheiro Modificado</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3461" />
+      <location filename="../QScintilla/Editor.py" line="3459" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
       <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; tem alterações por gravar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3528" />
+      <location filename="../QScintilla/Editor.py" line="3526" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Não se pôde abrir o ficheiro &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt; Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3719" />
-      <location filename="../QScintilla/Editor.py" line="3700" />
-      <location filename="../QScintilla/Editor.py" line="3660" />
+      <location filename="../QScintilla/Editor.py" line="3717" />
+      <location filename="../QScintilla/Editor.py" line="3698" />
+      <location filename="../QScintilla/Editor.py" line="3658" />
       <source>Save File</source>
       <translation>Gravar Ficheiro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3661" />
+      <location filename="../QScintilla/Editor.py" line="3659" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; não se pôde gravar. &lt;br/&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3720" />
+      <location filename="../QScintilla/Editor.py" line="3718" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3864" />
+      <location filename="../QScintilla/Editor.py" line="3862" />
       <source>Save File to Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3865" />
+      <location filename="../QScintilla/Editor.py" line="3863" />
       <source>Enter the complete device file path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5653" />
+      <location filename="../QScintilla/Editor.py" line="5651" />
       <source>Autocompletion</source>
       <translation>Autocompletar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5654" />
+      <location filename="../QScintilla/Editor.py" line="5652" />
       <source>Autocompletion is not available because there is no autocompletion source set.</source>
       <translation>Autocompletar não está disponivel porque a fonte de autocompletar não está definida.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5788" />
+      <location filename="../QScintilla/Editor.py" line="5786" />
       <source>Auto-Completion Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5789" />
+      <location filename="../QScintilla/Editor.py" line="5787" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6085" />
+      <location filename="../QScintilla/Editor.py" line="6083" />
       <source>Call-Tips Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6086" />
+      <location filename="../QScintilla/Editor.py" line="6084" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6502" />
+      <location filename="../QScintilla/Editor.py" line="6500" />
       <source>Disable breakpoint</source>
       <translation>Inabilitar ponto de interrupção</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6917" />
+      <location filename="../QScintilla/Editor.py" line="6915" />
       <source>Code Coverage</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6918" />
+      <location filename="../QScintilla/Editor.py" line="6916" />
       <source>Please select a coverage file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6993" />
-      <location filename="../QScintilla/Editor.py" line="6985" />
+      <location filename="../QScintilla/Editor.py" line="6991" />
+      <location filename="../QScintilla/Editor.py" line="6983" />
       <source>Show Code Coverage Annotations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6986" />
+      <location filename="../QScintilla/Editor.py" line="6984" />
       <source>All lines have been covered.</source>
       <translation>Foram cobertas as linhas todas.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6994" />
+      <location filename="../QScintilla/Editor.py" line="6992" />
       <source>There is no coverage file available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7102" />
+      <location filename="../QScintilla/Editor.py" line="7100" />
       <source>Profile Data</source>
       <translation>Dados de Perfil</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7103" />
+      <location filename="../QScintilla/Editor.py" line="7101" />
       <source>Please select a profile file</source>
       <translation>Escolha um ficheiro de perfil por favor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7265" />
-      <location filename="../QScintilla/Editor.py" line="7259" />
+      <location filename="../QScintilla/Editor.py" line="7263" />
+      <location filename="../QScintilla/Editor.py" line="7257" />
       <source>Syntax Error</source>
       <translation>Erro de Sintaxe</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7266" />
+      <location filename="../QScintilla/Editor.py" line="7264" />
       <source>No syntax error message available.</source>
       <translation>Não está disponível a mensagem de erro de sintaxe.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7513" />
-      <location filename="../QScintilla/Editor.py" line="7507" />
+      <location filename="../QScintilla/Editor.py" line="7511" />
+      <location filename="../QScintilla/Editor.py" line="7505" />
       <source>Warning</source>
       <translation>Aviso</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7513" />
+      <location filename="../QScintilla/Editor.py" line="7511" />
       <source>No warning messages available.</source>
       <translation>Não estão disponíveis mensagens de aviso.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7592" />
+      <location filename="../QScintilla/Editor.py" line="7590" />
       <source>Info: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7608" />
-      <location filename="../QScintilla/Editor.py" line="7594" />
+      <location filename="../QScintilla/Editor.py" line="7606" />
+      <location filename="../QScintilla/Editor.py" line="7592" />
       <source>Error: {0}</source>
       <translation>Erro: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7596" />
+      <location filename="../QScintilla/Editor.py" line="7594" />
       <source>Style: {0}</source>
       <translation>Estilo: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7601" />
+      <location filename="../QScintilla/Editor.py" line="7599" />
       <source>Warning: {0}</source>
       <translation>Aviso: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7729" />
       <source>Macro Name</source>
       <translation>Nome de Macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7729" />
       <source>Select a macro name:</source>
       <translation>Selecionar um nome de macro:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7757" />
+      <location filename="../QScintilla/Editor.py" line="7755" />
       <source>Load macro file</source>
       <translation>Carregar ficheiro macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7803" />
-      <location filename="../QScintilla/Editor.py" line="7759" />
-      <source>Macro files (*.macro)</source>
-      <translation>Ficheiros Macro (*.macro)</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7781" />
-      <location filename="../QScintilla/Editor.py" line="7771" />
-      <source>Error loading macro</source>
-      <translation>Erro ao carregar macro</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7772" />
-      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;O ficheiro macro &lt;b&gt;{0}&lt;/b&gt; não se pode ler.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7782" />
-      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;O ficheiro macro &lt;b&gt;{0}&lt;/b&gt; está corrompido.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="7801" />
+      <location filename="../QScintilla/Editor.py" line="7757" />
+      <source>Macro files (*.macro)</source>
+      <translation>Ficheiros Macro (*.macro)</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7779" />
+      <location filename="../QScintilla/Editor.py" line="7769" />
+      <source>Error loading macro</source>
+      <translation>Erro ao carregar macro</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7770" />
+      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;O ficheiro macro &lt;b&gt;{0}&lt;/b&gt; não se pode ler.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7780" />
+      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;O ficheiro macro &lt;b&gt;{0}&lt;/b&gt; está corrompido.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7799" />
       <source>Save macro file</source>
       <translation>Gravar ficheiro macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7819" />
+      <location filename="../QScintilla/Editor.py" line="7817" />
       <source>Save macro</source>
       <translation>Gravar macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7820" />
+      <location filename="../QScintilla/Editor.py" line="7818" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;O ficheiro macro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever-lo?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7835" />
+      <location filename="../QScintilla/Editor.py" line="7833" />
       <source>Error saving macro</source>
       <translation>Erro ao gravar macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7836" />
+      <location filename="../QScintilla/Editor.py" line="7834" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation>&lt;p&gt;O ficheiro macro &lt;b&gt;{0}&lt;/b&gt; não pode ser escrito.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7849" />
+      <location filename="../QScintilla/Editor.py" line="7847" />
       <source>Start Macro Recording</source>
       <translation>Iniciar Registo de Macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7850" />
+      <location filename="../QScintilla/Editor.py" line="7848" />
       <source>Macro recording is already active. Start new?</source>
       <translation>A gravação de macro já está ativada. Começar nova?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7876" />
+      <location filename="../QScintilla/Editor.py" line="7874" />
       <source>Macro Recording</source>
       <translation>Gravação de Macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7877" />
+      <location filename="../QScintilla/Editor.py" line="7875" />
       <source>Enter name of the macro:</source>
       <translation>Introduza o nome de macro:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8060" />
+      <location filename="../QScintilla/Editor.py" line="8058" />
       <source>{0} (ro)</source>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8245" />
+      <location filename="../QScintilla/Editor.py" line="8243" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8251" />
+      <location filename="../QScintilla/Editor.py" line="8249" />
       <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
       <translation>&lt;br&gt;&lt;b&gt;Aviso:&lt;/b&gt; Perderá todas as alterações uma vez que o volte a abrir.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8258" />
+      <location filename="../QScintilla/Editor.py" line="8256" />
       <source>File changed</source>
       <translation>Ficheiro alterado</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8351" />
+      <location filename="../QScintilla/Editor.py" line="8349" />
       <source>Reload File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8352" />
+      <location filename="../QScintilla/Editor.py" line="8350" />
       <source>&lt;p&gt;The editor contains unsaved modifications.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reloading it.&lt;/p&gt;&lt;p&gt;Shall the editor really be reloaded?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8452" />
+      <location filename="../QScintilla/Editor.py" line="8450" />
       <source>Drop Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8453" />
+      <location filename="../QScintilla/Editor.py" line="8451" />
       <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="../QScintilla/Editor.py" line="8472" />
+      <source>Resources</source>
+      <translation>Recursos</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="8474" />
-      <source>Resources</source>
-      <translation>Recursos</translation>
+      <source>Add file...</source>
+      <translation>Adicionar Ficheiro...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="8475" />
+      <source>Add files...</source>
+      <translation>Adicionar Ficheiros...</translation>
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="8476" />
-      <source>Add file...</source>
-      <translation>Adicionar Ficheiro...</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="8477" />
-      <source>Add files...</source>
-      <translation>Adicionar Ficheiros...</translation>
+      <source>Add aliased file...</source>
+      <translation>Adicionar ficheiro com pseudónimo...</translation>
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="8478" />
-      <source>Add aliased file...</source>
-      <translation>Adicionar ficheiro com pseudónimo...</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="8480" />
       <source>Add localized resource...</source>
       <translation>Adicionar recursos localizado...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8483" />
+      <location filename="../QScintilla/Editor.py" line="8481" />
       <source>Add resource frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8503" />
+      <location filename="../QScintilla/Editor.py" line="8501" />
       <source>Add file resource</source>
       <translation>Adicionar recurso de ficheiro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8517" />
+      <location filename="../QScintilla/Editor.py" line="8515" />
       <source>Add file resources</source>
       <translation>Adicionar recursos de ficheiro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8541" />
-      <location filename="../QScintilla/Editor.py" line="8535" />
+      <location filename="../QScintilla/Editor.py" line="8539" />
+      <location filename="../QScintilla/Editor.py" line="8533" />
       <source>Add aliased file resource</source>
       <translation>Adicionar recurso de ficheiro com pseudónimo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8542" />
+      <location filename="../QScintilla/Editor.py" line="8540" />
       <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
       <translation>Pseudónimo para o ficheiro &lt;b&gt;{0}&lt;/b&gt;:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8617" />
+      <location filename="../QScintilla/Editor.py" line="8615" />
       <source>Package Diagram</source>
       <translation>Diagrama do Pacote</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8618" />
+      <location filename="../QScintilla/Editor.py" line="8616" />
       <source>Include class attributes?</source>
       <translation>Incluir atributos de classes?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8638" />
+      <location filename="../QScintilla/Editor.py" line="8636" />
       <source>Imports Diagram</source>
       <translation>Diagrama de Imports</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8639" />
+      <location filename="../QScintilla/Editor.py" line="8637" />
       <source>Include imports from external modules?</source>
       <translation>Incluir imports de módulos externos?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8658" />
+      <location filename="../QScintilla/Editor.py" line="8656" />
       <source>Application Diagram</source>
       <translation>Diagrama da Aplicação</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8659" />
+      <location filename="../QScintilla/Editor.py" line="8657" />
       <source>Include module names?</source>
       <translation>Incluir nome dos módulos?</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="9028" />
+      <source>Add to dictionary</source>
+      <translation>Adicionar dicionário</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="9030" />
-      <source>Add to dictionary</source>
-      <translation>Adicionar dicionário</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="9032" />
       <source>Ignore All</source>
       <translation>Ignorar Tudo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9479" />
+      <location filename="../QScintilla/Editor.py" line="9477" />
       <source>Sort Lines</source>
       <translation>Ordenar Linhas</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9480" />
+      <location filename="../QScintilla/Editor.py" line="9478" />
       <source>The selection contains illegal data for a numerical sort.</source>
       <translation>A seleção contém dados ilegais para uma ordenação numérica.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9573" />
+      <location filename="../QScintilla/Editor.py" line="9571" />
       <source>Register Mouse Click Handler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9574" />
+      <location filename="../QScintilla/Editor.py" line="9572" />
       <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9667" />
+      <location filename="../QScintilla/Editor.py" line="9665" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9673" />
+      <location filename="../QScintilla/Editor.py" line="9671" />
       <source>{0:4d}    {1}
     =&gt;  {2}</source>
       <comment>line number, source code, file name</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9742" />
+      <location filename="../QScintilla/Editor.py" line="9740" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9743" />
+      <location filename="../QScintilla/Editor.py" line="9741" />
       <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -18790,12 +18790,12 @@
   <context>
     <name>EricApplication</name>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="227" />
+      <location filename="../EricWidgets/EricApplication.py" line="226" />
       <source>Loading Style Sheet</source>
       <translation type="unfinished">A carregar Folha de Estilos</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="230" />
+      <location filename="../EricWidgets/EricApplication.py" line="229" />
       <source>&lt;p&gt;The Qt Style Sheet file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;O ficheiro de Folha de Estilos do Qt &lt;b&gt;{0}&lt;/b&gt; nao pode ser lido. &lt;br&gt;Razao: {1}&lt;/p&gt;</translation>
     </message>
@@ -18954,12 +18954,12 @@
   <context>
     <name>EricJsonServer</name>
     <message>
-      <location filename="../EricNetwork/EricJsonServer.py" line="185" />
+      <location filename="../EricNetwork/EricJsonServer.py" line="199" />
       <source>JSON Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricNetwork/EricJsonServer.py" line="186" />
+      <location filename="../EricNetwork/EricJsonServer.py" line="200" />
       <source>&lt;p&gt;The response received from the client could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -19430,39 +19430,39 @@
   <context>
     <name>EricPathPickerBase</name>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="178" />
-      <location filename="../EricWidgets/EricPathPicker.py" line="107" />
-      <location filename="../EricWidgets/EricPathPicker.py" line="100" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="177" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="106" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="99" />
       <source>Enter Path Name</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="175" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="174" />
       <source>Enter Path Names separated by ';'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="520" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="519" />
       <source>Choose a file to open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="522" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="521" />
       <source>Choose files to open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="524" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="523" />
       <source>Choose files and directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="530" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="529" />
       <source>Choose a file to save</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="532" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="531" />
       <source>Choose a directory</source>
       <translation type="unfinished" />
     </message>
@@ -20251,12 +20251,12 @@
   <context>
     <name>EricTldExtractor</name>
     <message>
-      <location filename="../EricNetwork/EricTldExtractor.py" line="294" />
+      <location filename="../EricNetwork/EricTldExtractor.py" line="293" />
       <source>TLD Data File not found</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricNetwork/EricTldExtractor.py" line="295" />
+      <location filename="../EricNetwork/EricTldExtractor.py" line="294" />
       <source>&lt;p&gt;The file 'effective_tld_names.dat' was not found!&lt;br/&gt;You can download it from '&lt;a href="{0}"&gt;&lt;b&gt;here&lt;/b&gt;&lt;/a&gt;' to one of the following paths:&lt;/p&gt;&lt;ul&gt;{1}&lt;/ul&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -32219,77 +32219,77 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="573" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="575" />
       <source>Backward</source>
       <translation type="unfinished">Retroceder</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="578" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="580" />
       <source>Forward</source>
       <translation type="unfinished">Avançar</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="583" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="585" />
       <source>Reload</source>
       <translation type="unfinished">Recarregar</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="595" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="597" />
       <source>Copy Page URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="601" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="603" />
       <source>Bookmark Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="609" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="611" />
       <source>Zoom in</source>
       <translation type="unfinished">Aproximar</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="614" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="616" />
       <source>Zoom out</source>
       <translation type="unfinished">Afastar</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="619" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="621" />
       <source>Zoom reset</source>
       <translation type="unfinished">Restaurar zoom</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="625" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="627" />
       <source>Copy</source>
       <translation type="unfinished">Copiar</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="631" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="633" />
       <source>Select All</source>
       <translation type="unfinished">Selecionar Tudo</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="638" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="640" />
       <source>Close</source>
       <translation type="unfinished">Fechar</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="643" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="645" />
       <source>Close Others</source>
       <translation type="unfinished">Fechar Outros</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="661" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="663" />
       <source>Open Link in New Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="668" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="670" />
       <source>Open Link in Background Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="676" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="678" />
       <source>Copy URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
@@ -32297,184 +32297,184 @@
   <context>
     <name>HelpViewerWidget</name>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="126" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="127" />
       <source>Open a local file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="132" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="133" />
       <source>Select action from menu</source>
       <translation type="unfinished">Selecionar ação do menu</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="148" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="149" />
       <source>Move one page backward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="153" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="154" />
       <source>Move one page forward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="165" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="166" />
       <source>Reload the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="176" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="177" />
       <source>Zoom in on the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="182" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="183" />
       <source>Zoom out on the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="189" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="190" />
       <source>Reset the zoom level of the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="201" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="202" />
       <source>Add a new empty page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="207" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="208" />
       <source>Close the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="218" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="219" />
       <source>Show or hide the search pane</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="294" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="295" />
       <source>Show list of open pages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="297" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="298" />
       <source>Show the table of contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="300" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="301" />
       <source>Show the help document index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="303" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="304" />
       <source>Show the help search window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="306" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="307" />
       <source>Show list of bookmarks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
-      <source>eric API Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="445" />
-      <source>Python 3 Documentation</source>
-      <translation type="unfinished">Documentação de Python 3</translation>
+      <source>eric API Documentation</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="446" />
-      <source>Qt5 Documentation</source>
-      <translation type="unfinished">Documentação de Qt5</translation>
+      <source>Python 3 Documentation</source>
+      <translation type="unfinished">Documentação de Python 3</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="447" />
-      <source>Qt6 Documentation</source>
-      <translation type="unfinished">Documentação de Qt5 {6 ?}</translation>
+      <source>Qt5 Documentation</source>
+      <translation type="unfinished">Documentação de Qt5</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
-      <source>PyQt5 Documentation</source>
-      <translation type="unfinished">Documentação do PyQt5</translation>
+      <source>Qt6 Documentation</source>
+      <translation type="unfinished">Documentação de Qt5 {6 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
-      <source>PyQt6 Documentation</source>
-      <translation type="unfinished">Documentação do PyQt5 {6 ?}</translation>
+      <source>PyQt5 Documentation</source>
+      <translation type="unfinished">Documentação do PyQt5</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
+      <source>PyQt6 Documentation</source>
+      <translation type="unfinished">Documentação do PyQt5 {6 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
+      <source>PySide2 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="452" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="508" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="509" />
       <source>Open HTML File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="510" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="511" />
       <source>HTML Files (*.htm *.html);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="697" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="698" />
       <source>Help Engine</source>
       <translation type="unfinished">Motor de Ajuda</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="721" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="722" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished">A procurar a Documentação...</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="732" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="733" />
       <source>eric Help Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="757" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="758" />
       <source>Manage QtHelp Documents</source>
       <translation type="unfinished">Gerir Documentação QtHelp</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="760" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="761" />
       <source>Reindex Documentation</source>
       <translation type="unfinished">Reindexar a Documentação</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="765" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="766" />
       <source>Configure Help Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="858" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="838" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="859" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="839" />
       <source>Clear History</source>
       <translation type="unfinished">Limpar Histórico</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="961" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="962" />
       <source>Updating search index</source>
       <translation type="unfinished">A atualizar índice de pesquisa</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1019" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1020" />
       <source>Filtered by: </source>
       <translation type="unfinished">Filtrado por: </translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1055" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1050" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1056" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1051" />
       <source>Unfiltered</source>
       <translation type="unfinished">Sem filtrar</translation>
     </message>
@@ -42029,22 +42029,22 @@
   <context>
     <name>Histedit</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="76" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="75" />
       <source>Starting histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="104" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="102" />
       <source>Continue histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="131" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="129" />
       <source>Abort histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="159" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="157" />
       <source>Edit Plan</source>
       <translation type="unfinished" />
     </message>
@@ -50149,17 +50149,17 @@
   <context>
     <name>LogViewerPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="36" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="33" />
       <source>&lt;b&gt;Message Filters for Standard Output&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stdout.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="43" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="40" />
       <source>&lt;b&gt;Message Filters for Standard Error &lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stderr.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="50" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="47" />
       <source>&lt;b&gt;Message Filters for both&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stdout or stderr.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -51777,8 +51777,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="364" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="347" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="361" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="344" />
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.ui" line="0" />
       <source>Press to show the password</source>
@@ -52062,66 +52062,66 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="56" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="53" />
       <source>Automatic</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="55" />
+      <source>Light</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="58" />
-      <source>Light</source>
+      <source>Dark</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="61" />
-      <source>Dark</source>
+      <source>Blue Cerulean</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="64" />
-      <source>Blue Cerulean</source>
+      <source>Brown Sand</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="67" />
-      <source>Brown Sand</source>
+      <source>Blue NCS</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="70" />
-      <source>Blue NCS</source>
+      <source>High Contrast</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="73" />
-      <source>High Contrast</source>
+      <source>Blue Icy</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="76" />
-      <source>Blue Icy</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="79" />
       <source>Qt</source>
       <translation type="unfinished">Qt</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="90" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="88" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="85" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="82" />
+      <source>All Files (*)</source>
+      <translation type="unfinished">Ficheiros Todos (*)</translation>
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="93" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="91" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="88" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="85" />
-      <source>All Files (*)</source>
-      <translation type="unfinished">Ficheiros Todos (*)</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="96" />
       <source>open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="360" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="343" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="357" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="340" />
       <source>Press to hide the password</source>
       <translation type="unfinished" />
     </message>
@@ -58354,62 +58354,62 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="44" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="42" />
       <source>Enter requirements file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="47" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="45" />
       <source>Press to select the requirements file through a file selection dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="50" />
+      <source>Text Files (*.txt);;All Files (*)</source>
+      <translation type="unfinished">Ficheiros de Texto (*.txt);;Ficheiros Todos (*)</translation>
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="52" />
-      <source>Text Files (*.txt);;All Files (*)</source>
-      <translation type="unfinished">Ficheiros de Texto (*.txt);;Ficheiros Todos (*)</translation>
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="54" />
       <source>Enter 'pyproject.toml' file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="57" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="55" />
       <source>Press to select the 'pyproject.toml' file through a file selection dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="60" />
+      <source>TOML Files (*.toml);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="62" />
-      <source>TOML Files (*.toml);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="64" />
       <source>Enter package file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="67" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="65" />
       <source>Press to select the package file through a file selection dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="73" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="71" />
       <source>Python Wheel (*.whl);;Archive Files (*.tar.gz *.zip);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="80" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="78" />
       <source>Enter file name:</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="81" />
+      <source>Press to select a file through a file selection dialog.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="83" />
-      <source>Press to select a file through a file selection dialog.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="85" />
       <source>All Files (*)</source>
       <translation type="unfinished">Ficheiros Todos (*)</translation>
     </message>
@@ -60851,18 +60851,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1901" />
+      <location filename="../Preferences/__init__.py" line="1907" />
       <source>Export Preferences</source>
       <translation>Exportar Preferências</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1930" />
-      <location filename="../Preferences/__init__.py" line="1903" />
+      <location filename="../Preferences/__init__.py" line="1936" />
+      <location filename="../Preferences/__init__.py" line="1909" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation>Ficheiro de Propriedades (*.ini);;Ficheiros Todos (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1928" />
+      <location filename="../Preferences/__init__.py" line="1934" />
       <source>Import Preferences</source>
       <translation>Importar Preferências</translation>
     </message>
@@ -62538,9 +62538,9 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6752" />
-      <location filename="../Project/Project.py" line="6723" />
-      <location filename="../Project/Project.py" line="6677" />
+      <location filename="../Project/Project.py" line="6746" />
+      <location filename="../Project/Project.py" line="6717" />
+      <location filename="../Project/Project.py" line="6671" />
       <location filename="../Project/Project.py" line="4820" />
       <source>Execute Make</source>
       <translation type="unfinished" />
@@ -62561,7 +62561,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6729" />
+      <location filename="../Project/Project.py" line="6723" />
       <location filename="../Project/Project.py" line="4839" />
       <source>Test for Changes</source>
       <translation type="unfinished" />
@@ -63096,37 +63096,37 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6678" />
+      <location filename="../Project/Project.py" line="6672" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6724" />
+      <location filename="../Project/Project.py" line="6718" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6732" />
+      <location filename="../Project/Project.py" line="6726" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6737" />
+      <location filename="../Project/Project.py" line="6731" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6753" />
+      <location filename="../Project/Project.py" line="6747" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7172" />
+      <location filename="../Project/Project.py" line="7166" />
       <source>Interpreter Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7173" />
+      <location filename="../Project/Project.py" line="7167" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation type="unfinished" />
     </message>
@@ -73958,7 +73958,7 @@
       <translation type="unfinished">Mostrar Fonte</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2178" />
+      <location filename="../QScintilla/Shell.py" line="2179" />
       <location filename="../QScintilla/Shell.py" line="1907" />
       <location filename="../QScintilla/Shell.py" line="1906" />
       <location filename="../QScintilla/Shell.py" line="401" />
@@ -74087,59 +74087,59 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2329" />
+      <location filename="../QScintilla/Shell.py" line="2330" />
       <source>Drop Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2330" />
+      <location filename="../QScintilla/Shell.py" line="2331" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; não é um ficheiro.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2576" />
-      <location filename="../QScintilla/Shell.py" line="2562" />
-      <location filename="../QScintilla/Shell.py" line="2541" />
-      <source>Save Shell Contents</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="2543" />
-      <source>Text Files (*.txt);;All Files (*)</source>
-      <translation type="unfinished">Ficheiros de Texto (*.txt);;Ficheiros Todos (*)</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="2563" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-      <translation type="unfinished">&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever?&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Shell.py" line="2577" />
+      <location filename="../QScintilla/Shell.py" line="2563" />
+      <location filename="../QScintilla/Shell.py" line="2542" />
+      <source>Save Shell Contents</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2544" />
+      <source>Text Files (*.txt);;All Files (*)</source>
+      <translation type="unfinished">Ficheiros de Texto (*.txt);;Ficheiros Todos (*)</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2564" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever?&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2578" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; não se pôde gravar. &lt;br/&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2591" />
+      <location filename="../QScintilla/Shell.py" line="2592" />
       <source>&lt;tr&gt;&lt;td&gt;%restart&lt;/td&gt;&lt;td&gt;Kill the shell and start a new one.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%clear&lt;/td&gt;&lt;td&gt;Clear the display of the shell window.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%start [environment]&lt;/td&gt;&lt;td&gt;Start a shell for a virtual environment with the given name. If no name is given, a default shell is started.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%envs&lt;br/&gt;%environments&lt;/td&gt;&lt;td&gt;Show a list of known virtual environment names.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%which&lt;/td&gt;&lt;td&gt;Show the name of the active virtual environment.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%hist [n]&lt;br/&gt;%history [n]&lt;/td&gt;&lt;td&gt;Show the most recent 'n' entries of the history. If 'n' is not given, show all entries.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%shist&lt;br/&gt;%shistory&lt;br/&gt;%select_history&lt;/td&gt;&lt;td&gt;Select a command from the history.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%chist&lt;br/&gt;%chistory&lt;br/&gt;%clear_history&lt;/td&gt;&lt;td&gt;Clear the current history after confirmation.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%help&lt;/td&gt;&lt;td&gt;Show this help text.&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2613" />
+      <location filename="../QScintilla/Shell.py" line="2614" />
       <source>&lt;tr&gt;&lt;td&gt;%quit&lt;br/&gt;%quit()&lt;br/&gt;%exit&lt;br/&gt;%exit()&lt;/td&gt;&lt;td&gt;Exit the application.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;These commands are available through the window menus as well.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2621" />
+      <location filename="../QScintilla/Shell.py" line="2622" />
       <source>&lt;/table&gt;&lt;p&gt;These commands are available through the context menu as well.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2628" />
-      <source>Shell Special Commands</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/Shell.py" line="2629" />
+      <source>Shell Special Commands</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2630" />
       <source>The shell supports these special commands:</source>
       <translation type="unfinished" />
     </message>
@@ -89671,2545 +89671,2565 @@
   <context>
     <name>UserInterface</name>
     <message>
-      <location filename="../UI/UserInterface.py" line="308" />
+      <location filename="../UI/UserInterface.py" line="314" />
       <source>Initializing Basic Services...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="343" />
+      <location filename="../UI/UserInterface.py" line="349" />
       <source>Initializing Plugin Manager...</source>
       <translation>A iniciar Gestor de Complementos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="350" />
+      <location filename="../UI/UserInterface.py" line="356" />
       <source>Generating Main User Interface...</source>
       <translation>A criar Interface Principal de Usuário...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="408" />
+      <location filename="../UI/UserInterface.py" line="414" />
       <source>Setting up signal/slot-connections...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="602" />
+      <location filename="../UI/UserInterface.py" line="607" />
       <source>Initializing Tools...</source>
       <translation>A iniciar Ferramentas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="613" />
+      <location filename="../UI/UserInterface.py" line="618" />
       <source>Registering Objects...</source>
       <translation>A registar Objetos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="647" />
+      <location filename="../UI/UserInterface.py" line="652" />
       <source>Initializing Actions...</source>
       <translation>A iniciar Ações...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="649" />
+      <location filename="../UI/UserInterface.py" line="654" />
       <source>Initializing Menus...</source>
       <translation>A iniciar Menús...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="651" />
+      <location filename="../UI/UserInterface.py" line="656" />
       <source>Initializing Toolbars...</source>
       <translation>A iniciar Barras de Ferramentas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="653" />
+      <location filename="../UI/UserInterface.py" line="658" />
       <source>Initializing Statusbar...</source>
       <translation>A iniciar Barra de Estado...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="680" />
+      <location filename="../UI/UserInterface.py" line="685" />
       <source>Initializing Single Application Server...</source>
       <translation>A iniciar Servidor de Aplicação Única...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="686" />
-      <source>Initializing Plugins...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="689" />
-      <source>Activating Plugins...</source>
-      <translation>A ativar Complementos...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="691" />
-      <source>Generating Plugins Toolbars...</source>
+      <source>Initializing Plugins...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="694" />
+      <source>Activating Plugins...</source>
+      <translation>A ativar Complementos...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="696" />
+      <source>Generating Plugins Toolbars...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="699" />
       <source>Cleaning Plugins Download Area...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="704" />
+      <location filename="../UI/UserInterface.py" line="709" />
       <source>Restoring Toolbarmanager...</source>
       <translation>A restaurar Gestor da Barra de Ferramentas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="712" />
+      <location filename="../UI/UserInterface.py" line="717" />
       <source>Setting View Profile...</source>
       <translation>A definir Perfil de Vista...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="725" />
-      <source>Reading Tasks...</source>
-      <translation>A Ler Tarefas...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="730" />
-      <source>Reading Templates...</source>
-      <translation>A ler Modelos...</translation>
+      <source>Reading Tasks...</source>
+      <translation>A Ler Tarefas...</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="735" />
+      <source>Reading Templates...</source>
+      <translation>A ler Modelos...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="740" />
       <source>Starting Debugger...</source>
       <translation>A iniciar Depurador...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2195" />
-      <location filename="../UI/UserInterface.py" line="1086" />
+      <location filename="../UI/UserInterface.py" line="2200" />
+      <location filename="../UI/UserInterface.py" line="1091" />
       <source>Left Toolbox</source>
       <translation>Caixa de Ferramentas Esquerda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2241" />
-      <location filename="../UI/UserInterface.py" line="1096" />
+      <location filename="../UI/UserInterface.py" line="2246" />
+      <location filename="../UI/UserInterface.py" line="1101" />
       <source>Horizontal Toolbox</source>
       <translation>Caixa de Ferramentas Horizontal</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2218" />
-      <location filename="../UI/UserInterface.py" line="1107" />
+      <location filename="../UI/UserInterface.py" line="2223" />
+      <location filename="../UI/UserInterface.py" line="1112" />
       <source>Right Toolbox</source>
       <translation>Caixa de Ferramentas Direita</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2037" />
-      <location filename="../UI/UserInterface.py" line="1301" />
-      <location filename="../UI/UserInterface.py" line="1117" />
+      <location filename="../UI/UserInterface.py" line="2042" />
+      <location filename="../UI/UserInterface.py" line="1306" />
+      <location filename="../UI/UserInterface.py" line="1122" />
       <source>Multiproject-Viewer</source>
       <translation>Visor de Multiprojeto</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2015" />
-      <location filename="../UI/UserInterface.py" line="1307" />
-      <location filename="../UI/UserInterface.py" line="1123" />
+      <location filename="../UI/UserInterface.py" line="2020" />
+      <location filename="../UI/UserInterface.py" line="1312" />
+      <location filename="../UI/UserInterface.py" line="1128" />
       <source>Project-Viewer</source>
       <translation>Visor de Projeto</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2577" />
-      <location filename="../UI/UserInterface.py" line="2576" />
-      <location filename="../UI/UserInterface.py" line="1314" />
-      <location filename="../UI/UserInterface.py" line="1130" />
+      <location filename="../UI/UserInterface.py" line="2582" />
+      <location filename="../UI/UserInterface.py" line="2581" />
+      <location filename="../UI/UserInterface.py" line="1319" />
+      <location filename="../UI/UserInterface.py" line="1135" />
       <source>Find/Replace In Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2600" />
-      <location filename="../UI/UserInterface.py" line="2599" />
-      <location filename="../UI/UserInterface.py" line="1321" />
-      <location filename="../UI/UserInterface.py" line="1137" />
+      <location filename="../UI/UserInterface.py" line="2605" />
+      <location filename="../UI/UserInterface.py" line="2604" />
+      <location filename="../UI/UserInterface.py" line="1326" />
+      <location filename="../UI/UserInterface.py" line="1142" />
       <source>Find File</source>
       <translation type="unfinished">Encontrar Ficheiro</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1327" />
-      <location filename="../UI/UserInterface.py" line="1143" />
+      <location filename="../UI/UserInterface.py" line="1332" />
+      <location filename="../UI/UserInterface.py" line="1148" />
       <source>VCS Status</source>
       <translation type="unfinished">Estado VCS</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2170" />
-      <location filename="../UI/UserInterface.py" line="1334" />
-      <location filename="../UI/UserInterface.py" line="1150" />
+      <location filename="../UI/UserInterface.py" line="2175" />
+      <location filename="../UI/UserInterface.py" line="1339" />
+      <location filename="../UI/UserInterface.py" line="1155" />
       <source>Template-Viewer</source>
       <translation>Visor de Modelos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2103" />
-      <location filename="../UI/UserInterface.py" line="1341" />
-      <location filename="../UI/UserInterface.py" line="1157" />
+      <location filename="../UI/UserInterface.py" line="2108" />
+      <location filename="../UI/UserInterface.py" line="1346" />
+      <location filename="../UI/UserInterface.py" line="1162" />
       <source>File-Browser</source>
       <translation>Navegador de Ficheiros</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1348" />
-      <location filename="../UI/UserInterface.py" line="1164" />
+      <location filename="../UI/UserInterface.py" line="1353" />
+      <location filename="../UI/UserInterface.py" line="1169" />
       <source>Symbols</source>
       <translation>Símbolos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2059" />
-      <location filename="../UI/UserInterface.py" line="1370" />
-      <location filename="../UI/UserInterface.py" line="1364" />
-      <location filename="../UI/UserInterface.py" line="1174" />
+      <location filename="../UI/UserInterface.py" line="2064" />
+      <location filename="../UI/UserInterface.py" line="1375" />
+      <location filename="../UI/UserInterface.py" line="1369" />
+      <location filename="../UI/UserInterface.py" line="1179" />
       <source>Debug-Viewer</source>
       <translation>Visor de Depuração</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2431" />
-      <location filename="../UI/UserInterface.py" line="2430" />
-      <location filename="../UI/UserInterface.py" line="1377" />
-      <location filename="../UI/UserInterface.py" line="1181" />
+      <location filename="../UI/UserInterface.py" line="2436" />
+      <location filename="../UI/UserInterface.py" line="2435" />
+      <location filename="../UI/UserInterface.py" line="1382" />
+      <location filename="../UI/UserInterface.py" line="1186" />
       <source>Code Documentation Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2646" />
-      <location filename="../UI/UserInterface.py" line="2645" />
-      <location filename="../UI/UserInterface.py" line="1384" />
-      <location filename="../UI/UserInterface.py" line="1188" />
+      <location filename="../UI/UserInterface.py" line="2651" />
+      <location filename="../UI/UserInterface.py" line="2650" />
+      <location filename="../UI/UserInterface.py" line="1389" />
+      <location filename="../UI/UserInterface.py" line="1193" />
       <source>Help Viewer</source>
       <translation type="unfinished">Visor de Ajuda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3550" />
-      <location filename="../UI/UserInterface.py" line="2526" />
-      <location filename="../UI/UserInterface.py" line="2525" />
-      <location filename="../UI/UserInterface.py" line="1390" />
-      <location filename="../UI/UserInterface.py" line="1194" />
+      <location filename="../UI/UserInterface.py" line="3575" />
+      <location filename="../UI/UserInterface.py" line="2531" />
+      <location filename="../UI/UserInterface.py" line="2530" />
+      <location filename="../UI/UserInterface.py" line="1395" />
+      <location filename="../UI/UserInterface.py" line="1199" />
       <source>Plugin Repository</source>
       <translation>Repositório de Complementos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2550" />
-      <location filename="../UI/UserInterface.py" line="2549" />
-      <location filename="../UI/UserInterface.py" line="1396" />
-      <location filename="../UI/UserInterface.py" line="1200" />
-      <source>Virtual Environments</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2458" />
-      <location filename="../UI/UserInterface.py" line="2457" />
+      <location filename="../UI/UserInterface.py" line="2555" />
+      <location filename="../UI/UserInterface.py" line="2554" />
       <location filename="../UI/UserInterface.py" line="1401" />
       <location filename="../UI/UserInterface.py" line="1205" />
+      <source>Virtual Environments</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2463" />
+      <location filename="../UI/UserInterface.py" line="2462" />
+      <location filename="../UI/UserInterface.py" line="1406" />
+      <location filename="../UI/UserInterface.py" line="1210" />
       <source>PyPI</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2480" />
-      <location filename="../UI/UserInterface.py" line="2479" />
-      <location filename="../UI/UserInterface.py" line="1408" />
-      <location filename="../UI/UserInterface.py" line="1210" />
+      <location filename="../UI/UserInterface.py" line="2485" />
+      <location filename="../UI/UserInterface.py" line="2484" />
+      <location filename="../UI/UserInterface.py" line="1413" />
+      <location filename="../UI/UserInterface.py" line="1215" />
       <source>Conda</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1415" />
-      <location filename="../UI/UserInterface.py" line="1217" />
+      <location filename="../UI/UserInterface.py" line="1420" />
+      <location filename="../UI/UserInterface.py" line="1222" />
       <source>Cooperation</source>
       <translation>Colaboração</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2358" />
-      <location filename="../UI/UserInterface.py" line="1419" />
-      <location filename="../UI/UserInterface.py" line="1222" />
+      <location filename="../UI/UserInterface.py" line="2363" />
+      <location filename="../UI/UserInterface.py" line="1424" />
+      <location filename="../UI/UserInterface.py" line="1227" />
       <source>IRC</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2502" />
-      <location filename="../UI/UserInterface.py" line="2501" />
-      <location filename="../UI/UserInterface.py" line="1425" />
-      <location filename="../UI/UserInterface.py" line="1229" />
+      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="2506" />
+      <location filename="../UI/UserInterface.py" line="1430" />
+      <location filename="../UI/UserInterface.py" line="1234" />
       <source>MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2081" />
-      <location filename="../UI/UserInterface.py" line="1433" />
-      <location filename="../UI/UserInterface.py" line="1237" />
+      <location filename="../UI/UserInterface.py" line="2086" />
+      <location filename="../UI/UserInterface.py" line="1438" />
+      <location filename="../UI/UserInterface.py" line="1242" />
       <source>Shell</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2147" />
-      <location filename="../UI/UserInterface.py" line="1439" />
-      <location filename="../UI/UserInterface.py" line="1241" />
+      <location filename="../UI/UserInterface.py" line="2152" />
+      <location filename="../UI/UserInterface.py" line="1444" />
+      <location filename="../UI/UserInterface.py" line="1246" />
       <source>Task-Viewer</source>
       <translation>Visor de Tarefas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2125" />
-      <location filename="../UI/UserInterface.py" line="1445" />
-      <location filename="../UI/UserInterface.py" line="1245" />
+      <location filename="../UI/UserInterface.py" line="2130" />
+      <location filename="../UI/UserInterface.py" line="1450" />
+      <location filename="../UI/UserInterface.py" line="1250" />
       <source>Log-Viewer</source>
       <translation>Visor de Registos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1452" />
-      <location filename="../UI/UserInterface.py" line="1252" />
+      <location filename="../UI/UserInterface.py" line="1457" />
+      <location filename="../UI/UserInterface.py" line="1257" />
       <source>Numbers</source>
       <translation>Números</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1827" />
+      <location filename="../UI/UserInterface.py" line="1832" />
       <source>{0} - Passive Mode</source>
       <translation>{0} - Modo Passivo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1836" />
-      <location filename="../UI/UserInterface.py" line="1830" />
+      <location filename="../UI/UserInterface.py" line="1841" />
+      <location filename="../UI/UserInterface.py" line="1835" />
       <source>{0} - {1} - Passive Mode</source>
       <translation>{0} - {1} - Modo Passivo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1842" />
+      <location filename="../UI/UserInterface.py" line="1847" />
       <source>{0} - {1} - {2} - Passive Mode</source>
       <translation>{0} - {1} - {2} - Modo Passivo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1868" />
+      <location filename="../UI/UserInterface.py" line="1873" />
       <source>Quit</source>
       <translation>Sair</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1870" />
+      <location filename="../UI/UserInterface.py" line="1875" />
       <source>&amp;Quit</source>
       <translation>Sai&amp;r</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1871" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1876" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1881" />
       <source>Quit the IDE</source>
       <translation>Sair do IDE</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1878" />
+      <location filename="../UI/UserInterface.py" line="1883" />
       <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="1892" />
-      <location filename="../UI/UserInterface.py" line="1890" />
+      <location filename="../UI/UserInterface.py" line="1897" />
+      <location filename="../UI/UserInterface.py" line="1895" />
       <source>Restart</source>
       <translation type="unfinished">Reiniciar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1893" />
-      <source>Ctrl+Shift+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1898" />
+      <source>Ctrl+Shift+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1903" />
       <source>Restart the IDE</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1900" />
+      <location filename="../UI/UserInterface.py" line="1905" />
       <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1918" />
-      <location filename="../UI/UserInterface.py" line="1911" />
+      <location filename="../UI/UserInterface.py" line="1923" />
+      <location filename="../UI/UserInterface.py" line="1916" />
       <source>Save session</source>
       <translation>Guargar sessão</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1912" />
+      <location filename="../UI/UserInterface.py" line="1917" />
       <source>Save session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1920" />
+      <location filename="../UI/UserInterface.py" line="1925" />
       <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7729" />
-      <location filename="../UI/UserInterface.py" line="1937" />
-      <location filename="../UI/UserInterface.py" line="1930" />
+      <location filename="../UI/UserInterface.py" line="7767" />
+      <location filename="../UI/UserInterface.py" line="1942" />
+      <location filename="../UI/UserInterface.py" line="1935" />
       <source>Load session</source>
       <translation type="unfinished">Carregar sessão</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1931" />
+      <location filename="../UI/UserInterface.py" line="1936" />
       <source>Load session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1939" />
+      <location filename="../UI/UserInterface.py" line="1944" />
       <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1949" />
+      <location filename="../UI/UserInterface.py" line="1954" />
       <source>New Window</source>
       <translation>Nova Janela</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1951" />
+      <location filename="../UI/UserInterface.py" line="1956" />
       <source>New &amp;Window</source>
       <translation>Nova &amp;Janela</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1952" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation>Ctrl+Shift+N</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1957" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation>Ctrl+Shift+N</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1962" />
       <source>Open a new eric instance</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1959" />
+      <location filename="../UI/UserInterface.py" line="1964" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1973" />
-      <location filename="../UI/UserInterface.py" line="1971" />
+      <location filename="../UI/UserInterface.py" line="1978" />
+      <location filename="../UI/UserInterface.py" line="1976" />
       <source>Edit Profile</source>
       <translation>Perfil de Edição</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1980" />
+      <location filename="../UI/UserInterface.py" line="1985" />
       <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="1982" />
+      <location filename="../UI/UserInterface.py" line="1987" />
       <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Perfil de Edição&lt;/b&gt;&lt;p&gt;Activa o "Perfil da Vista de Edição". As janelas a serem mostradas, se este perfil está activado, podem ser configuradas com a caixa de diálogo "Configuração de Vista do Perfil"&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1995" />
-      <location filename="../UI/UserInterface.py" line="1993" />
+      <location filename="../UI/UserInterface.py" line="2000" />
+      <location filename="../UI/UserInterface.py" line="1998" />
       <source>Debug Profile</source>
       <translation>Perfil de Depuração</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2002" />
+      <location filename="../UI/UserInterface.py" line="2007" />
       <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="2004" />
+      <location filename="../UI/UserInterface.py" line="2009" />
       <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Perfil de Depuração&lt;/b&gt;&lt;p&gt;Activa o "Perfile da Vista de Depuração". As janelas a serem mostradas, se este perfil está activado, podem ser configuradas com a caixa de diálogo "Configuração de Vista do Perfil"&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2016" />
+      <location filename="../UI/UserInterface.py" line="2021" />
       <source>&amp;Project-Viewer</source>
       <translation>Visor de &amp;Projeto</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2017" />
+      <location filename="../UI/UserInterface.py" line="2022" />
       <source>Alt+Shift+P</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2023" />
+      <location filename="../UI/UserInterface.py" line="2028" />
       <source>Switch the input focus to the Project-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2026" />
+      <location filename="../UI/UserInterface.py" line="2031" />
       <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2038" />
+      <location filename="../UI/UserInterface.py" line="2043" />
       <source>&amp;Multiproject-Viewer</source>
       <translation>Visor de &amp;Multiprojeto</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2039" />
+      <location filename="../UI/UserInterface.py" line="2044" />
       <source>Alt+Shift+M</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2045" />
+      <location filename="../UI/UserInterface.py" line="2050" />
       <source>Switch the input focus to the Multiproject-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2048" />
+      <location filename="../UI/UserInterface.py" line="2053" />
       <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2060" />
+      <location filename="../UI/UserInterface.py" line="2065" />
       <source>&amp;Debug-Viewer</source>
       <translation>Visor de &amp;Depuração</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2061" />
+      <location filename="../UI/UserInterface.py" line="2066" />
       <source>Alt+Shift+D</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2067" />
+      <location filename="../UI/UserInterface.py" line="2072" />
       <source>Switch the input focus to the Debug-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2070" />
+      <location filename="../UI/UserInterface.py" line="2075" />
       <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2082" />
+      <location filename="../UI/UserInterface.py" line="2087" />
       <source>&amp;Shell</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2083" />
+      <location filename="../UI/UserInterface.py" line="2088" />
       <source>Alt+Shift+S</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2089" />
+      <location filename="../UI/UserInterface.py" line="2094" />
       <source>Switch the input focus to the Shell window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2092" />
+      <location filename="../UI/UserInterface.py" line="2097" />
       <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2104" />
+      <location filename="../UI/UserInterface.py" line="2109" />
       <source>&amp;File-Browser</source>
       <translation>Navegador de &amp;Ficheiros</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2105" />
+      <location filename="../UI/UserInterface.py" line="2110" />
       <source>Alt+Shift+F</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2111" />
+      <location filename="../UI/UserInterface.py" line="2116" />
       <source>Switch the input focus to the File-Browser window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2114" />
+      <location filename="../UI/UserInterface.py" line="2119" />
       <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2126" />
+      <location filename="../UI/UserInterface.py" line="2131" />
       <source>Lo&amp;g-Viewer</source>
       <translation>Visor de Re&amp;gistos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2127" />
+      <location filename="../UI/UserInterface.py" line="2132" />
       <source>Alt+Shift+G</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2133" />
+      <location filename="../UI/UserInterface.py" line="2138" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2136" />
+      <location filename="../UI/UserInterface.py" line="2141" />
       <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2148" />
+      <location filename="../UI/UserInterface.py" line="2153" />
       <source>&amp;Task-Viewer</source>
       <translation>Visor de &amp;Tarefas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2149" />
+      <location filename="../UI/UserInterface.py" line="2154" />
       <source>Alt+Shift+T</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2155" />
+      <location filename="../UI/UserInterface.py" line="2160" />
       <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="2158" />
+      <location filename="../UI/UserInterface.py" line="2163" />
       <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2171" />
+      <location filename="../UI/UserInterface.py" line="2176" />
       <source>Templ&amp;ate-Viewer</source>
       <translation>Visor de Mod&amp;elos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2172" />
+      <location filename="../UI/UserInterface.py" line="2177" />
       <source>Alt+Shift+A</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2178" />
+      <location filename="../UI/UserInterface.py" line="2183" />
       <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="2181" />
+      <location filename="../UI/UserInterface.py" line="2186" />
       <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2196" />
+      <location filename="../UI/UserInterface.py" line="2201" />
       <source>&amp;Left Toolbox</source>
       <translation>Caixa de Ferramentas &amp;Esquerda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2203" />
+      <location filename="../UI/UserInterface.py" line="2208" />
       <source>Toggle the Left Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2205" />
+      <location filename="../UI/UserInterface.py" line="2210" />
       <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2219" />
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&amp;Right Toolbox</source>
       <translation>Caixa de Ferramentas Di&amp;reita</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2226" />
+      <location filename="../UI/UserInterface.py" line="2231" />
       <source>Toggle the Right Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2228" />
+      <location filename="../UI/UserInterface.py" line="2233" />
       <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2242" />
+      <location filename="../UI/UserInterface.py" line="2247" />
       <source>&amp;Horizontal Toolbox</source>
       <translation>Caixa de Ferramentas &amp;Horizontal</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2249" />
+      <location filename="../UI/UserInterface.py" line="2254" />
       <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="2251" />
+      <location filename="../UI/UserInterface.py" line="2256" />
       <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2264" />
+      <location filename="../UI/UserInterface.py" line="2269" />
       <source>Left Sidebar</source>
       <translation>Barra Esquerda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2265" />
+      <location filename="../UI/UserInterface.py" line="2270" />
       <source>&amp;Left Sidebar</source>
       <translation>Barra Lateral &amp;Esquerda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2272" />
+      <location filename="../UI/UserInterface.py" line="2277" />
       <source>Toggle the left sidebar window</source>
       <translation>Alternar a janela da barra lateral esquerda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2274" />
+      <location filename="../UI/UserInterface.py" line="2279" />
       <source>&lt;b&gt;Toggle the left sidebar window&lt;/b&gt;&lt;p&gt;If the left sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2287" />
+      <location filename="../UI/UserInterface.py" line="2292" />
       <source>Right Sidebar</source>
       <translation>Barra Direita</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2288" />
+      <location filename="../UI/UserInterface.py" line="2293" />
       <source>&amp;Right Sidebar</source>
       <translation>Barra Lateral Di&amp;reita</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2295" />
+      <location filename="../UI/UserInterface.py" line="2300" />
       <source>Toggle the right sidebar window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2297" />
+      <location filename="../UI/UserInterface.py" line="2302" />
       <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2310" />
+      <location filename="../UI/UserInterface.py" line="2315" />
       <source>Bottom Sidebar</source>
       <translation>Barra Inferior</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2311" />
+      <location filename="../UI/UserInterface.py" line="2316" />
       <source>&amp;Bottom Sidebar</source>
       <translation>Barra Lateral &amp;Inferior</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2318" />
+      <location filename="../UI/UserInterface.py" line="2323" />
       <source>Toggle the bottom sidebar window</source>
       <translation>Alternar janela da barra lateral inferior</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2320" />
+      <location filename="../UI/UserInterface.py" line="2325" />
       <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="2333" />
+      <location filename="../UI/UserInterface.py" line="2338" />
       <source>Cooperation-Viewer</source>
       <translation>Visor de Colaboração</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2334" />
+      <location filename="../UI/UserInterface.py" line="2339" />
       <source>Co&amp;operation-Viewer</source>
       <translation>Visor de C&amp;olaboração</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2335" />
+      <location filename="../UI/UserInterface.py" line="2340" />
       <source>Alt+Shift+O</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2341" />
+      <location filename="../UI/UserInterface.py" line="2346" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2344" />
+      <location filename="../UI/UserInterface.py" line="2349" />
       <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="2359" />
+      <location filename="../UI/UserInterface.py" line="2364" />
       <source>&amp;IRC</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2360" />
+      <location filename="../UI/UserInterface.py" line="2365" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2366" />
+      <location filename="../UI/UserInterface.py" line="2371" />
       <source>Switch the input focus to the IRC window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2369" />
+      <location filename="../UI/UserInterface.py" line="2374" />
       <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2380" />
+      <location filename="../UI/UserInterface.py" line="2385" />
       <source>Symbols-Viewer</source>
       <translation>Visor de Símbolos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2381" />
+      <location filename="../UI/UserInterface.py" line="2386" />
       <source>S&amp;ymbols-Viewer</source>
       <translation>V&amp;isor de Símbolos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2382" />
+      <location filename="../UI/UserInterface.py" line="2387" />
       <source>Alt+Shift+Y</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2388" />
+      <location filename="../UI/UserInterface.py" line="2393" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2391" />
+      <location filename="../UI/UserInterface.py" line="2396" />
       <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2405" />
+      <location filename="../UI/UserInterface.py" line="2410" />
       <source>Numbers-Viewer</source>
       <translation>Visor de Números</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2406" />
+      <location filename="../UI/UserInterface.py" line="2411" />
       <source>Num&amp;bers-Viewer</source>
       <translation>Visor de Nú&amp;meros</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2407" />
+      <location filename="../UI/UserInterface.py" line="2412" />
       <source>Alt+Shift+B</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2413" />
+      <location filename="../UI/UserInterface.py" line="2418" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2416" />
+      <location filename="../UI/UserInterface.py" line="2421" />
       <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2432" />
+      <location filename="../UI/UserInterface.py" line="2437" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2438" />
-      <source>Switch the input focus to the Code Documentation Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2443" />
+      <source>Switch the input focus to the Code Documentation Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2448" />
       <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2459" />
+      <location filename="../UI/UserInterface.py" line="2464" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2465" />
+      <location filename="../UI/UserInterface.py" line="2470" />
       <source>Switch the input focus to the PyPI window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2468" />
+      <location filename="../UI/UserInterface.py" line="2473" />
       <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2481" />
+      <location filename="../UI/UserInterface.py" line="2486" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2487" />
+      <location filename="../UI/UserInterface.py" line="2492" />
       <source>Switch the input focus to the Conda window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2490" />
+      <location filename="../UI/UserInterface.py" line="2495" />
       <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2503" />
+      <location filename="../UI/UserInterface.py" line="2508" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2509" />
+      <location filename="../UI/UserInterface.py" line="2514" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2512" />
+      <location filename="../UI/UserInterface.py" line="2517" />
       <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2527" />
+      <location filename="../UI/UserInterface.py" line="2532" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2533" />
+      <location filename="../UI/UserInterface.py" line="2538" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2536" />
+      <location filename="../UI/UserInterface.py" line="2541" />
       <source>&lt;b&gt;Plugin Repository&lt;/b&gt;&lt;p&gt;This switches the input focus to the Plugin Repository window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2551" />
+      <location filename="../UI/UserInterface.py" line="2556" />
       <source>Ctrl+Alt+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2557" />
-      <source>Switch the input focus to the Virtual Environments Manager window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2562" />
+      <source>Switch the input focus to the Virtual Environments Manager window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2567" />
       <source>&lt;b&gt;Virtual Environments&lt;/b&gt;&lt;p&gt;This switches the input focus to the Virtual Environments Manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2578" />
+      <location filename="../UI/UserInterface.py" line="2583" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2584" />
+      <location filename="../UI/UserInterface.py" line="2589" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2587" />
+      <location filename="../UI/UserInterface.py" line="2592" />
       <source>&lt;b&gt;Find/Replace In Files&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find/Replace In Files window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2601" />
+      <location filename="../UI/UserInterface.py" line="2606" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2607" />
+      <location filename="../UI/UserInterface.py" line="2612" />
       <source>Switch the input focus to the Find File window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2610" />
+      <location filename="../UI/UserInterface.py" line="2615" />
       <source>&lt;b&gt;Find File&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find File window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2624" />
-      <location filename="../UI/UserInterface.py" line="2623" />
+      <location filename="../UI/UserInterface.py" line="2629" />
+      <location filename="../UI/UserInterface.py" line="2628" />
       <source>VCS Status List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2625" />
+      <location filename="../UI/UserInterface.py" line="2630" />
       <source>Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2631" />
+      <location filename="../UI/UserInterface.py" line="2636" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2634" />
+      <location filename="../UI/UserInterface.py" line="2639" />
       <source>&lt;b&gt;VCS Status List&lt;/b&gt;&lt;p&gt;This switches the input focus to the VCS Status List window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2647" />
+      <location filename="../UI/UserInterface.py" line="2652" />
       <source>Alt+Shift+H</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2653" />
+      <location filename="../UI/UserInterface.py" line="2658" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2656" />
+      <location filename="../UI/UserInterface.py" line="2661" />
       <source>&lt;b&gt;Help Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2669" />
+      <location filename="../UI/UserInterface.py" line="2674" />
       <source>What's This?</source>
       <translation>O que é Isto?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2671" />
+      <location filename="../UI/UserInterface.py" line="2676" />
       <source>&amp;What's This?</source>
       <translation>O &amp;que é Isto?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2672" />
-      <source>Shift+F1</source>
-      <translation />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2677" />
+      <source>Shift+F1</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2682" />
       <source>Context sensitive help</source>
       <translation type="unfinished">Ajuda sensível ao contexto</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2679" />
+      <location filename="../UI/UserInterface.py" line="2684" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Mostrar ajuda sensível a contexto&lt;/b&gt;&lt;p&gt;No modo 'Que é Isto?' o cursor do rato mostra uma flecha com um ponto de  interrogação, e pode clicar nos elementos da interface para ver uma breve descrição do que fazem e como se usam. Nas caixas de diálogo, pode-se aceder a esta característica através do botão de ajuda contextual da barra de título.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2692" />
+      <location filename="../UI/UserInterface.py" line="2697" />
       <source>Helpviewer</source>
       <translation>Visor de Ajuda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2694" />
+      <location filename="../UI/UserInterface.py" line="2699" />
       <source>&amp;Helpviewer...</source>
       <translation>Visor de &amp;Ajuda...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2695" />
-      <source>F1</source>
-      <translation />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2700" />
+      <source>F1</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2705" />
       <source>Open the helpviewer window</source>
       <translation>Abrir a janela do visor de ajuda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2702" />
+      <location filename="../UI/UserInterface.py" line="2707" />
       <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2722" />
+      <location filename="../UI/UserInterface.py" line="2727" />
       <source>Show Versions</source>
       <translation>Mostrar Versões</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2723" />
+      <location filename="../UI/UserInterface.py" line="2728" />
       <source>Show &amp;Versions</source>
       <translation>Mostrar &amp;Versões</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2729" />
+      <location filename="../UI/UserInterface.py" line="2734" />
       <source>Display version information</source>
       <translation>Mostrar a informação da versão</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2731" />
+      <location filename="../UI/UserInterface.py" line="2736" />
       <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2744" />
-      <location filename="../UI/UserInterface.py" line="2737" />
+      <location filename="../UI/UserInterface.py" line="2742" />
+      <source>Copy Versions</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2743" />
+      <source>&amp;Copy Versions</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2750" />
+      <source>Copy version information to the clipboard</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2753" />
+      <source>&lt;b&gt;Copy Versions&lt;/b&gt;&lt;p&gt;This generates version information and copies it to the clipboard.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2769" />
+      <location filename="../UI/UserInterface.py" line="2762" />
       <source>Show Error Log</source>
       <translation>Mostrar Registo de Erros</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2738" />
+      <location filename="../UI/UserInterface.py" line="2763" />
       <source>Show Error &amp;Log...</source>
       <translation>Mostrar &amp;Registo de Erros...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2746" />
+      <location filename="../UI/UserInterface.py" line="2771" />
       <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2755" />
+      <location filename="../UI/UserInterface.py" line="2780" />
       <source>Show Install Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2756" />
+      <location filename="../UI/UserInterface.py" line="2781" />
       <source>Show Install &amp;Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2762" />
+      <location filename="../UI/UserInterface.py" line="2787" />
       <source>Show Installation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2764" />
+      <location filename="../UI/UserInterface.py" line="2789" />
       <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4634" />
-      <location filename="../UI/UserInterface.py" line="2774" />
+      <location filename="../UI/UserInterface.py" line="4672" />
+      <location filename="../UI/UserInterface.py" line="2799" />
       <source>Report Bug</source>
       <translation>Reportar Falho</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2774" />
+      <location filename="../UI/UserInterface.py" line="2799" />
       <source>Report &amp;Bug...</source>
       <translation>Reportar &amp;Falho...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2776" />
+      <location filename="../UI/UserInterface.py" line="2801" />
       <source>Report a bug</source>
       <translation>Reportar um falho</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2778" />
+      <location filename="../UI/UserInterface.py" line="2803" />
       <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="2784" />
+      <location filename="../UI/UserInterface.py" line="2809" />
       <source>Request Feature</source>
       <translation>Solicitar Característica</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2785" />
+      <location filename="../UI/UserInterface.py" line="2810" />
       <source>Request &amp;Feature...</source>
       <translation>Solicitar Ca&amp;racterística...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2791" />
+      <location filename="../UI/UserInterface.py" line="2816" />
       <source>Send a feature request</source>
       <translation>Enviar uma solicitude de característica</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2818" />
       <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="4094" />
-      <location filename="../UI/UserInterface.py" line="2804" />
+      <location filename="../UI/UserInterface.py" line="4120" />
+      <location filename="../UI/UserInterface.py" line="2829" />
       <source>Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2806" />
+      <location filename="../UI/UserInterface.py" line="2831" />
       <source>&amp;Testing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2812" />
+      <location filename="../UI/UserInterface.py" line="2837" />
       <source>Start the testing dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2814" />
+      <location filename="../UI/UserInterface.py" line="2839" />
       <source>&lt;b&gt;Testing&lt;/b&gt;&lt;p&gt;Perform test runs. The dialog gives the ability to select and run a test suite or auto discover them.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2825" />
+      <location filename="../UI/UserInterface.py" line="2850" />
       <source>Restart Last Test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2827" />
+      <location filename="../UI/UserInterface.py" line="2852" />
       <source>&amp;Restart Last Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2833" />
+      <location filename="../UI/UserInterface.py" line="2858" />
       <source>Restarts the last test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2835" />
+      <location filename="../UI/UserInterface.py" line="2860" />
       <source>&lt;b&gt;Restart Last Test&lt;/b&gt;&lt;p&gt;Restarts the test performed last.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2845" />
+      <location filename="../UI/UserInterface.py" line="2870" />
       <source>Rerun Failed Tests</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2847" />
+      <location filename="../UI/UserInterface.py" line="2872" />
       <source>Rerun Failed Tests...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2854" />
+      <location filename="../UI/UserInterface.py" line="2879" />
       <source>Rerun failed tests of the last run</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2857" />
+      <location filename="../UI/UserInterface.py" line="2882" />
       <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last test run.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2867" />
-      <source>Test Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2869" />
-      <source>Test &amp;Script...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2875" />
-      <source>Run tests of the current script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2877" />
-      <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2884" />
-      <source>Test Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2886" />
-      <source>Test &amp;Project...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2892" />
-      <source>Run tests of the current project</source>
+      <source>Test Script</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2894" />
-      <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2903" />
-      <source>Qt-Designer</source>
-      <translation />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2905" />
-      <source>Qt-&amp;Designer...</source>
-      <translation />
+      <source>Test &amp;Script...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2900" />
+      <source>Run tests of the current script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2902" />
+      <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2909" />
+      <source>Test Project</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2911" />
-      <source>Start Qt-Designer</source>
-      <translation>Iniciar Qt-Designer</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2913" />
-      <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2922" />
-      <source>Qt-Linguist</source>
-      <translation />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2924" />
-      <source>Qt-&amp;Linguist...</source>
+      <source>Test &amp;Project...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2917" />
+      <source>Run tests of the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2919" />
+      <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2928" />
+      <source>Qt-Designer</source>
       <translation />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2930" />
+      <source>Qt-&amp;Designer...</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2936" />
+      <source>Start Qt-Designer</source>
+      <translation>Iniciar Qt-Designer</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2938" />
+      <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2947" />
+      <source>Qt-Linguist</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2949" />
+      <source>Qt-&amp;Linguist...</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2955" />
       <source>Start Qt-Linguist</source>
       <translation>Iniciar Qt-Linguist</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2932" />
+      <location filename="../UI/UserInterface.py" line="2957" />
       <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2940" />
+      <location filename="../UI/UserInterface.py" line="2965" />
       <source>UI Previewer</source>
       <translation>Antevisor de UI</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2942" />
+      <location filename="../UI/UserInterface.py" line="2967" />
       <source>&amp;UI Previewer...</source>
       <translation>Antevisor &amp;UI...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2948" />
+      <location filename="../UI/UserInterface.py" line="2973" />
       <source>Start the UI Previewer</source>
       <translation>Iniciar Antevisor de UI</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2950" />
-      <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="2956" />
-      <source>Translations Previewer</source>
-      <translation>Antevisor de Traduções</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2958" />
-      <source>&amp;Translations Previewer...</source>
-      <translation>Antevisor de &amp;Traduções...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2964" />
-      <source>Start the Translations Previewer</source>
-      <translation>Iniciar Antevisor de Traduções</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2966" />
-      <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2975" />
+      <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="2981" />
+      <source>Translations Previewer</source>
+      <translation>Antevisor de Traduções</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2983" />
+      <source>&amp;Translations Previewer...</source>
+      <translation>Antevisor de &amp;Traduções...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2989" />
+      <source>Start the Translations Previewer</source>
+      <translation>Iniciar Antevisor de Traduções</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2991" />
+      <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3000" />
       <source>Compare Files</source>
       <translation>Comparar Ficheiros</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
-      <source>&amp;Compare Files...</source>
-      <translation>&amp;Comparar Ficheiros...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3002" />
-      <location filename="../UI/UserInterface.py" line="2983" />
+      <source>&amp;Compare Files...</source>
+      <translation>&amp;Comparar Ficheiros...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3027" />
+      <location filename="../UI/UserInterface.py" line="3008" />
       <source>Compare two files</source>
       <translation>Comparar dois ficheiros</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2985" />
+      <location filename="../UI/UserInterface.py" line="3010" />
       <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2994" />
+      <location filename="../UI/UserInterface.py" line="3019" />
       <source>Compare Files side by side</source>
       <translation>Comparar Ficheiros lado-a-lado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2996" />
+      <location filename="../UI/UserInterface.py" line="3021" />
       <source>Compare &amp;Files side by side...</source>
       <translation>Comparar &amp;Ficheiros lado-a-lado...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3004" />
+      <location filename="../UI/UserInterface.py" line="3029" />
       <source>&lt;b&gt;Compare Files side by side&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files and show the result side by side.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3014" />
+      <location filename="../UI/UserInterface.py" line="3039" />
       <source>SQL Browser</source>
       <translation>Navegador SQL</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3016" />
+      <location filename="../UI/UserInterface.py" line="3041" />
       <source>SQL &amp;Browser...</source>
       <translation>Navegador S&amp;QL...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3022" />
+      <location filename="../UI/UserInterface.py" line="3047" />
       <source>Browse a SQL database</source>
       <translation>Navegar numa base de dados SQL</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3024" />
-      <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="3038" />
-      <location filename="../UI/UserInterface.py" line="3030" />
-      <source>Mini Editor</source>
-      <translation>Mini Editor</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3032" />
-      <source>Mini &amp;Editor...</source>
-      <translation>Mini &amp;Editor...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3040" />
-      <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="3049" />
-      <source>Hex Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3051" />
-      <source>&amp;Hex Editor...</source>
-      <translation type="unfinished" />
+      <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="3063" />
+      <location filename="../UI/UserInterface.py" line="3055" />
+      <source>Mini Editor</source>
+      <translation>Mini Editor</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3057" />
+      <source>Mini &amp;Editor...</source>
+      <translation>Mini &amp;Editor...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3065" />
+      <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="3074" />
+      <source>Hex Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3076" />
+      <source>&amp;Hex Editor...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3082" />
       <source>Start the eric Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3059" />
+      <location filename="../UI/UserInterface.py" line="3084" />
       <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3069" />
+      <location filename="../UI/UserInterface.py" line="3094" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3071" />
-      <source>eric &amp;Web Browser...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3077" />
-      <source>Start the eric Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3079" />
-      <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3088" />
-      <source>Icon Editor</source>
-      <translation>Editor de Ícones</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3090" />
-      <source>&amp;Icon Editor...</source>
-      <translation>Editor de &amp;Ícones...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3096" />
+      <source>eric &amp;Web Browser...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3102" />
+      <source>Start the eric Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3104" />
+      <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3113" />
+      <source>Icon Editor</source>
+      <translation>Editor de Ícones</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3115" />
+      <source>&amp;Icon Editor...</source>
+      <translation>Editor de &amp;Ícones...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3121" />
       <source>Start the eric Icon Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3098" />
+      <location filename="../UI/UserInterface.py" line="3123" />
       <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6494" />
-      <location filename="../UI/UserInterface.py" line="3110" />
+      <location filename="../UI/UserInterface.py" line="6532" />
+      <location filename="../UI/UserInterface.py" line="3135" />
       <source>Snapshot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3112" />
+      <location filename="../UI/UserInterface.py" line="3137" />
       <source>&amp;Snapshot...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3118" />
+      <location filename="../UI/UserInterface.py" line="3143" />
       <source>Take snapshots of a screen region</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3120" />
+      <location filename="../UI/UserInterface.py" line="3145" />
       <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3130" />
+      <location filename="../UI/UserInterface.py" line="3155" />
       <source>eric PDF Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3132" />
-      <source>eric PDF &amp;Viewer...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3138" />
-      <source>Start the eric PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3140" />
-      <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3149" />
-      <source>Preferences</source>
-      <translation>Preferências</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3151" />
-      <source>&amp;Preferences...</source>
-      <translation>&amp;Preferências...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3157" />
+      <source>eric PDF &amp;Viewer...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3163" />
+      <source>Start the eric PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3165" />
+      <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3174" />
+      <source>Preferences</source>
+      <translation>Preferências</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3176" />
+      <source>&amp;Preferences...</source>
+      <translation>&amp;Preferências...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3182" />
       <source>Set the prefered configuration</source>
       <translation>Definir a configuração desejada</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3159" />
+      <location filename="../UI/UserInterface.py" line="3184" />
       <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="3170" />
+      <location filename="../UI/UserInterface.py" line="3195" />
       <source>Export Preferences</source>
       <translation>Exportar Preferências</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3172" />
+      <location filename="../UI/UserInterface.py" line="3197" />
       <source>E&amp;xport Preferences...</source>
       <translation>E&amp;xportar Preferências...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3178" />
+      <location filename="../UI/UserInterface.py" line="3203" />
       <source>Export the current configuration</source>
       <translation>Exportar a configuração atual</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3180" />
+      <location filename="../UI/UserInterface.py" line="3205" />
       <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="3189" />
+      <location filename="../UI/UserInterface.py" line="3214" />
       <source>Import Preferences</source>
       <translation>Importar Preferências</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3191" />
+      <location filename="../UI/UserInterface.py" line="3216" />
       <source>I&amp;mport Preferences...</source>
       <translation>&amp;Importar Preferências...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3198" />
+      <location filename="../UI/UserInterface.py" line="3223" />
       <source>Import a previously exported configuration</source>
       <translation>Importar uma configuração exportada antes</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3201" />
+      <location filename="../UI/UserInterface.py" line="3226" />
       <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="3210" />
+      <location filename="../UI/UserInterface.py" line="3235" />
       <source>Export Theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3212" />
-      <source>Export Theme...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3218" />
-      <source>Export the current theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3220" />
-      <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3229" />
-      <source>Import Theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3231" />
-      <source>Import Theme...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3237" />
+      <source>Export Theme...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3243" />
+      <source>Export the current theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3245" />
+      <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3254" />
+      <source>Import Theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3256" />
+      <source>Import Theme...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3262" />
       <source>Import a previously exported theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
+      <location filename="../UI/UserInterface.py" line="3264" />
       <source>&lt;b&gt;Import Theme&lt;/b&gt;&lt;p&gt;Import a previously exported theme.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3248" />
+      <location filename="../UI/UserInterface.py" line="3273" />
       <source>Reload APIs</source>
       <translation>Recarregar APIs</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3248" />
+      <location filename="../UI/UserInterface.py" line="3273" />
       <source>Reload &amp;APIs</source>
       <translation>Recarregar &amp;APIs</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3250" />
+      <location filename="../UI/UserInterface.py" line="3275" />
       <source>Reload the API information</source>
       <translation>Recarregar a informação de API</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3252" />
+      <location filename="../UI/UserInterface.py" line="3277" />
       <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3266" />
-      <location filename="../UI/UserInterface.py" line="3258" />
+      <location filename="../UI/UserInterface.py" line="3291" />
+      <location filename="../UI/UserInterface.py" line="3283" />
       <source>Show external tools</source>
       <translation>Mostrar ferramentas externas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3260" />
+      <location filename="../UI/UserInterface.py" line="3285" />
       <source>Show external &amp;tools</source>
       <translation>Mostrar &amp;ferramentas externas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3268" />
+      <location filename="../UI/UserInterface.py" line="3293" />
       <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3278" />
+      <location filename="../UI/UserInterface.py" line="3303" />
       <source>View Profiles</source>
       <translation>Perfiles de Vista</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3280" />
+      <location filename="../UI/UserInterface.py" line="3305" />
       <source>&amp;View Profiles...</source>
       <translation>Perfiles de &amp;Vista...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3286" />
+      <location filename="../UI/UserInterface.py" line="3311" />
       <source>Configure view profiles</source>
       <translation>Configurar perfiles de vista</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3288" />
+      <location filename="../UI/UserInterface.py" line="3313" />
       <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="3299" />
+      <location filename="../UI/UserInterface.py" line="3324" />
       <source>Toolbars</source>
       <translation>Barras de Ferramentas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3301" />
+      <location filename="../UI/UserInterface.py" line="3326" />
       <source>Tool&amp;bars...</source>
       <translation>&amp;Barras de Ferramentas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3307" />
+      <location filename="../UI/UserInterface.py" line="3332" />
       <source>Configure toolbars</source>
       <translation>Configurar as barras de ferramentas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
+      <location filename="../UI/UserInterface.py" line="3334" />
       <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3320" />
+      <location filename="../UI/UserInterface.py" line="3345" />
       <source>Keyboard Shortcuts</source>
       <translation>Atalhos de Teclado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3322" />
+      <location filename="../UI/UserInterface.py" line="3347" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation>Atalho&amp;s de Teclado...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3328" />
+      <location filename="../UI/UserInterface.py" line="3353" />
       <source>Set the keyboard shortcuts</source>
       <translation>Definir os atalhos de teclado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3330" />
+      <location filename="../UI/UserInterface.py" line="3355" />
       <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7453" />
-      <location filename="../UI/UserInterface.py" line="7434" />
-      <location filename="../UI/UserInterface.py" line="3340" />
+      <location filename="../UI/UserInterface.py" line="7491" />
+      <location filename="../UI/UserInterface.py" line="7472" />
+      <location filename="../UI/UserInterface.py" line="3365" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Exportar Atalhos de Teclado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3342" />
-      <source>&amp;Export Keyboard Shortcuts...</source>
-      <translation>&amp;Exportar Atalhos de Teclado...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3348" />
-      <source>Export the keyboard shortcuts</source>
-      <translation>Exportar os Atalhos de Teclado</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3350" />
-      <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7472" />
-      <location filename="../UI/UserInterface.py" line="3359" />
-      <source>Import Keyboard Shortcuts</source>
-      <translation>Importar Atalhos de Teclado</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3361" />
-      <source>&amp;Import Keyboard Shortcuts...</source>
-      <translation>&amp;Importar Atalhos de Teclado...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3367" />
+      <source>&amp;Export Keyboard Shortcuts...</source>
+      <translation>&amp;Exportar Atalhos de Teclado...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3373" />
+      <source>Export the keyboard shortcuts</source>
+      <translation>Exportar os Atalhos de Teclado</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3375" />
+      <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="7510" />
+      <location filename="../UI/UserInterface.py" line="3384" />
+      <source>Import Keyboard Shortcuts</source>
+      <translation>Importar Atalhos de Teclado</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3386" />
+      <source>&amp;Import Keyboard Shortcuts...</source>
+      <translation>&amp;Importar Atalhos de Teclado...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3392" />
       <source>Import the keyboard shortcuts</source>
       <translation>Importar os atalhos de teclado</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3369" />
+      <location filename="../UI/UserInterface.py" line="3394" />
       <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3379" />
+      <location filename="../UI/UserInterface.py" line="3404" />
       <source>Manage SSL Certificates</source>
       <translation>Gestionar Certificados SSL</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3381" />
+      <location filename="../UI/UserInterface.py" line="3406" />
       <source>Manage SSL Certificates...</source>
       <translation>Gestionar Certificados SSL...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3388" />
-      <source>Manage the saved SSL certificates</source>
-      <translation>Gestionar certificados SSL gravados</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3391" />
-      <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3401" />
-      <source>Edit Message Filters</source>
-      <translation>Editar Filtros de Mensagens</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3403" />
-      <source>Edit Message Filters...</source>
-      <translation>Editar Filtros de Mensagens...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3410" />
-      <source>Edit the message filters used to suppress unwanted messages</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3413" />
-      <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3432" />
+      <source>Manage the saved SSL certificates</source>
+      <translation>Gestionar certificados SSL gravados</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3416" />
+      <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3426" />
-      <location filename="../UI/UserInterface.py" line="3424" />
-      <source>Clear private data</source>
-      <translation type="unfinished">Limpar dados privados</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3434" />
-      <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3445" />
-      <location filename="../UI/UserInterface.py" line="3444" />
-      <source>Activate current editor</source>
-      <translation>Ativar o editor atual</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3446" />
-      <source>Alt+Shift+E</source>
-      <translation />
+      <source>Edit Message Filters</source>
+      <translation>Editar Filtros de Mensagens</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3428" />
+      <source>Edit Message Filters...</source>
+      <translation>Editar Filtros de Mensagens...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3435" />
+      <source>Edit the message filters used to suppress unwanted messages</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3438" />
+      <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3457" />
-      <location filename="../UI/UserInterface.py" line="3456" />
-      <source>Show next</source>
-      <translation>Mostrar próximo</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3458" />
-      <source>Ctrl+Alt+Tab</source>
-      <translation />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3469" />
-      <location filename="../UI/UserInterface.py" line="3468" />
-      <source>Show previous</source>
-      <translation>Mostrar anterior</translation>
+      <location filename="../UI/UserInterface.py" line="3451" />
+      <location filename="../UI/UserInterface.py" line="3449" />
+      <source>Clear private data</source>
+      <translation type="unfinished">Limpar dados privados</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3459" />
+      <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3470" />
-      <source>Shift+Ctrl+Alt+Tab</source>
-      <translation />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3481" />
-      <location filename="../UI/UserInterface.py" line="3480" />
-      <source>Switch between tabs</source>
-      <translation>Mudar entre separadores</translation>
+      <location filename="../UI/UserInterface.py" line="3469" />
+      <source>Activate current editor</source>
+      <translation>Ativar o editor atual</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3471" />
+      <source>Alt+Shift+E</source>
+      <translation />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3482" />
-      <source>Ctrl+1</source>
-      <translation />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3492" />
-      <source>Plugin Infos</source>
-      <translation>Informação dos Complementos</translation>
+      <location filename="../UI/UserInterface.py" line="3481" />
+      <source>Show next</source>
+      <translation>Mostrar próximo</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3483" />
+      <source>Ctrl+Alt+Tab</source>
+      <translation />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3494" />
+      <location filename="../UI/UserInterface.py" line="3493" />
+      <source>Show previous</source>
+      <translation>Mostrar anterior</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3495" />
+      <source>Shift+Ctrl+Alt+Tab</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3506" />
+      <location filename="../UI/UserInterface.py" line="3505" />
+      <source>Switch between tabs</source>
+      <translation>Mudar entre separadores</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3507" />
+      <source>Ctrl+1</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3517" />
+      <source>Plugin Infos</source>
+      <translation>Informação dos Complementos</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3519" />
       <source>&amp;Plugin Infos...</source>
       <translation>Informação dos &amp;Complementos...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3500" />
+      <location filename="../UI/UserInterface.py" line="3525" />
       <source>Show Plugin Infos</source>
       <translation>Mostrar Informação dos Complementos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3502" />
+      <location filename="../UI/UserInterface.py" line="3527" />
       <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="3520" />
-      <location filename="../UI/UserInterface.py" line="3512" />
+      <location filename="../UI/UserInterface.py" line="3545" />
+      <location filename="../UI/UserInterface.py" line="3537" />
       <source>Install Plugins</source>
       <translation>Instalar Complementos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3514" />
-      <source>&amp;Install Plugins...</source>
-      <translation>&amp;Instalar Complementos...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3522" />
-      <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="3539" />
-      <location filename="../UI/UserInterface.py" line="3531" />
+      <source>&amp;Install Plugins...</source>
+      <translation>&amp;Instalar Complementos...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3547" />
+      <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="3564" />
+      <location filename="../UI/UserInterface.py" line="3556" />
       <source>Uninstall Plugin</source>
       <translation>Desinstalar Complemento</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3533" />
-      <source>&amp;Uninstall Plugin...</source>
-      <translation>&amp;Desinstalar Complemento...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3541" />
-      <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="3552" />
-      <source>Plugin &amp;Repository...</source>
-      <translation>&amp;Repositório de Complementos...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3558" />
+      <source>&amp;Uninstall Plugin...</source>
+      <translation>&amp;Desinstalar Complemento...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3566" />
+      <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="3577" />
+      <source>Plugin &amp;Repository...</source>
+      <translation>&amp;Repositório de Complementos...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3583" />
       <source>Show Plugins available for download</source>
       <translation>Mostrar Complementos disponíveis para descarregar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3560" />
+      <location filename="../UI/UserInterface.py" line="3585" />
       <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Repositório de Complementos...&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo que mostra a lista de complementos disponíveis em Internet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3587" />
-      <location filename="../UI/UserInterface.py" line="3586" />
+      <location filename="../UI/UserInterface.py" line="3612" />
+      <location filename="../UI/UserInterface.py" line="3611" />
       <source>Qt5 Documentation</source>
       <translation>Documentação de Qt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3593" />
+      <location filename="../UI/UserInterface.py" line="3618" />
       <source>Open Qt5 Documentation</source>
       <translation>Abrir a Documentação de Qt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3595" />
+      <location filename="../UI/UserInterface.py" line="3620" />
       <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3608" />
-      <location filename="../UI/UserInterface.py" line="3607" />
+      <location filename="../UI/UserInterface.py" line="3633" />
+      <location filename="../UI/UserInterface.py" line="3632" />
       <source>Qt6 Documentation</source>
       <translation type="unfinished">Documentação de Qt5 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3614" />
+      <location filename="../UI/UserInterface.py" line="3639" />
       <source>Open Qt6 Documentation</source>
       <translation type="unfinished">Abrir a Documentação de Qt5 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3616" />
+      <location filename="../UI/UserInterface.py" line="3641" />
       <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3629" />
-      <location filename="../UI/UserInterface.py" line="3628" />
+      <location filename="../UI/UserInterface.py" line="3654" />
+      <location filename="../UI/UserInterface.py" line="3653" />
       <source>PyQt5 Documentation</source>
       <translation>Documentação do PyQt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3635" />
+      <location filename="../UI/UserInterface.py" line="3660" />
       <source>Open PyQt5 Documentation</source>
       <translation>Abrir a Documentação de PyQt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3637" />
+      <location filename="../UI/UserInterface.py" line="3662" />
       <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3650" />
-      <location filename="../UI/UserInterface.py" line="3649" />
+      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3674" />
       <source>PyQt6 Documentation</source>
       <translation type="unfinished">Documentação do PyQt5 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3656" />
+      <location filename="../UI/UserInterface.py" line="3681" />
       <source>Open PyQt6 Documentation</source>
       <translation type="unfinished">Abrir a Documentação de PyQt5 {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3658" />
+      <location filename="../UI/UserInterface.py" line="3683" />
       <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3676" />
-      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3701" />
+      <location filename="../UI/UserInterface.py" line="3700" />
       <source>Python 3 Documentation</source>
       <translation>Documentação de Python 3</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3682" />
+      <location filename="../UI/UserInterface.py" line="3707" />
       <source>Open Python 3 Documentation</source>
       <translation>Abrir a Documentação de Python 3</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3684" />
-      <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3703" />
-      <location filename="../UI/UserInterface.py" line="3702" />
-      <source>eric API Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3709" />
-      <source>Open eric API Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3711" />
-      <source>&lt;b&gt;eric API Documentation&lt;/b&gt;&lt;p&gt;Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3729" />
+      <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3728" />
+      <location filename="../UI/UserInterface.py" line="3727" />
+      <source>eric API Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3734" />
+      <source>Open eric API Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3736" />
+      <source>&lt;b&gt;eric API Documentation&lt;/b&gt;&lt;p&gt;Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3753" />
       <source>PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3735" />
+      <location filename="../UI/UserInterface.py" line="3760" />
       <source>Open PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3737" />
+      <location filename="../UI/UserInterface.py" line="3762" />
       <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3755" />
-      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3780" />
+      <location filename="../UI/UserInterface.py" line="3779" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3761" />
+      <location filename="../UI/UserInterface.py" line="3786" />
       <source>Open PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3763" />
+      <location filename="../UI/UserInterface.py" line="3788" />
       <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3865" />
+      <location filename="../UI/UserInterface.py" line="3890" />
       <source>E&amp;xtras</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3875" />
+      <location filename="../UI/UserInterface.py" line="3900" />
       <source>Wi&amp;zards</source>
       <translation>A&amp;ssistentes</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3893" />
+      <location filename="../UI/UserInterface.py" line="3918" />
       <source>P&amp;lugins</source>
       <translation>Comp&amp;lementos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3902" />
+      <location filename="../UI/UserInterface.py" line="3927" />
       <source>Configure...</source>
       <translation>Configurar...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3911" />
+      <location filename="../UI/UserInterface.py" line="3936" />
       <source>&amp;Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3928" />
+      <location filename="../UI/UserInterface.py" line="3953" />
       <source>Select Tool Group</source>
       <translation>Selecionar Grupo de Ferramentas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3939" />
+      <location filename="../UI/UserInterface.py" line="3964" />
       <source>Se&amp;ttings</source>
       <translation>Definiçõe&amp;s</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3972" />
+      <location filename="../UI/UserInterface.py" line="3997" />
       <source>&amp;Window</source>
       <translation>&amp;Janela</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3981" />
+      <location filename="../UI/UserInterface.py" line="4006" />
       <source>&amp;Windows</source>
       <translation>&amp;Janelas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3985" />
+      <location filename="../UI/UserInterface.py" line="4010" />
       <source>Central Park</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3989" />
+      <location filename="../UI/UserInterface.py" line="4014" />
       <source>Left Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4008" />
+      <location filename="../UI/UserInterface.py" line="4033" />
       <source>Right Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4027" />
+      <location filename="../UI/UserInterface.py" line="4052" />
       <source>Bottom Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4035" />
+      <location filename="../UI/UserInterface.py" line="4060" />
       <source>Plug-ins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4041" />
+      <location filename="../UI/UserInterface.py" line="4066" />
       <source>&amp;Toolbars</source>
       <translation>Barras de Ferramen&amp;tas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4054" />
+      <location filename="../UI/UserInterface.py" line="4079" />
       <source>&amp;Help</source>
       <translation>&amp;Ajuda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4109" />
-      <location filename="../UI/UserInterface.py" line="4093" />
+      <location filename="../UI/UserInterface.py" line="4135" />
+      <location filename="../UI/UserInterface.py" line="4119" />
       <source>Tools</source>
       <translation>Ferramentas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4111" />
-      <location filename="../UI/UserInterface.py" line="4097" />
+      <location filename="../UI/UserInterface.py" line="4137" />
+      <location filename="../UI/UserInterface.py" line="4123" />
       <source>Settings</source>
       <translation>Definições</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6222" />
-      <location filename="../UI/UserInterface.py" line="4112" />
-      <location filename="../UI/UserInterface.py" line="4098" />
+      <location filename="../UI/UserInterface.py" line="6260" />
+      <location filename="../UI/UserInterface.py" line="4138" />
+      <location filename="../UI/UserInterface.py" line="4124" />
       <source>Help</source>
       <translation>Ajuda</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4113" />
-      <location filename="../UI/UserInterface.py" line="4099" />
+      <location filename="../UI/UserInterface.py" line="4139" />
+      <location filename="../UI/UserInterface.py" line="4125" />
       <source>Profiles</source>
       <translation>Perfiles</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
-      <location filename="../UI/UserInterface.py" line="4100" />
+      <location filename="../UI/UserInterface.py" line="4140" />
+      <location filename="../UI/UserInterface.py" line="4126" />
       <source>Plugins</source>
       <translation>Complementos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4110" />
+      <location filename="../UI/UserInterface.py" line="4136" />
       <source>Unittest</source>
       <translation>Teste Unitário</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4284" />
+      <location filename="../UI/UserInterface.py" line="4310" />
       <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4293" />
+      <location filename="../UI/UserInterface.py" line="4319" />
       <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4302" />
+      <location filename="../UI/UserInterface.py" line="4328" />
       <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4311" />
+      <location filename="../UI/UserInterface.py" line="4337" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4320" />
+      <location filename="../UI/UserInterface.py" line="4346" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4329" />
+      <location filename="../UI/UserInterface.py" line="4355" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4343" />
+      <location filename="../UI/UserInterface.py" line="4369" />
       <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4414" />
-      <location filename="../UI/UserInterface.py" line="4373" />
+      <location filename="../UI/UserInterface.py" line="4440" />
+      <location filename="../UI/UserInterface.py" line="4399" />
       <source>External Tools/{0}</source>
       <translation>Ferramentas Externas/{0}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4522" />
+      <location filename="../UI/UserInterface.py" line="4548" />
       <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="4571" />
+      <location filename="../UI/UserInterface.py" line="4597" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Security)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4588" />
+      <location filename="../UI/UserInterface.py" line="4614" />
       <source>Desktop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4592" />
+      <location filename="../UI/UserInterface.py" line="4618" />
       <source>Session Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4595" />
+      <location filename="../UI/UserInterface.py" line="4621" />
       <source>&lt;/table&gt;</source>
       <translation />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4635" />
+      <location filename="../UI/UserInterface.py" line="4673" />
       <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="4970" />
+      <location filename="../UI/UserInterface.py" line="5008" />
       <source>Restart application</source>
       <translation>Reiniciar a aplicação</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4971" />
+      <location filename="../UI/UserInterface.py" line="5009" />
       <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="4995" />
+      <location filename="../UI/UserInterface.py" line="5033" />
       <source>Upgrade PyQt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4996" />
+      <location filename="../UI/UserInterface.py" line="5034" />
       <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5046" />
-      <location filename="../UI/UserInterface.py" line="5020" />
+      <location filename="../UI/UserInterface.py" line="5084" />
+      <location filename="../UI/UserInterface.py" line="5058" />
       <source>Upgrade Eric</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5021" />
+      <location filename="../UI/UserInterface.py" line="5059" />
       <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5047" />
+      <location filename="../UI/UserInterface.py" line="5085" />
       <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
  Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5105" />
+      <location filename="../UI/UserInterface.py" line="5143" />
       <source>&amp;Builtin Tools</source>
       <translation>Ferramentas &amp;Internas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5124" />
+      <location filename="../UI/UserInterface.py" line="5162" />
       <source>&amp;Plugin Tools</source>
       <translation>Ferramentas dos &amp;Complementos</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5127" />
+      <location filename="../UI/UserInterface.py" line="5165" />
       <source>&amp;User Tools</source>
       <translation>Ferramentas de &amp;Utilizador</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5153" />
+      <location filename="../UI/UserInterface.py" line="5191" />
       <source>Configure Tool Groups ...</source>
       <translation>Configurar Grupos de Ferramentas...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5157" />
+      <location filename="../UI/UserInterface.py" line="5195" />
       <source>Configure current Tool Group ...</source>
       <translation>Configurar o atual Grupo de Ferramentas ...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5196" />
-      <location filename="../UI/UserInterface.py" line="5176" />
+      <location filename="../UI/UserInterface.py" line="5234" />
+      <location filename="../UI/UserInterface.py" line="5214" />
       <source>No User Tools Configured</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5272" />
+      <location filename="../UI/UserInterface.py" line="5310" />
       <source>&amp;Show all</source>
       <translation>&amp;Mostrar tudo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5274" />
+      <location filename="../UI/UserInterface.py" line="5312" />
       <source>&amp;Hide all</source>
       <translation>&amp;Esconder tudo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6359" />
-      <location filename="../UI/UserInterface.py" line="6348" />
-      <location filename="../UI/UserInterface.py" line="6300" />
-      <location filename="../UI/UserInterface.py" line="6290" />
-      <location filename="../UI/UserInterface.py" line="6121" />
-      <location filename="../UI/UserInterface.py" line="6111" />
-      <location filename="../UI/UserInterface.py" line="6053" />
-      <location filename="../UI/UserInterface.py" line="6043" />
+      <location filename="../UI/UserInterface.py" line="6397" />
+      <location filename="../UI/UserInterface.py" line="6386" />
+      <location filename="../UI/UserInterface.py" line="6338" />
+      <location filename="../UI/UserInterface.py" line="6328" />
+      <location filename="../UI/UserInterface.py" line="6159" />
+      <location filename="../UI/UserInterface.py" line="6149" />
+      <location filename="../UI/UserInterface.py" line="6091" />
+      <location filename="../UI/UserInterface.py" line="6081" />
       <source>Problem</source>
       <translation>Problema</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6360" />
-      <location filename="../UI/UserInterface.py" line="6349" />
-      <location filename="../UI/UserInterface.py" line="6301" />
-      <location filename="../UI/UserInterface.py" line="6291" />
-      <location filename="../UI/UserInterface.py" line="6122" />
-      <location filename="../UI/UserInterface.py" line="6112" />
-      <location filename="../UI/UserInterface.py" line="6054" />
-      <location filename="../UI/UserInterface.py" line="6044" />
+      <location filename="../UI/UserInterface.py" line="6398" />
+      <location filename="../UI/UserInterface.py" line="6387" />
+      <location filename="../UI/UserInterface.py" line="6339" />
+      <location filename="../UI/UserInterface.py" line="6329" />
+      <location filename="../UI/UserInterface.py" line="6160" />
+      <location filename="../UI/UserInterface.py" line="6150" />
+      <location filename="../UI/UserInterface.py" line="6092" />
+      <location filename="../UI/UserInterface.py" line="6082" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6603" />
-      <location filename="../UI/UserInterface.py" line="6514" />
-      <location filename="../UI/UserInterface.py" line="6395" />
-      <location filename="../UI/UserInterface.py" line="6372" />
-      <location filename="../UI/UserInterface.py" line="6313" />
-      <location filename="../UI/UserInterface.py" line="6260" />
-      <location filename="../UI/UserInterface.py" line="6238" />
-      <location filename="../UI/UserInterface.py" line="6197" />
-      <location filename="../UI/UserInterface.py" line="6188" />
-      <location filename="../UI/UserInterface.py" line="6153" />
-      <location filename="../UI/UserInterface.py" line="6144" />
-      <location filename="../UI/UserInterface.py" line="6085" />
-      <location filename="../UI/UserInterface.py" line="6076" />
+      <location filename="../UI/UserInterface.py" line="6641" />
+      <location filename="../UI/UserInterface.py" line="6552" />
+      <location filename="../UI/UserInterface.py" line="6433" />
+      <location filename="../UI/UserInterface.py" line="6410" />
+      <location filename="../UI/UserInterface.py" line="6351" />
+      <location filename="../UI/UserInterface.py" line="6298" />
+      <location filename="../UI/UserInterface.py" line="6276" />
+      <location filename="../UI/UserInterface.py" line="6235" />
+      <location filename="../UI/UserInterface.py" line="6226" />
+      <location filename="../UI/UserInterface.py" line="6191" />
+      <location filename="../UI/UserInterface.py" line="6182" />
+      <location filename="../UI/UserInterface.py" line="6123" />
+      <location filename="../UI/UserInterface.py" line="6114" />
       <source>Process Generation Error</source>
       <translation>Erro na Criação de Processo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6077" />
+      <location filename="../UI/UserInterface.py" line="6115" />
       <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6086" />
+      <location filename="../UI/UserInterface.py" line="6124" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6145" />
+      <location filename="../UI/UserInterface.py" line="6183" />
       <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6154" />
+      <location filename="../UI/UserInterface.py" line="6192" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6189" />
+      <location filename="../UI/UserInterface.py" line="6227" />
       <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6198" />
+      <location filename="../UI/UserInterface.py" line="6236" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6223" />
-      <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="6239" />
-      <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="6261" />
+      <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="6277" />
+      <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6299" />
       <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6314" />
+      <location filename="../UI/UserInterface.py" line="6352" />
       <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6373" />
+      <location filename="../UI/UserInterface.py" line="6411" />
       <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6396" />
+      <location filename="../UI/UserInterface.py" line="6434" />
       <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6495" />
+      <location filename="../UI/UserInterface.py" line="6533" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6515" />
+      <location filename="../UI/UserInterface.py" line="6553" />
       <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6548" />
-      <location filename="../UI/UserInterface.py" line="6538" />
-      <source>External Tools</source>
-      <translation>Ferramentas Externas</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6539" />
-      <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6549" />
-      <source>No toolgroup entry '{0}' found.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="6586" />
+      <location filename="../UI/UserInterface.py" line="6576" />
+      <source>External Tools</source>
+      <translation>Ferramentas Externas</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6577" />
+      <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6587" />
+      <source>No toolgroup entry '{0}' found.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6624" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>A iniciar processo '{0} {1}'.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6604" />
+      <location filename="../UI/UserInterface.py" line="6642" />
       <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6683" />
+      <location filename="../UI/UserInterface.py" line="6721" />
       <source>Process '{0}' has exited.
 </source>
       <translation>Processo '{0}' saiu.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6970" />
-      <location filename="../UI/UserInterface.py" line="6908" />
-      <location filename="../UI/UserInterface.py" line="6864" />
-      <location filename="../UI/UserInterface.py" line="6790" />
-      <location filename="../UI/UserInterface.py" line="6726" />
+      <location filename="../UI/UserInterface.py" line="7008" />
+      <location filename="../UI/UserInterface.py" line="6946" />
+      <location filename="../UI/UserInterface.py" line="6902" />
+      <location filename="../UI/UserInterface.py" line="6828" />
+      <location filename="../UI/UserInterface.py" line="6764" />
       <source>Documentation Missing</source>
       <translation>Falta a Documentação</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6971" />
-      <location filename="../UI/UserInterface.py" line="6909" />
-      <location filename="../UI/UserInterface.py" line="6865" />
-      <location filename="../UI/UserInterface.py" line="6791" />
-      <location filename="../UI/UserInterface.py" line="6727" />
+      <location filename="../UI/UserInterface.py" line="7009" />
+      <location filename="../UI/UserInterface.py" line="6947" />
+      <location filename="../UI/UserInterface.py" line="6903" />
+      <location filename="../UI/UserInterface.py" line="6829" />
+      <location filename="../UI/UserInterface.py" line="6765" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6952" />
-      <location filename="../UI/UserInterface.py" line="6834" />
+      <location filename="../UI/UserInterface.py" line="6990" />
+      <location filename="../UI/UserInterface.py" line="6872" />
       <source>Documentation</source>
       <translation>Documentação</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6835" />
+      <location filename="../UI/UserInterface.py" line="6873" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6953" />
+      <location filename="../UI/UserInterface.py" line="6991" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7132" />
-      <location filename="../UI/UserInterface.py" line="7068" />
+      <location filename="../UI/UserInterface.py" line="7170" />
+      <location filename="../UI/UserInterface.py" line="7106" />
       <source>Start Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7069" />
+      <location filename="../UI/UserInterface.py" line="7107" />
       <source>The eric web browser could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7133" />
+      <location filename="../UI/UserInterface.py" line="7171" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7179" />
+      <location filename="../UI/UserInterface.py" line="7217" />
       <source>Open Browser</source>
       <translation>Abrir Navegador</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7179" />
+      <location filename="../UI/UserInterface.py" line="7217" />
       <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="7512" />
       <location filename="../UI/UserInterface.py" line="7474" />
-      <location filename="../UI/UserInterface.py" line="7436" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7454" />
+      <location filename="../UI/UserInterface.py" line="7492" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7682" />
+      <location filename="../UI/UserInterface.py" line="7720" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7683" />
+      <location filename="../UI/UserInterface.py" line="7721" />
       <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7706" />
+      <location filename="../UI/UserInterface.py" line="7744" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7731" />
-      <location filename="../UI/UserInterface.py" line="7708" />
+      <location filename="../UI/UserInterface.py" line="7769" />
+      <location filename="../UI/UserInterface.py" line="7746" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7776" />
+      <location filename="../UI/UserInterface.py" line="7814" />
       <source>Crash Session found!</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7777" />
+      <location filename="../UI/UserInterface.py" line="7815" />
       <source>A session file of a crashed session was found. Shall this session be restored?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8154" />
+      <location filename="../UI/UserInterface.py" line="8192" />
       <source>Drop Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8155" />
+      <location filename="../UI/UserInterface.py" line="8193" />
       <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="8341" />
+      <location filename="../UI/UserInterface.py" line="8379" />
       <source>Upgrade available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8342" />
+      <location filename="../UI/UserInterface.py" line="8380" />
       <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8387" />
+      <location filename="../UI/UserInterface.py" line="8425" />
       <source>First time usage</source>
       <translation>Usado a primeira vez</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8388" />
+      <location filename="../UI/UserInterface.py" line="8426" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8410" />
+      <location filename="../UI/UserInterface.py" line="8448" />
       <source>Select Workspace Directory</source>
       <translation>Selecionar o Diretório de Trabalho</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8575" />
+      <location filename="../UI/UserInterface.py" line="8616" />
       <source>Unsaved Data Detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8576" />
+      <location filename="../UI/UserInterface.py" line="8617" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -92646,40 +92666,40 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1055" />
+      <location filename="../Debugger/VariablesViewer.py" line="1056" />
       <source>Show Details...</source>
       <translation>Mostrar Detalhes...</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1057" />
-      <source>Expand</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1058" />
-      <source>Collapse</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Debugger/VariablesViewer.py" line="1059" />
+      <source>Expand Subitems</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/VariablesViewer.py" line="1062" />
+      <source>Collapse Subitems</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/VariablesViewer.py" line="1064" />
       <source>Collapse All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1067" />
-      <location filename="../Debugger/VariablesViewer.py" line="1061" />
+      <location filename="../Debugger/VariablesViewer.py" line="1072" />
+      <location filename="../Debugger/VariablesViewer.py" line="1066" />
       <source>Refresh</source>
       <translation type="unfinished">Atualizar</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1069" />
-      <location filename="../Debugger/VariablesViewer.py" line="1063" />
+      <location filename="../Debugger/VariablesViewer.py" line="1074" />
+      <location filename="../Debugger/VariablesViewer.py" line="1068" />
       <source>Configure...</source>
       <translation>Configurar...</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1071" />
-      <location filename="../Debugger/VariablesViewer.py" line="1064" />
+      <location filename="../Debugger/VariablesViewer.py" line="1076" />
+      <location filename="../Debugger/VariablesViewer.py" line="1069" />
       <source>Variables Type Filter...</source>
       <translation type="unfinished" />
     </message>
@@ -97267,91 +97287,91 @@
       <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; tem alterações por gravar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5972" />
+      <location filename="../ViewManager/ViewManager.py" line="5969" />
       <source>Line: {0:5}</source>
       <translation>Linha: {0:5}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5978" />
+      <location filename="../ViewManager/ViewManager.py" line="5975" />
       <source>Pos: {0:5}</source>
       <translation />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5998" />
+      <location filename="../ViewManager/ViewManager.py" line="5995" />
       <source>Language: {0}</source>
       <translation>Linguagem: {0}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6007" />
+      <location filename="../ViewManager/ViewManager.py" line="6004" />
       <source>EOL Mode: {0}</source>
       <translation>Modo EOL: {0}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6503" />
-      <location filename="../ViewManager/ViewManager.py" line="6460" />
+      <location filename="../ViewManager/ViewManager.py" line="6500" />
+      <location filename="../ViewManager/ViewManager.py" line="6457" />
       <source>&amp;Clear</source>
       <translation>&amp;Limpar</translation>
     </message>
     <message>
+      <location filename="../ViewManager/ViewManager.py" line="6494" />
+      <source>&amp;Add</source>
+      <translation>&amp;Adicionar</translation>
+    </message>
+    <message>
       <location filename="../ViewManager/ViewManager.py" line="6497" />
-      <source>&amp;Add</source>
-      <translation>&amp;Adicionar</translation>
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="6500" />
       <source>&amp;Edit...</source>
       <translation>&amp;Editar...</translation>
     </message>
     <message>
+      <location filename="../ViewManager/ViewManager.py" line="7567" />
+      <location filename="../ViewManager/ViewManager.py" line="7553" />
+      <location filename="../ViewManager/ViewManager.py" line="7521" />
+      <source>Edit Spelling Dictionary</source>
+      <translation>Editar Dicionário Ortográfico</translation>
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7524" />
+      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7540" />
+      <source>Editing {0}</source>
+      <translation>A editar {0}</translation>
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7556" />
+      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../ViewManager/ViewManager.py" line="7570" />
-      <location filename="../ViewManager/ViewManager.py" line="7556" />
-      <location filename="../ViewManager/ViewManager.py" line="7524" />
-      <source>Edit Spelling Dictionary</source>
-      <translation>Editar Dicionário Ortográfico</translation>
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7527" />
-      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7543" />
-      <source>Editing {0}</source>
-      <translation>A editar {0}</translation>
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7559" />
-      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7573" />
       <source>The spelling dictionary was saved successfully.</source>
       <translation>O dicionário ortográfico foi guradado com êxito.</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6682" />
+      <location filename="../ViewManager/ViewManager.py" line="6679" />
       <source>Clear Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6683" />
+      <location filename="../ViewManager/ViewManager.py" line="6680" />
       <source>Do you really want to delete all text of the current editor?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="8103" />
-      <location filename="../ViewManager/ViewManager.py" line="8086" />
+      <location filename="../ViewManager/ViewManager.py" line="8100" />
+      <location filename="../ViewManager/ViewManager.py" line="8083" />
       <source>File System Watcher Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="8087" />
+      <location filename="../ViewManager/ViewManager.py" line="8084" />
       <source>&lt;p&gt;The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should &lt;ul&gt;&lt;li&gt;sudo nano /etc/sysctl.conf&lt;/li&gt;&lt;li&gt;add to the bottom "fs.inotify.max_user_instances = 1024"&lt;/li&gt;&lt;li&gt;save and close the editor&lt;/li&gt;&lt;li&gt;sudo sysctl -p&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Error Message: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="8104" />
+      <location filename="../ViewManager/ViewManager.py" line="8101" />
       <source>The file system watcher reported an error with code &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -99207,16 +99227,6 @@
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
-      <source>Select to delete all web databases</source>
-      <translation type="unfinished">Selecionar para apagar todas as bases de dados da web</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
-      <source>Web &amp;Databases</source>
-      <translation type="unfinished">&amp;Bases de Dados da Web</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
       <source>Select to delete all remembered zoom settings</source>
       <translation type="unfinished" />
     </message>
@@ -99230,6 +99240,14 @@
       <source>SSL Certificate Error Exceptions</source>
       <translation type="unfinished" />
     </message>
+    <message>
+      <source>Select to delete all web databases</source>
+      <translation type="vanished">Selecionar para apagar todas as bases de dados da web</translation>
+    </message>
+    <message>
+      <source>Web &amp;Databases</source>
+      <translation type="vanished">&amp;Bases de Dados da Web</translation>
+    </message>
   </context>
   <context>
     <name>WebBrowserJavaScriptConsole</name>
@@ -99478,6 +99496,16 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
+      <source>Select to render all web contents using a dark theme.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
+      <source>Force Dark Mode</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
       <source>Startup</source>
       <translation type="unfinished">Inicio</translation>
     </message>
@@ -100417,355 +100445,355 @@
   <context>
     <name>WebBrowserView</name>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="366" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="353" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="341" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="329" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="367" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="354" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="342" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="330" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="330" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="331" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Não existe o ficheiro &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="367" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="342" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="368" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="343" />
       <source>&lt;p&gt;Could not start a viewer for file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Não pode abrir um visor para o ficheiro &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="354" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="355" />
       <source>&lt;p&gt;Could not start an application for URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Não pode começar uma aplicação para URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="608" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="609" />
       <source>Match {0} of {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="634" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="635" />
       <source>Inspect Element...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="666" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="667" />
       <source>No suggestions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="723" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="724" />
       <source>Open Link in New Tab	Ctrl+LMB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="728" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="729" />
       <source>Open Link in New Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="734" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="735" />
       <source>Open Link in New Private Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="741" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="742" />
       <source>Save Lin&amp;k</source>
       <translation type="unfinished">Gravar &amp;Vínculo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="745" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="746" />
       <source>Bookmark this Link</source>
       <translation type="unfinished">Marcar este Vínculo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="751" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="752" />
       <source>Copy URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="755" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="756" />
       <source>Send URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="764" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="765" />
       <source>Scan Link with VirusTotal</source>
       <translation type="unfinished">Escanear Vínculo com VirusTotal</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="782" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="783" />
       <source>Open Image in New Tab</source>
       <translation type="unfinished">Abrir imagem num Separador Novo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="789" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="790" />
       <source>Save Image</source>
       <translation type="unfinished">Gravar Imagem</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="792" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="793" />
       <source>Copy Image to Clipboard</source>
       <translation type="unfinished">Copiar Imagem para a Área de Transferência</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="794" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="795" />
       <source>Copy Image URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="799" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="800" />
       <source>Send Image URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="818" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="810" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="819" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="811" />
       <source>Search image in {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="814" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="815" />
       <source>Search image with...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="825" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="826" />
       <source>Block Image</source>
       <translation type="unfinished">Bloquear Imagem</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="835" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="836" />
       <source>Scan Image with VirusTotal</source>
       <translation type="unfinished">Escanear Imagem com VirusTotal</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="855" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="856" />
       <source>Play</source>
       <translation type="unfinished">Reproduzir</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="861" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="862" />
       <source>Pause</source>
       <translation type="unfinished">Pausa</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="867" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="868" />
       <source>Unmute</source>
       <translation type="unfinished">Com som</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="873" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="874" />
       <source>Mute</source>
       <translation type="unfinished">Sem som</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="878" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="879" />
       <source>Copy Media URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="883" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="884" />
       <source>Send Media URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="889" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="890" />
       <source>Save Media</source>
       <translation type="unfinished">Gravar Media</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="910" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="911" />
       <source>Send Text</source>
       <translation type="unfinished">Enviar Texto</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="917" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="918" />
       <source>Search with '{0}'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="921" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="922" />
       <source>Search with...</source>
       <translation type="unfinished">Procurar com...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1078" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="947" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1079" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="948" />
       <source>Google Translate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="957" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="958" />
       <source>Dictionary</source>
       <translation type="unfinished">Dicionário</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="965" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="966" />
       <source>Go to web address</source>
       <translation type="unfinished">Ir à direção web</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="994" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="995" />
       <source>Add New Page</source>
       <translation type="unfinished">Adicionar Nova Página</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="999" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1000" />
       <source>Configure Speed Dial</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1005" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1006" />
       <source>Reload All Dials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1009" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1010" />
       <source>Reset to Default Dials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1014" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1015" />
       <source>Bookmark this Page</source>
       <translation type="unfinished">Marcar esta Página</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1018" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1019" />
       <source>Copy Page URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1023" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1024" />
       <source>Send Page URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1029" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1030" />
       <source>User Agent</source>
       <translation type="unfinished">Agente de Usuario</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1057" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1058" />
       <source>Validate Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1120" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1121" />
       <source>Add to web search toolbar</source>
       <translation type="unfinished">Adicionar á barra de pesquisa web</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1804" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1805" />
       <source>Empty Page</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="1869" />
       <location filename="../WebBrowser/WebBrowserView.py" line="1868" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="1867" />
       <source>Render Process terminated abnormally</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1873" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1874" />
       <source>The render process crashed while loading this page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1878" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1879" />
       <source>The render process was killed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1880" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1881" />
       <source>The render process terminated while loading this page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1884" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1885" />
       <source>Try reloading the page or closing some tabs to make more memory available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2012" />
-      <source>Web Archive (*.mhtml *.mht)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2013" />
-      <source>HTML File (*.html *.htm)</source>
+      <source>Web Archive (*.mhtml *.mht)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2014" />
+      <source>HTML File (*.html *.htm)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2015" />
       <source>HTML File with all resources (*.html *.htm)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2036" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2037" />
       <source>Save Web Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2428" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2429" />
       <source>eric7 {0} ({1})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2439" />
-      <source>Print Page</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2440" />
+      <source>Print Page</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2441" />
       <source>There is already a print job in progress. Printing is temporarily disabled until the current job is finished.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2555" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="2485" />
-      <source>Print to PDF</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2486" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2556" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2486" />
+      <source>Print to PDF</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2487" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2557" />
       <source>&lt;p&gt;The PDF file &lt;b&gt;{0}&lt;/b&gt; could not be generated.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2590" />
-      <source>Quota Request</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2591" />
+      <source>Quota Request</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2592" />
       <source>&lt;p&gt; Allow the website at &lt;b&gt;{0}&lt;/b&gt; to use &lt;b&gt;{1}&lt;/b&gt; of persistent storage?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2634" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2635" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Read&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2642" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2643" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Write&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2647" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2648" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Read and Write&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2654" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2655" />
       <source>File System Access Request</source>
       <translation type="unfinished" />
     </message>
@@ -100879,10 +100907,10 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4099" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3007" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2991" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2976" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4105" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3013" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2997" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2982" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="207" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
@@ -100893,2074 +100921,2074 @@
       <translation type="unfinished">Conteúdo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1758" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1758" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1764" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1764" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="306" />
       <source>Index</source>
       <translation type="unfinished">Índice</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1769" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1768" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1774" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="318" />
       <source>Search</source>
       <translation type="unfinished">Procurar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2115" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2114" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2121" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2120" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="325" />
       <source>JavaScript Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="737" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="743" />
       <source>New Tab</source>
       <translation type="unfinished">Separador Novo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="739" />
-      <source>&amp;New Tab</source>
-      <translation type="unfinished">Separador &amp;Novo</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="740" />
-      <source>Ctrl+T</source>
-      <comment>File|New Tab</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="745" />
+      <source>&amp;New Tab</source>
+      <translation type="unfinished">Separador &amp;Novo</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="746" />
+      <source>Ctrl+T</source>
+      <comment>File|New Tab</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="751" />
       <source>Open a new web browser tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="747" />
-      <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="753" />
+      <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="759" />
       <source>New Window</source>
       <translation type="unfinished">Nova Janela</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="755" />
-      <source>New &amp;Window</source>
-      <translation type="unfinished">Nova &amp;Janela</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="756" />
-      <source>Ctrl+N</source>
-      <comment>File|New Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="761" />
+      <source>New &amp;Window</source>
+      <translation type="unfinished">Nova &amp;Janela</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="762" />
+      <source>Ctrl+N</source>
+      <comment>File|New Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="767" />
       <source>Open a new web browser window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="763" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="769" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new web browser window in the current privacy mode.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2889" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="773" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2895" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="779" />
       <source>New Private Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="781" />
       <source>New &amp;Private Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="776" />
-      <source>Ctrl+Shift+P</source>
-      <comment>File|New Private Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="782" />
+      <source>Ctrl+Shift+P</source>
+      <comment>File|New Private Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="788" />
       <source>Open a new private web browser window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="785" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="791" />
       <source>&lt;b&gt;New Private Window&lt;/b&gt;&lt;p&gt;This opens a new private web browser window by starting a new web browser instance in private mode.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2927" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2904" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="795" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2933" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2910" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="801" />
       <source>Open File</source>
       <translation type="unfinished">Abrir Ficheiro</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="797" />
-      <source>&amp;Open File</source>
-      <translation type="unfinished">&amp;Abrir Ficheiro</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="798" />
-      <source>Ctrl+O</source>
-      <comment>File|Open</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="803" />
+      <source>&amp;Open File</source>
+      <translation type="unfinished">&amp;Abrir Ficheiro</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="804" />
+      <source>Ctrl+O</source>
+      <comment>File|Open</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="809" />
       <source>Open a file for display</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="805" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="811" />
       <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new file for display. It pops up a file selection dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="815" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="821" />
       <source>Open File in New Tab</source>
       <translation type="unfinished">Abrir Ficheiro num Separador Novo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="817" />
-      <source>Open File in New &amp;Tab</source>
-      <translation type="unfinished">Abrir Ficheiro num &amp;Separador Novo</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="818" />
-      <source>Shift+Ctrl+O</source>
-      <comment>File|Open in new tab</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="823" />
+      <source>Open File in New &amp;Tab</source>
+      <translation type="unfinished">Abrir Ficheiro num &amp;Separador Novo</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="824" />
+      <source>Shift+Ctrl+O</source>
+      <comment>File|Open in new tab</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="829" />
       <source>Open a file for display in a new tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="825" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="831" />
       <source>&lt;b&gt;Open File in New Tab&lt;/b&gt;&lt;p&gt;This opens a new file for display in a new tab. It pops up a file selection dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="836" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="842" />
       <source>Save As</source>
       <translation type="unfinished">Gravar Como</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="838" />
-      <source>&amp;Save As...</source>
-      <translation type="unfinished">&amp;Gravar Como...</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="839" />
-      <source>Shift+Ctrl+S</source>
-      <comment>File|Save As</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="844" />
+      <source>&amp;Save As...</source>
+      <translation type="unfinished">&amp;Gravar Como...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="845" />
+      <source>Shift+Ctrl+S</source>
+      <comment>File|Save As</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="850" />
       <source>Save the current page to disk</source>
       <translation type="unfinished">Gravar a página atual no disco</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="846" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="852" />
       <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current page to disk.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="854" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="860" />
       <source>Save Page Screen</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="856" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="862" />
       <source>Save Page Screen...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="863" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="869" />
       <source>Save the visible part of the current page as a screen shot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="866" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="872" />
       <source>&lt;b&gt;Save Page Screen...&lt;/b&gt;&lt;p&gt;Saves the visible part of the current page as a screen shot.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="877" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="883" />
       <source>Import Bookmarks</source>
       <translation type="unfinished">Importar Marcadores</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="878" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="884" />
       <source>&amp;Import Bookmarks...</source>
       <translation type="unfinished">&amp;Importar Marcadores...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="885" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="891" />
       <source>Import bookmarks from other browsers</source>
       <translation type="unfinished">Importar marcadores de outros navegadores</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="888" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="894" />
       <source>&lt;b&gt;Import Bookmarks&lt;/b&gt;&lt;p&gt;Import bookmarks from other browsers.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="897" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="903" />
       <source>Export Bookmarks</source>
       <translation type="unfinished">Exportar Marcadores</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="898" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="904" />
       <source>&amp;Export Bookmarks...</source>
       <translation type="unfinished">&amp;Exportar Marcadores...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="905" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="911" />
       <source>Export the bookmarks into a file</source>
       <translation type="unfinished">Exportar os marcadores a um ficheiro</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="908" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="914" />
       <source>&lt;b&gt;Export Bookmarks&lt;/b&gt;&lt;p&gt;Export the bookmarks into a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2537" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="917" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2543" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="923" />
       <source>Print</source>
       <translation type="unfinished">Imprimir</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="919" />
-      <source>&amp;Print</source>
-      <translation type="unfinished">Im&amp;primir</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="920" />
-      <source>Ctrl+P</source>
-      <comment>File|Print</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="925" />
+      <source>&amp;Print</source>
+      <translation type="unfinished">Im&amp;primir</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="926" />
+      <source>Ctrl+P</source>
+      <comment>File|Print</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="931" />
       <source>Print the displayed help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="927" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="933" />
       <source>&lt;b&gt;Print&lt;/b&gt;&lt;p&gt;Print the displayed help text.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="935" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="933" />
-      <source>Print as PDF</source>
-      <translation type="unfinished">Imprimir como PDF</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="941" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="939" />
+      <source>Print as PDF</source>
+      <translation type="unfinished">Imprimir como PDF</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="947" />
       <source>Print the displayed help as PDF</source>
       <translation type="unfinished">Imprimir a ajuda mostrada como PDF</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="943" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="949" />
       <source>&lt;b&gt;Print as PDF&lt;/b&gt;&lt;p&gt;Print the displayed help text as a PDF file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="954" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="952" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="960" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="958" />
       <source>Print Preview</source>
       <translation type="unfinished">Antevisão da Impressão</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="961" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="967" />
       <source>Print preview of the displayed help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="964" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="970" />
       <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the displayed help text.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="975" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="973" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="981" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="979" />
       <source>Send Page Link</source>
       <translation type="unfinished">Enviar o Vínculo da Página</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="982" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="988" />
       <source>Send the link of the current page via email</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="985" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="991" />
       <source>&lt;b&gt;Send Page Link&lt;/b&gt;&lt;p&gt;Send the link of the current page via email.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="994" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1000" />
       <source>Close</source>
       <translation type="unfinished">Fechar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="996" />
-      <source>&amp;Close</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="997" />
-      <source>Ctrl+W</source>
-      <comment>File|Close</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1002" />
+      <source>&amp;Close</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1003" />
+      <source>Ctrl+W</source>
+      <comment>File|Close</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1008" />
       <source>Close the current help window</source>
       <translation type="unfinished">Fechar a janela de ajuda actual</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1004" />
-      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1010" />
+      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1016" />
       <source>Close All</source>
       <translation type="unfinished">Fechar Tudo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1011" />
-      <source>Close &amp;All</source>
-      <translation type="unfinished">Fechar &amp;Tudo</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1017" />
+      <source>Close &amp;All</source>
+      <translation type="unfinished">Fechar &amp;Tudo</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1023" />
       <source>Close all help windows</source>
       <translation type="unfinished">Fechar todas as janelas de ajuda</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1019" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1025" />
       <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all web browser windows except the first one.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1028" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1034" />
       <source>Quit</source>
       <translation type="unfinished">Sair</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3319" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1030" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3325" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1036" />
       <source>&amp;Quit</source>
       <translation type="unfinished">Sai&amp;r</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1031" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1037" />
       <source>Ctrl+Q</source>
       <comment>File|Quit</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1036" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1042" />
       <source>Quit the eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1038" />
-      <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1044" />
+      <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1050" />
       <source>Backward</source>
       <translation type="unfinished">Retroceder</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1046" />
-      <source>&amp;Backward</source>
-      <translation type="unfinished">&amp;Retroceder</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1047" />
-      <source>Alt+Left</source>
-      <comment>Go|Backward</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1052" />
+      <source>&amp;Backward</source>
+      <translation type="unfinished">&amp;Retroceder</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1053" />
+      <source>Alt+Left</source>
+      <comment>Go|Backward</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1058" />
       <source>Move one screen backward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1054" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1060" />
       <source>&lt;b&gt;Backward&lt;/b&gt;&lt;p&gt;Moves one screen backward. If none is available, this action is disabled.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1064" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1070" />
       <source>Forward</source>
       <translation type="unfinished">Avançar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1066" />
-      <source>&amp;Forward</source>
-      <translation type="unfinished">&amp;Avançar</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1067" />
-      <source>Alt+Right</source>
-      <comment>Go|Forward</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1072" />
+      <source>&amp;Forward</source>
+      <translation type="unfinished">&amp;Avançar</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1073" />
+      <source>Alt+Right</source>
+      <comment>Go|Forward</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1078" />
       <source>Move one screen forward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1074" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1080" />
       <source>&lt;b&gt;Forward&lt;/b&gt;&lt;p&gt;Moves one screen forward. If none is available, this action is disabled.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1084" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1090" />
       <source>Home</source>
       <translation type="unfinished">Página Inicial</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1086" />
-      <source>&amp;Home</source>
-      <translation type="unfinished">Página &amp;Inicial</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1087" />
-      <source>Ctrl+Home</source>
-      <comment>Go|Home</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1092" />
+      <source>&amp;Home</source>
+      <translation type="unfinished">Página &amp;Inicial</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1093" />
+      <source>Ctrl+Home</source>
+      <comment>Go|Home</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1098" />
       <source>Move to the initial screen</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1094" />
-      <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1100" />
+      <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1106" />
       <source>Reload</source>
       <translation type="unfinished">Recarregar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1102" />
-      <source>&amp;Reload</source>
-      <translation type="unfinished">&amp;Recarregar</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1103" />
-      <source>Ctrl+R</source>
-      <comment>Go|Reload</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1104" />
-      <source>F5</source>
-      <comment>Go|Reload</comment>
-      <translation type="unfinished">F5</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1108" />
-      <source>Reload the current screen</source>
+      <source>&amp;Reload</source>
+      <translation type="unfinished">&amp;Recarregar</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1109" />
+      <source>Ctrl+R</source>
+      <comment>Go|Reload</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1110" />
-      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
+      <source>F5</source>
+      <comment>Go|Reload</comment>
+      <translation type="unfinished">F5</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1114" />
+      <source>Reload the current screen</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1116" />
+      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1122" />
       <source>Stop</source>
       <translation type="unfinished">Parar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1118" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1124" />
       <source>&amp;Stop</source>
       <translation type="unfinished">&amp;Parar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1119" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1125" />
       <source>Ctrl+.</source>
       <comment>Go|Stop</comment>
       <translation type="unfinished">Ctrl+.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1120" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1126" />
       <source>Esc</source>
       <comment>Go|Stop</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1124" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1130" />
       <source>Stop loading</source>
       <translation type="unfinished">Parar a carga</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1126" />
-      <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1132" />
+      <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1138" />
       <source>Copy</source>
       <translation type="unfinished">Copiar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1134" />
-      <source>&amp;Copy</source>
-      <translation type="unfinished">&amp;Copiar</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1135" />
-      <source>Ctrl+C</source>
-      <comment>Edit|Copy</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1140" />
+      <source>&amp;Copy</source>
+      <translation type="unfinished">&amp;Copiar</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1141" />
+      <source>Ctrl+C</source>
+      <comment>Edit|Copy</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1146" />
       <source>Copy the selected text</source>
       <translation type="unfinished">Copiar texto selecionado</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1142" />
-      <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" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1148" />
+      <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" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1154" />
       <source>Cut</source>
       <translation type="unfinished">Cortar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1150" />
-      <source>Cu&amp;t</source>
-      <translation type="unfinished">Cor&amp;tar</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1151" />
-      <source>Ctrl+X</source>
-      <comment>Edit|Cut</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1156" />
+      <source>Cu&amp;t</source>
+      <translation type="unfinished">Cor&amp;tar</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1157" />
+      <source>Ctrl+X</source>
+      <comment>Edit|Cut</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1162" />
       <source>Cut the selected text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1158" />
-      <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" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1164" />
+      <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" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1170" />
       <source>Paste</source>
       <translation type="unfinished">Colar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1166" />
-      <source>&amp;Paste</source>
-      <translation type="unfinished">Co&amp;lar</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1167" />
-      <source>Ctrl+V</source>
-      <comment>Edit|Paste</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1172" />
+      <source>&amp;Paste</source>
+      <translation type="unfinished">Co&amp;lar</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1173" />
+      <source>Ctrl+V</source>
+      <comment>Edit|Paste</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1178" />
       <source>Paste text from the clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1174" />
-      <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1180" />
+      <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1186" />
       <source>Undo</source>
       <translation type="unfinished">Desfazer</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1182" />
-      <source>&amp;Undo</source>
-      <translation type="unfinished">Desfa&amp;zer</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1183" />
-      <source>Ctrl+Z</source>
-      <comment>Edit|Undo</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1188" />
+      <source>&amp;Undo</source>
+      <translation type="unfinished">Desfa&amp;zer</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1189" />
+      <source>Ctrl+Z</source>
+      <comment>Edit|Undo</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1194" />
       <source>Undo the last edit action</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1190" />
-      <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1196" />
+      <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1202" />
       <source>Redo</source>
       <translation type="unfinished">Refazer</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1198" />
-      <source>&amp;Redo</source>
-      <translation type="unfinished">&amp;Refazer</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1199" />
-      <source>Ctrl+Shift+Z</source>
-      <comment>Edit|Redo</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1204" />
+      <source>&amp;Redo</source>
+      <translation type="unfinished">&amp;Refazer</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1205" />
+      <source>Ctrl+Shift+Z</source>
+      <comment>Edit|Redo</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1210" />
       <source>Redo the last edit action</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1206" />
-      <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1212" />
+      <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1218" />
       <source>Select All</source>
       <translation type="unfinished">Selecionar Tudo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1214" />
-      <source>&amp;Select All</source>
-      <translation type="unfinished">&amp;Selecionar tudo</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1215" />
-      <source>Ctrl+A</source>
-      <comment>Edit|Select All</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1220" />
+      <source>&amp;Select All</source>
+      <translation type="unfinished">&amp;Selecionar tudo</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1221" />
+      <source>Ctrl+A</source>
+      <comment>Edit|Select All</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1226" />
       <source>Select all text</source>
       <translation type="unfinished">Selecionar o texto todo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1222" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1228" />
       <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current browser.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1232" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1231" />
-      <source>Unselect</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1233" />
-      <source>Alt+Ctrl+A</source>
-      <comment>Edit|Unselect</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1238" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1237" />
+      <source>Unselect</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1239" />
+      <source>Alt+Ctrl+A</source>
+      <comment>Edit|Unselect</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1244" />
       <source>Clear current selection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1240" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1246" />
       <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1249" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1255" />
       <source>Find...</source>
       <translation type="unfinished">Encontrar...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1251" />
-      <source>&amp;Find...</source>
-      <translation type="unfinished">&amp;Procurar...</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1252" />
-      <source>Ctrl+F</source>
-      <comment>Edit|Find</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1257" />
+      <source>&amp;Find...</source>
+      <translation type="unfinished">&amp;Procurar...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1258" />
+      <source>Ctrl+F</source>
+      <comment>Edit|Find</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1263" />
       <source>Find text in page</source>
       <translation type="unfinished">Procurar texto na página</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1259" />
-      <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1265" />
+      <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1271" />
       <source>Find next</source>
       <translation type="unfinished">Procurar seguinte</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1267" />
-      <source>Find &amp;next</source>
-      <translation type="unfinished">Procurar &amp;seguinte</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1268" />
-      <source>F3</source>
-      <comment>Edit|Find next</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1273" />
+      <source>Find &amp;next</source>
+      <translation type="unfinished">Procurar &amp;seguinte</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1274" />
+      <source>F3</source>
+      <comment>Edit|Find next</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1279" />
       <source>Find next occurrence of text in page</source>
       <translation type="unfinished">Procurar a seguinte ocurrencia do texto na página</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1275" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1281" />
       <source>&lt;b&gt;Find next&lt;/b&gt;&lt;p&gt;Find the next occurrence of text in the current page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1284" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1290" />
       <source>Find previous</source>
       <translation type="unfinished">Procurar anterior</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1286" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1292" />
       <source>Find &amp;previous</source>
       <translation type="unfinished">Procurar &amp;anterior</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1287" />
-      <source>Shift+F3</source>
-      <comment>Edit|Find previous</comment>
-      <translation type="unfinished">Shift+F3</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1293" />
+      <source>Shift+F3</source>
+      <comment>Edit|Find previous</comment>
+      <translation type="unfinished">Shift+F3</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1299" />
       <source>Find previous occurrence of text in page</source>
       <translation type="unfinished">Procurar a ocurrencia anterior do texto na página</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1296" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1302" />
       <source>&lt;b&gt;Find previous&lt;/b&gt;&lt;p&gt;Find the previous occurrence of text in the current page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1306" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1312" />
       <source>Manage Bookmarks</source>
       <translation type="unfinished">Gerir Marcadores</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1307" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1313" />
       <source>&amp;Manage Bookmarks...</source>
       <translation type="unfinished">&amp;Gerir Marcadores...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1308" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1314" />
       <source>Ctrl+Shift+B</source>
       <comment>Help|Manage bookmarks</comment>
       <translation type="unfinished">Ctrl+Shift+B</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1314" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1320" />
       <source>Open a dialog to manage the bookmarks.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1317" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1323" />
       <source>&lt;b&gt;Manage Bookmarks...&lt;/b&gt;&lt;p&gt;Open a dialog to manage the bookmarks.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1326" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1332" />
       <source>Add Bookmark</source>
       <translation type="unfinished">Adicionar Marcador</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1328" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1334" />
       <source>Add &amp;Bookmark...</source>
       <translation type="unfinished">Adicionar &amp;Marcador...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1329" />
-      <source>Ctrl+D</source>
-      <comment>Help|Add bookmark</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1335" />
+      <source>Ctrl+D</source>
+      <comment>Help|Add bookmark</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1341" />
       <source>Open a dialog to add a bookmark.</source>
       <translation type="unfinished">Abrir uma caixa de diálogo para adicionar um marcador.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1337" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1343" />
       <source>&lt;b&gt;Add Bookmark&lt;/b&gt;&lt;p&gt;Open a dialog to add the current URL as a bookmark.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1346" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1352" />
       <source>Add Folder</source>
       <translation type="unfinished">Adicionar Diretório</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1347" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1353" />
       <source>Add &amp;Folder...</source>
       <translation type="unfinished">Adicionar &amp;Diretório...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1354" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1360" />
       <source>Open a dialog to add a new bookmarks folder.</source>
       <translation type="unfinished">Abrir uma caixa de diálogo para adicionar um novo diretorio de marcadores.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1357" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1363" />
       <source>&lt;b&gt;Add Folder...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1366" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1372" />
       <source>Bookmark All Tabs</source>
       <translation type="unfinished">Marcar Todos os Separadores</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1367" />
-      <source>Bookmark All Tabs...</source>
-      <translation type="unfinished">Marcar Todos os Separadores...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1373" />
+      <source>Bookmark All Tabs...</source>
+      <translation type="unfinished">Marcar Todos os Separadores...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1379" />
       <source>Bookmark all open tabs.</source>
       <translation type="unfinished">Marcar todos os separadores abertos.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1375" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1381" />
       <source>&lt;b&gt;Bookmark All Tabs...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder for all open tabs.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1385" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1391" />
       <source>What's This?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1387" />
-      <source>&amp;What's This?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1388" />
-      <source>Shift+F1</source>
-      <comment>Help|What's This?'</comment>
-      <translation type="unfinished">Shift+F1</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1393" />
+      <source>&amp;What's This?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1394" />
+      <source>Shift+F1</source>
+      <comment>Help|What's This?'</comment>
+      <translation type="unfinished">Shift+F1</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1399" />
       <source>Context sensitive help</source>
       <translation type="unfinished">Ajuda sensível ao contexto</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1395" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1401" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Mostrar ajuda sensível a contexto&lt;/b&gt;&lt;p&gt;No modo 'Que é Isto?' o cursor do rato mostra uma flecha com um ponto de  interrogação, e pode clicar nos elementos da interface para ver uma breve descrição do que fazem e como se usam. Nas caixas de diálogo, pode-se aceder a esta característica através do botão de ajuda contextual da barra de título.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1408" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1414" />
       <source>About</source>
       <translation type="unfinished">Acerca</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1408" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1414" />
       <source>&amp;About</source>
       <translation type="unfinished">A&amp;cerca</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1410" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1416" />
       <source>Display information about this software</source>
       <translation type="unfinished">Mostra a informação acerca deste software</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1412" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1418" />
       <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="../WebBrowser/WebBrowserWindow.py" line="1421" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1427" />
       <source>About Qt</source>
       <translation type="unfinished">Acerca de Qt</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1422" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1428" />
       <source>About &amp;Qt</source>
       <translation type="unfinished">Acerca de &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1429" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1435" />
       <source>Display information about the Qt toolkit</source>
       <translation type="unfinished">Mostra informação acerca das Ferramentas de Qt</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1432" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1438" />
       <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="../WebBrowser/WebBrowserWindow.py" line="1441" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1447" />
       <source>Zoom in</source>
       <translation type="unfinished">Aproximar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1443" />
-      <source>Zoom &amp;in</source>
-      <translation type="unfinished">Apro&amp;ximar</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1444" />
-      <source>Ctrl++</source>
-      <comment>View|Zoom in</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1445" />
-      <source>Zoom In</source>
-      <comment>View|Zoom in</comment>
-      <translation type="unfinished">Aproximar</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1449" />
-      <source>Zoom in on the web page</source>
+      <source>Zoom &amp;in</source>
+      <translation type="unfinished">Apro&amp;ximar</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1450" />
+      <source>Ctrl++</source>
+      <comment>View|Zoom in</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1451" />
+      <source>Zoom In</source>
+      <comment>View|Zoom in</comment>
+      <translation type="unfinished">Aproximar</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1455" />
+      <source>Zoom in on the web page</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1457" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the web page. This makes the web page bigger.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1461" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1467" />
       <source>Zoom out</source>
       <translation type="unfinished">Afastar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1463" />
-      <source>Zoom &amp;out</source>
-      <translation type="unfinished">A&amp;fastar</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1464" />
-      <source>Ctrl+-</source>
-      <comment>View|Zoom out</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1465" />
-      <source>Zoom Out</source>
-      <comment>View|Zoom out</comment>
-      <translation type="unfinished">Afastar</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1469" />
-      <source>Zoom out on the web page</source>
+      <source>Zoom &amp;out</source>
+      <translation type="unfinished">A&amp;fastar</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1470" />
+      <source>Ctrl+-</source>
+      <comment>View|Zoom out</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1471" />
+      <source>Zoom Out</source>
+      <comment>View|Zoom out</comment>
+      <translation type="unfinished">Afastar</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1475" />
+      <source>Zoom out on the web page</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1477" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the web page. This makes the web page smaller.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1481" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1487" />
       <source>Zoom reset</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1483" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1489" />
       <source>Zoom &amp;reset</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1484" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1490" />
       <source>Ctrl+0</source>
       <comment>View|Zoom reset</comment>
       <translation type="unfinished">Ctrl+0</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1489" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1495" />
       <source>Reset the zoom of the web page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1491" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1497" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the web page. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1502" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1501" />
-      <source>Show page source</source>
-      <translation type="unfinished">Mostrar código da página</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1503" />
-      <source>Ctrl+U</source>
-      <translation type="unfinished">Ctrl+U</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1508" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1507" />
+      <source>Show page source</source>
+      <translation type="unfinished">Mostrar código da página</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1509" />
+      <source>Ctrl+U</source>
+      <translation type="unfinished">Ctrl+U</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1514" />
       <source>Show the page source in an editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1510" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1516" />
       <source>&lt;b&gt;Show page source&lt;/b&gt;&lt;p&gt;Show the page source in an editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1520" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1526" />
       <source>Full Screen</source>
       <translation type="unfinished">Ecrã Inteiro</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1522" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1528" />
       <source>&amp;Full Screen</source>
       <translation type="unfinished">Ecrã &amp;Inteiro</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1529" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1535" />
       <source>Meta+Ctrl+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1531" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1537" />
       <source>F11</source>
       <translation type="unfinished">F11</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1538" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1537" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1544" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1543" />
       <source>Show next tab</source>
       <translation type="unfinished">Mostrar o separador seguinte</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1539" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1545" />
       <source>Ctrl+Alt+Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1550" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1549" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1556" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1555" />
       <source>Show previous tab</source>
       <translation type="unfinished">Mostrar o separador anterior</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1551" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1557" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1562" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1561" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1568" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1567" />
       <source>Switch between tabs</source>
       <translation type="unfinished">Mudar entre separadores</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1563" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1569" />
       <source>Ctrl+1</source>
       <translation type="unfinished">Ctrl+1</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1573" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1579" />
       <source>Preferences</source>
       <translation type="unfinished">Preferências</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1575" />
-      <source>&amp;Preferences...</source>
-      <translation type="unfinished">&amp;Preferências...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1581" />
+      <source>&amp;Preferences...</source>
+      <translation type="unfinished">&amp;Preferências...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1587" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished">Definir a configuração desejada</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1583" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1589" />
       <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">&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="../WebBrowser/WebBrowserWindow.py" line="1593" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1599" />
       <source>Languages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1595" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1601" />
       <source>&amp;Languages...</source>
       <translation type="unfinished">&amp;Idiomas...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1602" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1608" />
       <source>Configure the accepted languages for web pages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1605" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1611" />
       <source>&lt;b&gt;Languages&lt;/b&gt;&lt;p&gt;Configure the accepted languages for web pages.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1614" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1620" />
       <source>Cookies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1616" />
-      <source>C&amp;ookies...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1622" />
+      <source>C&amp;ookies...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1628" />
       <source>Configure cookies handling</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1624" />
-      <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1630" />
+      <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1636" />
       <source>Personal Information</source>
       <translation type="unfinished">Informação Pessoal</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1632" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1638" />
       <source>Personal Information...</source>
       <translation type="unfinished">Informação Pessoal...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1639" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1645" />
       <source>Configure personal information for completing form fields</source>
       <translation type="unfinished">Configurar informação pessoal para completar campos do formulário</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1642" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1648" />
       <source>&lt;b&gt;Personal Information...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the personal information used for completing form fields.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1652" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1658" />
       <source>GreaseMonkey Scripts</source>
       <translation type="unfinished">&amp;Limpar dados privados</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1654" />
-      <source>GreaseMonkey Scripts...</source>
-      <translation type="unfinished">Scripts de GreaseMonkey...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1660" />
+      <source>GreaseMonkey Scripts...</source>
+      <translation type="unfinished">Scripts de GreaseMonkey...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1666" />
       <source>Configure the GreaseMonkey Scripts</source>
       <translation type="unfinished">Configurar Scripts de GreaseMonkey</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1662" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1668" />
       <source>&lt;b&gt;GreaseMonkey Scripts...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available GreaseMonkey Scripts.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1672" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1678" />
       <source>Edit Message Filters</source>
       <translation type="unfinished">Editar Filtros de Mensagens</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1674" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1680" />
       <source>Edit Message Filters...</source>
       <translation type="unfinished">Editar Filtros de Mensagens...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1681" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1687" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1684" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1690" />
       <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1695" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1701" />
       <source>Edit HTML5 Feature Permissions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1697" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1703" />
       <source>Edit HTML5 Feature Permissions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1704" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1710" />
       <source>Edit the remembered HTML5 feature permissions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1707" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1713" />
       <source>&lt;b&gt;Edit HTML5 Feature Permissions&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the remembered HTML5 feature permissions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1720" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1718" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1726" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1724" />
       <source>Sync with Table of Contents</source>
       <translation type="unfinished">Sincronizar com a Tabela de Conteúdos</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1733" />
       <source>Synchronizes the table of contents with current page</source>
       <translation type="unfinished">Sincroniza a tabela de conteúdos com a página atual</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1730" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1736" />
       <source>&lt;b&gt;Sync with Table of Contents&lt;/b&gt;&lt;p&gt;Synchronizes the table of contents with current page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1741" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1740" />
-      <source>Table of Contents</source>
-      <translation type="unfinished">Tabela de Conteúdos</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1747" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1746" />
+      <source>Table of Contents</source>
+      <translation type="unfinished">Tabela de Conteúdos</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1753" />
       <source>Shows the table of contents window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1749" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1755" />
       <source>&lt;b&gt;Table of Contents&lt;/b&gt;&lt;p&gt;Shows the table of contents window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1760" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1766" />
       <source>Shows the index window</source>
       <translation type="unfinished">Mostra a janela de Índice</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1762" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1768" />
       <source>&lt;b&gt;Index&lt;/b&gt;&lt;p&gt;Shows the index window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1781" />
       <source>Shows the search window</source>
       <translation type="unfinished">Mostra a janela de pesquisa</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1777" />
-      <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1783" />
+      <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1789" />
       <source>Manage QtHelp Documents</source>
       <translation type="unfinished">Gerir Documentação QtHelp</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1784" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1790" />
       <source>Manage QtHelp &amp;Documents</source>
       <translation type="unfinished">Gerir &amp;Documentação QtHelp</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1791" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1797" />
       <source>Shows a dialog to manage the QtHelp documentation set</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1794" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1800" />
       <source>&lt;b&gt;Manage QtHelp Documents&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the QtHelp documentation set.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1804" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1810" />
       <source>Reindex Documentation</source>
       <translation type="unfinished">Reindexar a Documentação</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1805" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1811" />
       <source>&amp;Reindex Documentation</source>
       <translation type="unfinished">&amp;Reindexar a Documentação</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1812" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1818" />
       <source>Reindexes the documentation set</source>
       <translation type="unfinished">Reindexa a Documentação</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1815" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1821" />
       <source>&lt;b&gt;Reindex Documentation&lt;/b&gt;&lt;p&gt;Reindexes the documentation set.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1840" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1834" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1828" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1826" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1832" />
       <source>Clear private data</source>
       <translation type="unfinished">Limpar dados privados</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1836" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1842" />
       <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like browsing history, search history or the favicons database.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1846" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1852" />
       <source>Clear icons database</source>
       <translation type="unfinished">Limpar base de dados dos ícones</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1847" />
-      <source>Clear &amp;icons database</source>
-      <translation type="unfinished">L&amp;impar base de dados dos Ícones</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1853" />
+      <source>Clear &amp;icons database</source>
+      <translation type="unfinished">L&amp;impar base de dados dos Ícones</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1859" />
       <source>Clear the database of favicons</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1855" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1861" />
       <source>&lt;b&gt;Clear icons database&lt;/b&gt;&lt;p&gt;Clears the database of favicons of previously visited URLs.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1867" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1865" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1873" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1871" />
       <source>Manage Saved Favicons</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1874" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1880" />
       <source>Show a dialog to manage the saved favicons</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1877" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1883" />
       <source>&lt;b&gt;Manage Saved Favicons&lt;/b&gt;&lt;p&gt;This shows a dialog to manage the saved favicons of previously visited URLs.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1887" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1893" />
       <source>Configure Search Engines</source>
       <translation type="unfinished">Configurar Motores de Pesquisa</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1888" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1894" />
       <source>Configure Search &amp;Engines...</source>
       <translation type="unfinished">Configurar Motor&amp;es de Pesquisa...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1895" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1901" />
       <source>Configure the available search engines</source>
       <translation type="unfinished">Configurar os motores de pesquisa disponíveis</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1898" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1904" />
       <source>&lt;b&gt;Configure Search Engines...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available search engines.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1908" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1914" />
       <source>Manage Saved Passwords</source>
       <translation type="unfinished">Gerir Senhas Gravadas</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1910" />
-      <source>Manage Saved Passwords...</source>
-      <translation type="unfinished">Gerir Senhas Gravadas...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1916" />
+      <source>Manage Saved Passwords...</source>
+      <translation type="unfinished">Gerir Senhas Gravadas...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1922" />
       <source>Manage the saved passwords</source>
       <translation type="unfinished">Gerir as senhas gravadas</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1918" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1924" />
       <source>&lt;b&gt;Manage Saved Passwords...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved passwords.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1927" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1933" />
       <source>Ad Block</source>
       <translation type="unfinished">Ad Block</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1929" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1935" />
       <source>&amp;Ad Block...</source>
       <translation type="unfinished">&amp;Ad Block...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1936" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1942" />
       <source>Configure AdBlock subscriptions and rules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1939" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1945" />
       <source>&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure AdBlock subscriptions and rules.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1949" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1955" />
       <source>Manage SSL Certificate Errors</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1951" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1957" />
       <source>Manage SSL Certificate Errors...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1958" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1964" />
       <source>Manage the accepted SSL certificate Errors</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1961" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1967" />
       <source>&lt;b&gt;Manage SSL Certificate Errors...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the accepted SSL certificate errors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1971" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1977" />
       <source>Manage Safe Browsing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1973" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1979" />
       <source>Manage Safe Browsing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1980" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1986" />
       <source>Configure Safe Browsing and manage local cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1983" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1989" />
       <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1994" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1993" />
-      <source>Downloads</source>
-      <translation type="unfinished">Descargas</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2000" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1999" />
+      <source>Downloads</source>
+      <translation type="unfinished">Descargas</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2006" />
       <source>Shows the downloads window</source>
       <translation type="unfinished">Mostra a janela de descargas</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2002" />
-      <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
-      <translation type="unfinished">&lt;b&gt;Descargas&lt;/b&gt;&lt;p&gt;Mostra a janela das descargas.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2008" />
+      <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;b&gt;Descargas&lt;/b&gt;&lt;p&gt;Mostra a janela das descargas.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2014" />
       <source>RSS Feeds Dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2010" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2016" />
       <source>&amp;RSS Feeds Dialog...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2011" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2017" />
       <source>Ctrl+Shift+F</source>
       <comment>Help|RSS Feeds Dialog</comment>
       <translation type="unfinished">Ctrl+Shift+F</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2017" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2023" />
       <source>Open a dialog showing the configured RSS feeds.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2020" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2026" />
       <source>&lt;b&gt;RSS Feeds Dialog...&lt;/b&gt;&lt;p&gt;Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2031" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2037" />
       <source>Siteinfo Dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2033" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2039" />
       <source>&amp;Siteinfo Dialog...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2034" />
-      <source>Ctrl+Shift+I</source>
-      <comment>Help|Siteinfo Dialog</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2040" />
+      <source>Ctrl+Shift+I</source>
+      <comment>Help|Siteinfo Dialog</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2046" />
       <source>Open a dialog showing some information about the current site.</source>
       <translation type="unfinished">Abre uma caixa de diálogo que mostra alguma informação sobre o sítio atual.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2043" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2049" />
       <source>&lt;b&gt;Siteinfo Dialog...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the current site.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2053" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2059" />
       <source>Manage User Agent Settings</source>
       <translation type="unfinished">Gerir Definições de Agente de Usuário</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2054" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2060" />
       <source>Manage &amp;User Agent Settings</source>
       <translation type="unfinished">Gerir Definições de Agente de &amp;Usuário</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2061" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2067" />
       <source>Shows a dialog to manage the User Agent settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2064" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2070" />
       <source>&lt;b&gt;Manage User Agent Settings&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the User Agent settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2073" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2079" />
       <source>Synchronize data</source>
       <translation type="unfinished">Sincronizar dados</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2075" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2081" />
       <source>&amp;Synchronize Data...</source>
       <translation type="unfinished">&amp;Sincronizar Dados...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2082" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2088" />
       <source>Shows a dialog to synchronize data via the network</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2085" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2091" />
       <source>&lt;b&gt;Synchronize Data...&lt;/b&gt;&lt;p&gt;This shows a dialog to synchronize data via the network.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2095" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2101" />
       <source>Manage Saved Zoom Values</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2097" />
-      <source>Manage Saved Zoom Values...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2103" />
+      <source>Manage Saved Zoom Values...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2109" />
       <source>Manage the saved zoom values</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2105" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2111" />
       <source>&lt;b&gt;Manage Saved Zoom Values...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved zoom values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2122" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2128" />
       <source>Toggle the JavaScript console window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2125" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2131" />
       <source>&lt;b&gt;JavaScript Console&lt;/b&gt;&lt;p&gt;This toggles the JavaScript console window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2135" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2134" />
-      <source>Tab Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2141" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2140" />
+      <source>Tab Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2147" />
       <source>Shows the tab manager window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2143" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2149" />
       <source>&lt;b&gt;Tab Manager&lt;/b&gt;&lt;p&gt;Shows the tab manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2151" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2157" />
       <source>Session Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2152" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2158" />
       <source>Session Manager...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2159" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2165" />
       <source>Shows the session manager window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2162" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2168" />
       <source>&lt;b&gt;Session Manager&lt;/b&gt;&lt;p&gt;Shows the session manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2173" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2171" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2179" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2177" />
       <source>Scan current site</source>
       <translation type="unfinished">Analizar sítio atual</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5180" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5170" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2187" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2185" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5185" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5175" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2193" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2191" />
       <source>IP Address Report</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5194" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2199" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2197" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5199" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2205" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2203" />
       <source>Domain Report</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2217" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2223" />
       <source>Keyboard Shortcuts</source>
       <translation type="unfinished">Atalhos de Teclado</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2219" />
-      <source>Keyboard &amp;Shortcuts...</source>
-      <translation type="unfinished">Atalho&amp;s de Teclado...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2225" />
+      <source>Keyboard &amp;Shortcuts...</source>
+      <translation type="unfinished">Atalho&amp;s de Teclado...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2231" />
       <source>Set the keyboard shortcuts</source>
       <translation type="unfinished">Definir os atalhos de teclado</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2227" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2233" />
       <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5600" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5581" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2237" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5605" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5586" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2243" />
       <source>Export Keyboard Shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2239" />
-      <source>&amp;Export Keyboard Shortcuts...</source>
-      <translation type="unfinished">&amp;Exportar Atalhos de Teclado...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2245" />
+      <source>&amp;Export Keyboard Shortcuts...</source>
+      <translation type="unfinished">&amp;Exportar Atalhos de Teclado...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2251" />
       <source>Export the keyboard shortcuts</source>
       <translation type="unfinished">Exportar os Atalhos de Teclado</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2247" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2253" />
       <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5620" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2256" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5625" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2262" />
       <source>Import Keyboard Shortcuts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2258" />
-      <source>&amp;Import Keyboard Shortcuts...</source>
-      <translation type="unfinished">&amp;Importar Atalhos de Teclado...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2264" />
+      <source>&amp;Import Keyboard Shortcuts...</source>
+      <translation type="unfinished">&amp;Importar Atalhos de Teclado...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2270" />
       <source>Import the keyboard shortcuts</source>
       <translation type="unfinished">Importar os atalhos de teclado</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2266" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2272" />
       <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2275" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2281" />
       <source>Protocol Handler Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2276" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2282" />
       <source>Protocol Handler Manager...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2283" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2289" />
       <source>Shows the protocol handler manager window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2286" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2292" />
       <source>&lt;b&gt;Protocol Handler Manager&lt;/b&gt;&lt;p&gt;Shows the protocol handler manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2330" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2336" />
       <source>&amp;File</source>
       <translation type="unfinished">&amp;Ficheiro</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2524" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2338" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2530" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2344" />
       <source>Sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2362" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2368" />
       <source>&amp;Edit</source>
       <translation type="unfinished">&amp;Editar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2596" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2378" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2602" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2384" />
       <source>&amp;View</source>
       <translation type="unfinished">&amp;Vista</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2389" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2395" />
       <source>Text Encoding</source>
       <translation type="unfinished">Codificação do Texto</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2398" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2404" />
       <source>H&amp;istory</source>
       <translation type="unfinished">H&amp;istorial</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2414" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2420" />
       <source>&amp;Bookmarks</source>
       <translation type="unfinished">&amp;Marcadores</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2430" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2436" />
       <source>&amp;Settings</source>
       <translation type="unfinished">Definiçõe&amp;s</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2460" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2466" />
       <source>Global User Agent</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2627" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2472" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2633" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2478" />
       <source>&amp;Tools</source>
       <translation type="unfinished">&amp;Ferramentas</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2634" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2479" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2640" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2485" />
       <source>&amp;VirusTotal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2598" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2485" />
-      <source>&amp;Windows</source>
-      <translation type="unfinished">&amp;Janelas</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2604" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2491" />
+      <source>&amp;Windows</source>
+      <translation type="unfinished">&amp;Janelas</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2610" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2497" />
       <source>QtHelp</source>
       <translation type="unfinished">QtHelp</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2496" />
-      <source>&amp;Toolbars</source>
-      <translation type="unfinished">Barras de Ferramen&amp;tas</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2502" />
+      <source>&amp;Toolbars</source>
+      <translation type="unfinished">Barras de Ferramen&amp;tas</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2508" />
       <source>&amp;Help</source>
       <translation type="unfinished">&amp;Ajuda</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2531" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2537" />
       <source>Save</source>
       <translation type="unfinished">Gravar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2551" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2557" />
       <source>Show All History...</source>
       <translation type="unfinished">Mostrar Histórico Todo...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2721" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2558" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2564" />
       <source>Settings</source>
       <translation type="unfinished">Definições</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2652" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2658" />
       <source>File</source>
       <translation type="unfinished">Ficheiro</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2676" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2682" />
       <source>Edit</source>
       <translation type="unfinished">Editar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2688" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2694" />
       <source>View</source>
       <translation type="unfinished">Vista</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2697" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2703" />
       <source>Find</source>
       <translation type="unfinished">Encontrar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2705" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2711" />
       <source>Filter</source>
       <translation type="unfinished">Filtro</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2712" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2718" />
       <source>Filtered by: </source>
       <translation type="unfinished">Filtrado por: </translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2732" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2738" />
       <source>Tools</source>
       <translation type="unfinished">Ferramentas</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2740" />
-      <source>Help</source>
-      <translation type="unfinished">Ajuda</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2746" />
+      <source>Help</source>
+      <translation type="unfinished">Ajuda</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2752" />
       <source>VirusTotal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2890" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2896" />
       <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2894" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2900" />
       <source>OK</source>
       <translation type="unfinished">OK</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2929" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2906" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2935" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2912" />
       <source>HTML Files (*.html *.htm *.mhtml *.mht);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2977" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2983" />
       <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chromium {2} with Security Patches {3}.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2992" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2998" />
       <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chromium {2}.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3127" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3133" />
       <source>Saved Tabs</source>
       <translation type="unfinished">Separadores Guardados</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3310" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3316" />
       <source>Are you sure you want to close the web browser?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3311" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3317" />
       <source>Are you sure you want to close the web browser?
 You have {0} windows with {1} tabs open.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3910" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3916" />
       <source>Could not find any associated content.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3956" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3962" />
       <source>Unfiltered</source>
       <translation type="unfinished">Sem filtrar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4012" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4018" />
       <source>Updating search index</source>
       <translation type="unfinished">A atualizar índice de pesquisa</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4088" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4094" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished">A procurar a Documentação...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4121" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4127" />
       <source>Help Engine</source>
       <translation type="unfinished">Motor de Ajuda</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4717" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4722" />
       <source>System</source>
       <translation type="unfinished">Sistema</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4721" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4726" />
       <source>ISO</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4724" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4729" />
       <source>Unicode</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4732" />
       <source>Windows</source>
       <translation type="unfinished">Windows</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4730" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4735" />
       <source>IBM</source>
       <translation type="unfinished">IBM</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4733" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4738" />
       <source>Apple</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4736" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4741" />
       <source>Other</source>
       <translation type="unfinished">Outro</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4763" />
-      <source>Menu Bar</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="4768" />
-      <source>Bookmarks</source>
-      <translation type="unfinished">Marcadores</translation>
+      <source>Menu Bar</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="4773" />
+      <source>Bookmarks</source>
+      <translation type="unfinished">Marcadores</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4778" />
       <source>Status Bar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4788" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4793" />
       <source>&amp;Show all</source>
       <translation type="unfinished">&amp;Mostrar tudo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4790" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4795" />
       <source>&amp;Hide all</source>
       <translation type="unfinished">&amp;Esconder tudo</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5136" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5141" />
       <source>VirusTotal Scan</source>
       <translation type="unfinished">Análise de VirusTotal</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5137" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5142" />
       <source>&lt;p&gt;The VirusTotal scan could not be scheduled.&lt;p&gt;
 &lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5171" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5176" />
       <source>Enter a valid IPv4 address in dotted quad notation:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5181" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5186" />
       <source>The given IP address is not in dotted quad notation.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5195" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5200" />
       <source>Enter a valid domain name:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5622" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5583" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5627" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5588" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5601" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5606" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
Binary file src/eric7/i18n/eric7_ru.qm has changed
--- a/src/eric7/i18n/eric7_ru.ts	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/i18n/eric7_ru.ts	Sun Jun 02 09:51:20 2024 +0200
@@ -4,7 +4,7 @@
   <context>
     <name>AboutDialog</name>
     <message>
-      <location filename="../Plugins/AboutPlugin/AboutDialog.py" line="21" />
+      <location filename="../Plugins/AboutPlugin/AboutDialog.py" line="22" />
       <source>&lt;p&gt;{0} is an Integrated Development Environment for the Python programming language. It is written using the PyQt Python bindings for the Qt GUI toolkit and the QScintilla editor widget.&lt;/p&gt;&lt;p&gt;For more information see &lt;a href="{1}"&gt;{1}&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Please send bug reports to &lt;a href="mailto:{2}"&gt;{2}&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;To request a new feature please send an email to &lt;a href="mailto:{3}"&gt;{3}&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;{0} uses third party software which is copyrighted by its respective copyright holder. For details see the copyright notice of the individual package.&lt;/p&gt;</source>
       <translation>&lt;p&gt;{0} - это интегрированная среда разработки для языка программирования Python. Она написана с использованием связок PyQt Python для графической библиотеки Qt и виджета редактора QScintilla.&lt;/p&gt;&lt;p&gt;Дополнительную информацию смотрите здесь: &lt;a href="{1}"&gt;{1}&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Сообщения об ошибках отсылайте сюда: &lt;a href="mailto:{2}"&gt;{2}&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Предложения и просьбы о новом функционале отсылайте по адресу &lt;a href="mailto:{3}"&gt;{3}&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;{0} использует программное обеспечение сторонних производителей, которое охраняется авторскими правами соответствующих владельцев. Для дополнительной информации смотрите уведомление об авторских правах отдельных пакетов.&lt;/p&gt;</translation>
     </message>
@@ -37,42 +37,42 @@
   <context>
     <name>AboutPlugin</name>
     <message>
-      <location filename="../Plugins/PluginAbout.py" line="83" />
+      <location filename="../Plugins/PluginAbout.py" line="84" />
       <source>About {0}</source>
       <translation>О {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginAbout.py" line="85" />
+      <location filename="../Plugins/PluginAbout.py" line="86" />
       <source>&amp;About {0}</source>
       <translation>&amp;О {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginAbout.py" line="91" />
+      <location filename="../Plugins/PluginAbout.py" line="92" />
       <source>Display information about this software</source>
       <translation>Информация о программе</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginAbout.py" line="93" />
+      <location filename="../Plugins/PluginAbout.py" line="94" />
       <source>&lt;b&gt;About {0}&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
       <translation>&lt;b&gt;О {0}&lt;/b&gt;&lt;p&gt;Информация об этом программном продукте.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginAbout.py" line="103" />
+      <location filename="../Plugins/PluginAbout.py" line="104" />
       <source>About Qt</source>
       <translation>О Qt</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginAbout.py" line="105" />
+      <location filename="../Plugins/PluginAbout.py" line="106" />
       <source>About &amp;Qt</source>
       <translation>О &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginAbout.py" line="112" />
+      <location filename="../Plugins/PluginAbout.py" line="113" />
       <source>Display information about the Qt toolkit</source>
       <translation>Информация о наборе инструментов Qt</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginAbout.py" line="115" />
+      <location filename="../Plugins/PluginAbout.py" line="116" />
       <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>
@@ -1735,42 +1735,42 @@
       <translation>{0} не сконфигурирован.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="217" />
+      <location filename="../Utilities/BackgroundService.py" line="230" />
       <source>Initialization of Background Service</source>
       <translation>Инициализация фоновой службы</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="218" />
-      <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Инициализация фоновой службы &lt;b&gt;{0}&lt;/b&gt; не удалась.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="231" />
+      <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Инициализация фоновой службы &lt;b&gt;{0}&lt;/b&gt; не удалась.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="244" />
       <source>Restart background client?</source>
       <translation>Перезапустить клиента в фоновом режиме?</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="232" />
+      <location filename="../Utilities/BackgroundService.py" line="245" />
       <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It's used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Yes'&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Retry'&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'No'&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Фоновый клиент &lt;b&gt;{0}&lt;/b&gt; прекратил выполнение из-за ошибки. Этот клиент необходим для работы различных чекеров.&lt;/p&gt;&lt;p&gt;Выберите &lt;ul&gt;&lt;li&gt;&lt;b&gt;'Да'&lt;/b&gt; чтобы перезапустить его и отменить последнее задание &lt;/li&gt;&lt;li&gt;&lt;b&gt;'Повторить'&lt;/b&gt; чтобы перезапустить его и последнее задание &lt;/li&gt;&lt;li&gt;&lt;b&gt;'Нет'&lt;/b&gt; чтобы не перезапускать клиента.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Заметьте: Клиента можно перезапустить, открыв и сохранив диалог предпочтений или закрыв и снова открыв текущий проект.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="261" />
+      <location filename="../Utilities/BackgroundService.py" line="274" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation>Ошибка фонового клиента остановила сервис.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="502" />
+      <location filename="../Utilities/BackgroundService.py" line="515" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation>Фоновый клиент Eric'а прервал соединение по неизвестной причине.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="511" />
+      <location filename="../Utilities/BackgroundService.py" line="524" />
       <source>Background client disconnected.</source>
       <translation>Соединение фонового клиента прервано.</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="512" />
+      <location filename="../Utilities/BackgroundService.py" line="525" />
       <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
       <translation>Соединение фонового клиента &lt;b&gt;{0}&lt;/b&gt; прервано по неизвестной причине.&lt;br&gt;Перезапустить клиента?</translation>
     </message>
@@ -6544,7 +6544,7 @@
   <context>
     <name>CodingError</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="184" />
+      <location filename="../Utilities/__init__.py" line="185" />
       <source>The coding '{0}' is wrong for the given text.</source>
       <translation>Кодировка '{0}' не подходит для выбранного текста.</translation>
     </message>
@@ -10615,12 +10615,12 @@
       <translation>&lt;p&gt;Удаленная отладка настроена, но не была дана команда для удаленного входа в систему.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1451" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1458" />
       <source>Debug Protocol Error</source>
       <translation>Протокол ошибок отладки</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1452" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1459" />
       <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно декодировать ответ, полученный от бэкэнда отладчика. Сообщите об этой проблеме, отправив полученные данные на электронную почту eric bugs.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data: &lt;br/&gt;{1}&lt;/p&gt;</translation>
     </message>
@@ -12454,1005 +12454,1005 @@
   <context>
     <name>Editor</name>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3527" />
-      <location filename="../QScintilla/Editor.py" line="470" />
-      <location filename="../QScintilla/Editor.py" line="455" />
+      <location filename="../QScintilla/Editor.py" line="3526" />
+      <location filename="../QScintilla/Editor.py" line="471" />
+      <location filename="../QScintilla/Editor.py" line="456" />
       <source>Open File</source>
       <translation>Открыть файл</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="456" />
+      <location filename="../QScintilla/Editor.py" line="457" />
       <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt; and exceeds the configured limit of &lt;b&gt;{2} KB&lt;/b&gt;. It will not be opened!&lt;/p&gt;</source>
       <translation>&lt;p&gt;Размер файла &lt;b&gt;{0}&lt;/b&gt; составляет &lt;b&gt;{1} КБ&lt;/b&gt; и превышает заданный предел &lt;b&gt;{2} КБ&lt;/b&gt;. Он не будет открыт!&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="471" />
+      <location filename="../QScintilla/Editor.py" line="472" />
       <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt;. Do you really want to load it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; занимает &lt;b&gt;{1} KB&lt;/b&gt;. Вы действительно хотите его загрузить?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="573" />
+      <location filename="../QScintilla/Editor.py" line="574" />
       <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window's titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Окно редактора&lt;/b&gt;&lt;p&gt;Это окно используется для просмотра и редактирования исходных текстов приложений. Вы можете открыть несколько окон одновременно. Имя редактируемого файла отображается в заголовке окна.&lt;/p&gt;&lt;p&gt;Чтобы установить точку останова - кликните в пространство между номером строки и панелью свёртки на нужной строке. Появившийся маркер точки останова можно настроить через контекстное меню.&lt;/p&gt;&lt;p&gt;Чтобы установить закладку кликните в пространство между номером строки и панелью свёртки на нужной строке при нажатой клавише Shift.&lt;/p&gt;&lt;p&gt;Эти действия можно отменить через контекстное меню.&lt;/p&gt;&lt;p&gt;Если при нажатой клавише Ctrl кликнуть на маркер синтаксической ошибки, то будет показана дополнительная информация об ошибке.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="927" />
+      <location filename="../QScintilla/Editor.py" line="928" />
       <source>Undo</source>
       <translation>Отменить</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="930" />
+      <location filename="../QScintilla/Editor.py" line="931" />
       <source>Redo</source>
       <translation>Повторить</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="933" />
+      <location filename="../QScintilla/Editor.py" line="934" />
       <source>Revert to last saved state</source>
       <translation>Вернуть к последнему записанному состоянию</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="937" />
+      <location filename="../QScintilla/Editor.py" line="938" />
       <source>Cut</source>
       <translation>Вырезать</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="940" />
+      <location filename="../QScintilla/Editor.py" line="941" />
       <source>Copy</source>
       <translation>Копировать</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="943" />
+      <location filename="../QScintilla/Editor.py" line="944" />
       <source>Paste</source>
       <translation>Вставить</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="949" />
+      <location filename="../QScintilla/Editor.py" line="950" />
       <source>Indent</source>
       <translation>Увеличить отступ</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="954" />
+      <location filename="../QScintilla/Editor.py" line="955" />
       <source>Unindent</source>
       <translation>Уменьшить отступ</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="959" />
+      <location filename="../QScintilla/Editor.py" line="960" />
       <source>Comment</source>
       <translation>Закомментировать</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="964" />
+      <location filename="../QScintilla/Editor.py" line="965" />
       <source>Uncomment</source>
       <translation>Раскомментировать</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9939" />
-      <location filename="../QScintilla/Editor.py" line="969" />
+      <location filename="../QScintilla/Editor.py" line="9958" />
+      <location filename="../QScintilla/Editor.py" line="970" />
       <source>Generate Docstring</source>
       <translation>Генерировать строки документации</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="972" />
-      <source>Select to brace</source>
-      <translation>Выбрать до скобки</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="973" />
-      <source>Select all</source>
-      <translation>Выделить всё</translation>
+      <source>Select to brace</source>
+      <translation>Выбрать до скобки</translation>
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="974" />
+      <source>Select all</source>
+      <translation>Выделить всё</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="975" />
       <source>Deselect all</source>
       <translation>Снять выделение</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="976" />
+      <location filename="../QScintilla/Editor.py" line="977" />
       <source>Execute Selection In Console</source>
       <translation>Выполнить выбор в консоли</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="988" />
+      <location filename="../QScintilla/Editor.py" line="989" />
       <source>Use Monospaced Font</source>
       <translation>Использовать моноширинный шрифт</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="993" />
+      <location filename="../QScintilla/Editor.py" line="994" />
       <source>Autosave enabled</source>
       <translation>Автосохранение разрешено</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="998" />
+      <location filename="../QScintilla/Editor.py" line="999" />
       <source>Typing aids enabled</source>
       <translation>Разрешить помощь при наборе</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1006" />
+      <location filename="../QScintilla/Editor.py" line="1007" />
       <source>Automatic Completion enabled</source>
       <translation>Автоматическое дополнение</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1015" />
+      <location filename="../QScintilla/Editor.py" line="1016" />
       <source>Calltip</source>
       <translation>Подсказка</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1018" />
+      <location filename="../QScintilla/Editor.py" line="1019" />
       <source>Code Info</source>
       <translation>Инфо для кода</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1033" />
+      <location filename="../QScintilla/Editor.py" line="1034" />
       <source>New Document View</source>
       <translation>Новое окно для документа</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1038" />
+      <location filename="../QScintilla/Editor.py" line="1039" />
       <source>New Document View (with new split)</source>
       <translation>Новое окно для документа (в новом разделе)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1046" />
+      <location filename="../QScintilla/Editor.py" line="1047" />
       <source>Reload</source>
       <translation>Перезагрузить</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1049" />
+      <location filename="../QScintilla/Editor.py" line="1050" />
       <source>Save</source>
       <translation>Сохранить</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1053" />
+      <location filename="../QScintilla/Editor.py" line="1054" />
       <source>Save As...</source>
       <translation>Сохранить как...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1058" />
+      <location filename="../QScintilla/Editor.py" line="1059" />
       <source>Save Copy...</source>
       <translation>Сохранить копию...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1080" />
-      <location filename="../QScintilla/Editor.py" line="1077" />
+      <location filename="../QScintilla/Editor.py" line="1081" />
+      <location filename="../QScintilla/Editor.py" line="1078" />
       <source>Complete</source>
       <translation>Дополнить</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1084" />
+      <location filename="../QScintilla/Editor.py" line="1085" />
       <source>Clear Completions Cache</source>
       <translation>Очистить кэш дополнений</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1087" />
+      <location filename="../QScintilla/Editor.py" line="1088" />
       <source>Complete from Document</source>
       <translation>Дополнение из документа</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1089" />
+      <location filename="../QScintilla/Editor.py" line="1090" />
       <source>Complete from APIs</source>
       <translation>Дополнение из API</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1092" />
+      <location filename="../QScintilla/Editor.py" line="1093" />
       <source>Complete from Document and APIs</source>
       <translation>Дополнение из документа и API</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1106" />
+      <location filename="../QScintilla/Editor.py" line="1107" />
       <source>Check</source>
       <translation>Проверить</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1117" />
+      <location filename="../QScintilla/Editor.py" line="1118" />
       <source>Code Formatting</source>
       <translation>Форматировать код</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1123" />
+      <location filename="../QScintilla/Editor.py" line="1124" />
       <source>Black</source>
       <translation>Black</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1128" />
+      <location filename="../QScintilla/Editor.py" line="1129" />
       <source>Format Code</source>
       <translation>Форматировать код</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1132" />
+      <location filename="../QScintilla/Editor.py" line="1133" />
       <source>Check Formatting</source>
       <translation>Проверить форматирование</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1136" />
+      <location filename="../QScintilla/Editor.py" line="1137" />
       <source>Formatting Diff</source>
       <translation>Различия форматирования</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1145" />
+      <location filename="../QScintilla/Editor.py" line="1146" />
       <source>isort</source>
       <translation>isort</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1150" />
+      <location filename="../QScintilla/Editor.py" line="1151" />
       <source>Sort Imports</source>
       <translation>Сортировать импорт</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1154" />
+      <location filename="../QScintilla/Editor.py" line="1155" />
       <source>Imports Sorting Diff</source>
       <translation>Различия сортировки импорта</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1170" />
+      <location filename="../QScintilla/Editor.py" line="1171" />
       <source>Tools</source>
       <translation>Инструменты</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1181" />
+      <location filename="../QScintilla/Editor.py" line="1182" />
       <source>Show</source>
       <translation>Показать</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1183" />
+      <location filename="../QScintilla/Editor.py" line="1184" />
       <source>Code metrics...</source>
       <translation>Метрики кода...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1185" />
+      <location filename="../QScintilla/Editor.py" line="1186" />
       <source>Code coverage...</source>
       <translation>Покрытие кода...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1188" />
+      <location filename="../QScintilla/Editor.py" line="1189" />
       <source>Show code coverage annotations</source>
       <translation>Показать аннотации по покрытию кода</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1191" />
+      <location filename="../QScintilla/Editor.py" line="1192" />
       <source>Hide code coverage annotations</source>
       <translation>Не показывать аннотации по покрытию кода</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1195" />
+      <location filename="../QScintilla/Editor.py" line="1196" />
       <source>Profile data...</source>
       <translation>Данные профайлера...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1209" />
+      <location filename="../QScintilla/Editor.py" line="1210" />
       <source>Diagrams</source>
       <translation>Диаграммы</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1211" />
-      <source>Class Diagram...</source>
-      <translation>Диаграмма классов...</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="1212" />
-      <source>Package Diagram...</source>
-      <translation>Диаграмма пакетов...</translation>
+      <source>Class Diagram...</source>
+      <translation>Диаграмма классов...</translation>
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="1213" />
+      <source>Package Diagram...</source>
+      <translation>Диаграмма пакетов...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="1214" />
       <source>Imports Diagram...</source>
       <translation>Диаграмма импортирования...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1215" />
+      <location filename="../QScintilla/Editor.py" line="1216" />
       <source>Application Diagram...</source>
       <translation>Диаграмма приложения...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1220" />
+      <location filename="../QScintilla/Editor.py" line="1221" />
       <source>Load Diagram...</source>
       <translation>Загрузить диаграмму...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1235" />
+      <location filename="../QScintilla/Editor.py" line="1236" />
       <source>Languages</source>
       <translation>Языки</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1239" />
+      <location filename="../QScintilla/Editor.py" line="1240" />
       <source>Text</source>
       <translation>Текст</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1261" />
+      <location filename="../QScintilla/Editor.py" line="1262" />
       <source>Guessed</source>
       <translation>Предполагаемый язык</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1593" />
-      <location filename="../QScintilla/Editor.py" line="1265" />
+      <location filename="../QScintilla/Editor.py" line="1594" />
+      <location filename="../QScintilla/Editor.py" line="1266" />
       <source>Alternatives</source>
       <translation>Альтернативная подсветка</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1282" />
+      <location filename="../QScintilla/Editor.py" line="1283" />
       <source>Encodings</source>
       <translation>Кодировки</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1305" />
+      <location filename="../QScintilla/Editor.py" line="1306" />
       <source>Re-Open With Encoding</source>
       <translation>Открыть заново с кодировкой</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1325" />
+      <location filename="../QScintilla/Editor.py" line="1326" />
       <source>End-of-Line Type</source>
       <translation>Тип конца строки</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1329" />
+      <location filename="../QScintilla/Editor.py" line="1330" />
       <source>Unix</source>
       <translation>Unix</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1335" />
+      <location filename="../QScintilla/Editor.py" line="1336" />
       <source>Windows</source>
       <translation>Windows</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1341" />
+      <location filename="../QScintilla/Editor.py" line="1342" />
       <source>Macintosh</source>
       <translation>Macintosh</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1359" />
+      <location filename="../QScintilla/Editor.py" line="1360" />
       <source>Spelling</source>
       <translation>Проверка орфографии</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9026" />
-      <location filename="../QScintilla/Editor.py" line="1367" />
+      <location filename="../QScintilla/Editor.py" line="9045" />
+      <location filename="../QScintilla/Editor.py" line="1368" />
       <source>Check spelling...</source>
       <translation>Проверка орфографии...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1372" />
+      <location filename="../QScintilla/Editor.py" line="1373" />
       <source>Check spelling of selection...</source>
       <translation>Проверка орфографии выделенного участка...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1376" />
+      <location filename="../QScintilla/Editor.py" line="1377" />
       <source>Remove from dictionary</source>
       <translation>Удалить из словаря</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1393" />
+      <location filename="../QScintilla/Editor.py" line="1394" />
       <source>Spell Check Languages</source>
       <translation>Языки проверки правописания</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1397" />
+      <location filename="../QScintilla/Editor.py" line="1398" />
       <source>No Language</source>
       <translation>Нет языка</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1424" />
+      <location filename="../QScintilla/Editor.py" line="1425" />
       <source>Toggle bookmark</source>
       <translation>Создать/Удалить закладку</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1426" />
+      <location filename="../QScintilla/Editor.py" line="1427" />
       <source>Next bookmark</source>
       <translation>Следующая закладка</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1429" />
+      <location filename="../QScintilla/Editor.py" line="1430" />
       <source>Previous bookmark</source>
       <translation>Предыдущая закладка</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1432" />
+      <location filename="../QScintilla/Editor.py" line="1433" />
       <source>Clear all bookmarks</source>
       <translation>Очистить все закладки</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1443" />
+      <location filename="../QScintilla/Editor.py" line="1444" />
       <source>Toggle breakpoint</source>
       <translation>Поставить/убрать точку останова</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1446" />
+      <location filename="../QScintilla/Editor.py" line="1447" />
       <source>Toggle temporary breakpoint</source>
       <translation>Поставить/убрать временную точку останова</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1449" />
+      <location filename="../QScintilla/Editor.py" line="1450" />
       <source>Edit breakpoint...</source>
       <translation>Редактировать точку останова...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6498" />
-      <location filename="../QScintilla/Editor.py" line="1452" />
+      <location filename="../QScintilla/Editor.py" line="6497" />
+      <location filename="../QScintilla/Editor.py" line="1453" />
       <source>Enable breakpoint</source>
       <translation>Установить точку останова</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1455" />
+      <location filename="../QScintilla/Editor.py" line="1456" />
       <source>Next breakpoint</source>
       <translation>Следующая точка останова</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1458" />
+      <location filename="../QScintilla/Editor.py" line="1459" />
       <source>Previous breakpoint</source>
       <translation>Предыдущая точка останова</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1461" />
+      <location filename="../QScintilla/Editor.py" line="1462" />
       <source>Clear all breakpoints</source>
       <translation>Убрать все точки останова</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1472" />
+      <location filename="../QScintilla/Editor.py" line="1473" />
       <source>Toggle all folds</source>
       <translation>Свернуть/Развернуть все свертки</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1476" />
+      <location filename="../QScintilla/Editor.py" line="1477" />
       <source>Toggle all folds (including children)</source>
       <translation>Свернуть/Развернуть все свёртки (включая дочерние)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1481" />
+      <location filename="../QScintilla/Editor.py" line="1482" />
       <source>Toggle current fold</source>
       <translation>Свернуть/Развернуть текущую свертку</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1485" />
+      <location filename="../QScintilla/Editor.py" line="1486" />
       <source>Expand (including children)</source>
       <translation>Развернуть (включая дочерние)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1489" />
+      <location filename="../QScintilla/Editor.py" line="1490" />
       <source>Collapse (including children)</source>
       <translation>Свернуть (включая дочерние)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1494" />
+      <location filename="../QScintilla/Editor.py" line="1495" />
       <source>Clear all folds</source>
       <translation>Очистить все свертки</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1505" />
+      <location filename="../QScintilla/Editor.py" line="1506" />
       <source>Goto syntax error</source>
       <translation>Перейти к синтаксической ошибке</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1508" />
+      <location filename="../QScintilla/Editor.py" line="1509" />
       <source>Show syntax error message</source>
       <translation>Показать сообщение о синтаксической ошибке</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1511" />
+      <location filename="../QScintilla/Editor.py" line="1512" />
       <source>Clear syntax error</source>
       <translation>Очистить синтаксическую ошибку</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1515" />
+      <location filename="../QScintilla/Editor.py" line="1516" />
       <source>Next warning</source>
       <translation>Следующее предупреждение</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1518" />
+      <location filename="../QScintilla/Editor.py" line="1519" />
       <source>Previous warning</source>
       <translation>Предыдущее предупреждение</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1521" />
+      <location filename="../QScintilla/Editor.py" line="1522" />
       <source>Show warning message</source>
       <translation>Показать предупреждение</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1524" />
+      <location filename="../QScintilla/Editor.py" line="1525" />
       <source>Clear warnings</source>
       <translation>Очистить предупреждения</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1528" />
+      <location filename="../QScintilla/Editor.py" line="1529" />
       <source>Next uncovered line</source>
       <translation>Следующая неохваченная строка</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1531" />
+      <location filename="../QScintilla/Editor.py" line="1532" />
       <source>Previous uncovered line</source>
       <translation>Предыдущая неохваченная строка</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1535" />
+      <location filename="../QScintilla/Editor.py" line="1536" />
       <source>Next task</source>
       <translation>Следующая задача</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1538" />
+      <location filename="../QScintilla/Editor.py" line="1539" />
       <source>Previous task</source>
       <translation>Предыдущая задача</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1542" />
+      <location filename="../QScintilla/Editor.py" line="1543" />
       <source>Next change</source>
       <translation>Следующее изменение</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1545" />
+      <location filename="../QScintilla/Editor.py" line="1546" />
       <source>Previous change</source>
       <translation>Предыдущее изменение</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1548" />
+      <location filename="../QScintilla/Editor.py" line="1549" />
       <source>Clear changes</source>
       <translation>Очистить изменения</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1578" />
-      <location filename="../QScintilla/Editor.py" line="1569" />
-      <source>Export source</source>
-      <translation>Экспортировать исходник</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="1570" />
-      <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Не найден экспортёр для формата &lt;b&gt;{0}&lt;/b&gt;. Отмена...&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="1579" />
+      <location filename="../QScintilla/Editor.py" line="1570" />
+      <source>Export source</source>
+      <translation>Экспортировать исходник</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="1571" />
+      <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Не найден экспортёр для формата &lt;b&gt;{0}&lt;/b&gt;. Отмена...&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="1580" />
       <source>No export format given. Aborting...</source>
       <translation>Не задан формат экспорта. Прерывание...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1590" />
+      <location filename="../QScintilla/Editor.py" line="1591" />
       <source>Alternatives ({0})</source>
       <translation>Альтернативы ({0})</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="1614" />
-      <source>Pygments Lexer</source>
-      <translation>Лексер Pygments</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="1615" />
+      <source>Pygments Lexer</source>
+      <translation>Лексер Pygments</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="1616" />
       <source>Select the Pygments lexer to apply.</source>
       <translation>Выберите для использования лексер Pygments.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="2217" />
-      <source>Modification of Read Only file</source>
-      <translation>Редактирование файла, открытого только на чтение</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="2218" />
+      <source>Modification of Read Only file</source>
+      <translation>Редактирование файла, открытого только на чтение</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="2219" />
       <source>You are attempting to change a read only file. Please save to a different file first.</source>
       <translation>Попытка редактирования файла, открытого только на чтение. Пожалуйста, сначала сохраните изменения в другой файл.</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="2700" />
+      <source>Add Breakpoint</source>
+      <translation>Добавить точку останова</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="2701" />
-      <source>Add Breakpoint</source>
-      <translation>Добавить точку останова</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="2702" />
       <source>No Python byte code will be created for the selected line. No break point will be set!</source>
       <translation>Не будет создан байтовый код Python для выбранной строки. Точка останова не будет установлена!</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3056" />
+      <location filename="../QScintilla/Editor.py" line="3055" />
       <source>Printing...</source>
       <translation>Печать...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3073" />
+      <location filename="../QScintilla/Editor.py" line="3072" />
       <source>Printing completed</source>
       <translation>Печать завершена</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3075" />
+      <location filename="../QScintilla/Editor.py" line="3074" />
       <source>Error while printing</source>
       <translation>Ошибка печати</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3078" />
+      <location filename="../QScintilla/Editor.py" line="3077" />
       <source>Printing aborted</source>
       <translation>Печать прервана</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="3459" />
+      <source>File Modified</source>
+      <translation>Файл изменён</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="3460" />
-      <source>File Modified</source>
-      <translation>Файл изменён</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="3461" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
       <translation>&lt;p&gt;В файле &lt;b&gt;{0}&lt;/b&gt; есть несохранённые изменения.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3528" />
+      <location filename="../QScintilla/Editor.py" line="3527" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно прочитать файл &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="3718" />
+      <location filename="../QScintilla/Editor.py" line="3699" />
+      <location filename="../QScintilla/Editor.py" line="3659" />
+      <source>Save File</source>
+      <translation>Сохранить файл</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="3660" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Невозможно сохранить файл &lt;b&gt;{0}&lt;/b&gt;:&lt;br&gt;Причина: {1}.&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="3719" />
-      <location filename="../QScintilla/Editor.py" line="3700" />
-      <location filename="../QScintilla/Editor.py" line="3660" />
-      <source>Save File</source>
-      <translation>Сохранить файл</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="3661" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Невозможно сохранить файл &lt;b&gt;{0}&lt;/b&gt;:&lt;br&gt;Причина: {1}.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="3720" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; уже существует. Переписать?&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="3863" />
+      <source>Save File to Device</source>
+      <translation>Сохранить файл на устройство</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="3864" />
-      <source>Save File to Device</source>
-      <translation>Сохранить файл на устройство</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="3865" />
       <source>Enter the complete device file path:</source>
       <translation>Введите полный путь к файлу устройства:</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="5652" />
+      <source>Autocompletion</source>
+      <translation>Автодополнение</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="5653" />
-      <source>Autocompletion</source>
-      <translation>Автодополнение</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="5654" />
       <source>Autocompletion is not available because there is no autocompletion source set.</source>
       <translation>Автодополнение недоступно, так как не задан источник автодополнения.</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="5787" />
+      <source>Auto-Completion Provider</source>
+      <translation>Источник автодополнений</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="5788" />
-      <source>Auto-Completion Provider</source>
-      <translation>Источник автодополнений</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="5789" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation>Список дополнений источника '{0}' уже зарегистрирован. Повторный запрос проигнорирован.</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="6084" />
+      <source>Call-Tips Provider</source>
+      <translation>Источник всплывающих подсказок</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="6085" />
-      <source>Call-Tips Provider</source>
-      <translation>Источник всплывающих подсказок</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="6086" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation>Источник всплывающих подсказок '{0}' уже зарегистрирован. Повторный запрос проигнорирован.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6502" />
+      <location filename="../QScintilla/Editor.py" line="6501" />
       <source>Disable breakpoint</source>
       <translation>Убрать точку останова</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="6916" />
+      <source>Code Coverage</source>
+      <translation>Покрытие кода</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="6917" />
-      <source>Code Coverage</source>
-      <translation>Покрытие кода</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="6918" />
       <source>Please select a coverage file</source>
       <translation>Пожалуйста, выберите файл покрытия</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="6992" />
+      <location filename="../QScintilla/Editor.py" line="6984" />
+      <source>Show Code Coverage Annotations</source>
+      <translation>Показать аннотации по покрытию кода</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="6985" />
+      <source>All lines have been covered.</source>
+      <translation>Все строки были охвачены.</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="6993" />
-      <location filename="../QScintilla/Editor.py" line="6985" />
-      <source>Show Code Coverage Annotations</source>
-      <translation>Показать аннотации по покрытию кода</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="6986" />
-      <source>All lines have been covered.</source>
-      <translation>Все строки были охвачены.</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="6994" />
       <source>There is no coverage file available.</source>
       <translation>Нет доступного файла покрытия.</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7101" />
+      <source>Profile Data</source>
+      <translation>Данные профайлера</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7102" />
-      <source>Profile Data</source>
-      <translation>Данные профайлера</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7103" />
       <source>Please select a profile file</source>
       <translation>Пожалуйста, выберите файл профиля</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7264" />
+      <location filename="../QScintilla/Editor.py" line="7258" />
+      <source>Syntax Error</source>
+      <translation>Синтаксическая ошибка</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7265" />
-      <location filename="../QScintilla/Editor.py" line="7259" />
-      <source>Syntax Error</source>
-      <translation>Синтаксическая ошибка</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7266" />
       <source>No syntax error message available.</source>
       <translation>Нет сообщения о синтаксической ошибке.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7513" />
-      <location filename="../QScintilla/Editor.py" line="7507" />
+      <location filename="../QScintilla/Editor.py" line="7512" />
+      <location filename="../QScintilla/Editor.py" line="7506" />
       <source>Warning</source>
       <translation>Предупреждение</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7513" />
+      <location filename="../QScintilla/Editor.py" line="7512" />
       <source>No warning messages available.</source>
       <translation>Нет предупреждающего сообщения.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7592" />
+      <location filename="../QScintilla/Editor.py" line="7591" />
       <source>Info: {0}</source>
       <translation>Инфо: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7608" />
-      <location filename="../QScintilla/Editor.py" line="7594" />
+      <location filename="../QScintilla/Editor.py" line="7607" />
+      <location filename="../QScintilla/Editor.py" line="7593" />
       <source>Error: {0}</source>
       <translation>Ошибка: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7596" />
+      <location filename="../QScintilla/Editor.py" line="7595" />
       <source>Style: {0}</source>
       <translation>Стиль: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7601" />
+      <location filename="../QScintilla/Editor.py" line="7600" />
       <source>Warning: {0}</source>
       <translation>Предупреждение: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7730" />
       <source>Macro Name</source>
       <translation>Имя макроса</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7730" />
       <source>Select a macro name:</source>
       <translation>Задайте имя макроса:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7757" />
+      <location filename="../QScintilla/Editor.py" line="7756" />
       <source>Load macro file</source>
       <translation>Загрузить макрос</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7803" />
-      <location filename="../QScintilla/Editor.py" line="7759" />
+      <location filename="../QScintilla/Editor.py" line="7802" />
+      <location filename="../QScintilla/Editor.py" line="7758" />
       <source>Macro files (*.macro)</source>
       <translation>Макросы (*.macro)</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7780" />
+      <location filename="../QScintilla/Editor.py" line="7770" />
+      <source>Error loading macro</source>
+      <translation>Ошибка при загрузке макроса</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7771" />
+      <source>&lt;p&gt;The macro 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="../QScintilla/Editor.py" line="7781" />
-      <location filename="../QScintilla/Editor.py" line="7771" />
-      <source>Error loading macro</source>
-      <translation>Ошибка при загрузке макроса</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7772" />
-      <source>&lt;p&gt;The macro 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="../QScintilla/Editor.py" line="7782" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл с макросами &lt;b&gt;{0}&lt;/b&gt; повреждён.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7801" />
+      <location filename="../QScintilla/Editor.py" line="7800" />
       <source>Save macro file</source>
       <translation>Сохранить файл с макросами</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7818" />
+      <source>Save macro</source>
+      <translation>Сохранить макрос</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7819" />
-      <source>Save macro</source>
-      <translation>Сохранить макрос</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7820" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Макро &lt;b&gt;{0}&lt;/b&gt; уже существует. Переписать?&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7834" />
+      <source>Error saving macro</source>
+      <translation>Ошибка при сохранении макроса</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7835" />
-      <source>Error saving macro</source>
-      <translation>Ошибка при сохранении макроса</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7836" />
       <source>&lt;p&gt;The macro 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="../QScintilla/Editor.py" line="7848" />
+      <source>Start Macro Recording</source>
+      <translation>Начать запись макроса</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7849" />
-      <source>Start Macro Recording</source>
-      <translation>Начать запись макроса</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7850" />
       <source>Macro recording is already active. Start new?</source>
       <translation>Запись макроса уже идёт. Начать новую запись?</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7875" />
+      <source>Macro Recording</source>
+      <translation>Запись макроса</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="7876" />
-      <source>Macro Recording</source>
-      <translation>Запись макроса</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7877" />
       <source>Enter name of the macro:</source>
       <translation>Задайте имя макроса:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8060" />
+      <location filename="../QScintilla/Editor.py" line="8079" />
       <source>{0} (ro)</source>
       <translation>{0} (только чтение)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8245" />
+      <location filename="../QScintilla/Editor.py" line="8264" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; был изменён, будучи открытым в eric. Перепрочесть?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8251" />
+      <location filename="../QScintilla/Editor.py" line="8270" />
       <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
       <translation>&lt;br&gt;&lt;b&gt;Предупреждение:&lt;/b&gt; При переоткрытии все изменения будут потеряны.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8258" />
+      <location filename="../QScintilla/Editor.py" line="8277" />
       <source>File changed</source>
       <translation>Файл изменен</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8351" />
+      <location filename="../QScintilla/Editor.py" line="8370" />
       <source>Reload File</source>
       <translation>Перезагрузить файл</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8352" />
+      <location filename="../QScintilla/Editor.py" line="8371" />
       <source>&lt;p&gt;The editor contains unsaved modifications.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reloading it.&lt;/p&gt;&lt;p&gt;Shall the editor really be reloaded?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Редактор содержит несохраненные изменения.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Внимание:&lt;/b&gt; Вы потеряете свои изменения при повторной загрузке.&lt;/p&gt;&lt;p&gt;Действительно перезагрузить редактор?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8452" />
+      <location filename="../QScintilla/Editor.py" line="8471" />
       <source>Drop Error</source>
       <translation>Ошибка Drag&amp;&amp;Drop</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8453" />
+      <location filename="../QScintilla/Editor.py" line="8472" />
       <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="../QScintilla/Editor.py" line="8474" />
+      <location filename="../QScintilla/Editor.py" line="8493" />
       <source>Resources</source>
       <translation>Ресурсы</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8476" />
+      <location filename="../QScintilla/Editor.py" line="8495" />
       <source>Add file...</source>
       <translation>Добавить файл...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8477" />
+      <location filename="../QScintilla/Editor.py" line="8496" />
       <source>Add files...</source>
       <translation>Добавить файлы...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8478" />
+      <location filename="../QScintilla/Editor.py" line="8497" />
       <source>Add aliased file...</source>
       <translation>Добавить файл под другим именем...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8480" />
+      <location filename="../QScintilla/Editor.py" line="8499" />
       <source>Add localized resource...</source>
       <translation>Добавить локализованный ресурс...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8483" />
+      <location filename="../QScintilla/Editor.py" line="8502" />
       <source>Add resource frame</source>
       <translation>Добавить фрагмент ресурсов</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8503" />
+      <location filename="../QScintilla/Editor.py" line="8522" />
       <source>Add file resource</source>
       <translation>Добавить файл ресурсов</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8517" />
+      <location filename="../QScintilla/Editor.py" line="8536" />
       <source>Add file resources</source>
       <translation>Добавить файлы ресурсов</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8541" />
-      <location filename="../QScintilla/Editor.py" line="8535" />
+      <location filename="../QScintilla/Editor.py" line="8560" />
+      <location filename="../QScintilla/Editor.py" line="8554" />
       <source>Add aliased file resource</source>
       <translation>Добавить файл ресурсов под другим именем</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8542" />
+      <location filename="../QScintilla/Editor.py" line="8561" />
       <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
       <translation>Другое имя для файла &lt;b&gt;{0}&lt;/b&gt;:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8617" />
+      <location filename="../QScintilla/Editor.py" line="8636" />
       <source>Package Diagram</source>
       <translation>Диаграмма пакетов</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8618" />
+      <location filename="../QScintilla/Editor.py" line="8637" />
       <source>Include class attributes?</source>
       <translation>Включать атрибуты класса?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8638" />
+      <location filename="../QScintilla/Editor.py" line="8657" />
       <source>Imports Diagram</source>
       <translation>Диаграмма импортов</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8639" />
-      <source>Include imports from external modules?</source>
-      <translation>Включать импорты из внешних модулей?</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="8658" />
+      <source>Include imports from external modules?</source>
+      <translation>Включать импорты из внешних модулей?</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="8677" />
       <source>Application Diagram</source>
       <translation>Диаграмма приложения</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8659" />
+      <location filename="../QScintilla/Editor.py" line="8678" />
       <source>Include module names?</source>
       <translation>Включать имена модулей?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9030" />
+      <location filename="../QScintilla/Editor.py" line="9049" />
       <source>Add to dictionary</source>
       <translation>Добавить в словарь</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9032" />
+      <location filename="../QScintilla/Editor.py" line="9051" />
       <source>Ignore All</source>
       <translation>Игнорировать всё</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9479" />
+      <location filename="../QScintilla/Editor.py" line="9498" />
       <source>Sort Lines</source>
       <translation>Сортировать строки</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9480" />
+      <location filename="../QScintilla/Editor.py" line="9499" />
       <source>The selection contains illegal data for a numerical sort.</source>
       <translation>Выборка содержит данные неподходящие для сортировки как числа.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9573" />
+      <location filename="../QScintilla/Editor.py" line="9592" />
       <source>Register Mouse Click Handler</source>
       <translation>Регистрация обработчика кликов мышки</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9574" />
+      <location filename="../QScintilla/Editor.py" line="9593" />
       <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source>
       <translation>Обработчик кликов мышки для "{0}" уже зарегистрирован "{1}". Запрос прерван "{2}"...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9667" />
+      <location filename="../QScintilla/Editor.py" line="9686" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation>{0:4d}    {1}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9673" />
+      <location filename="../QScintilla/Editor.py" line="9692" />
       <source>{0:4d}    {1}
     =&gt;  {2}</source>
       <comment>line number, source code, file name</comment>
@@ -13460,12 +13460,12 @@
     =&gt;  {2}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9742" />
+      <location filename="../QScintilla/Editor.py" line="9761" />
       <source>EditorConfig Properties</source>
       <translation>Свойства EditorConfig</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9743" />
+      <location filename="../QScintilla/Editor.py" line="9762" />
       <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не удается загрузить свойства EditorConfig для файла &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
@@ -18820,12 +18820,12 @@
   <context>
     <name>EricJsonServer</name>
     <message>
-      <location filename="../EricNetwork/EricJsonServer.py" line="185" />
+      <location filename="../EricNetwork/EricJsonServer.py" line="199" />
       <source>JSON Protocol Error</source>
       <translation>Ошибка протокола JSON</translation>
     </message>
     <message>
-      <location filename="../EricNetwork/EricJsonServer.py" line="186" />
+      <location filename="../EricNetwork/EricJsonServer.py" line="200" />
       <source>&lt;p&gt;The response received from the client could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не удалось декодировать ответ, полученный от клиента. Сообщите об этой проблеме с полученными данными на адрес электронной почты eric bugs.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</translation>
     </message>
@@ -32049,77 +32049,77 @@
       <translation>Пустая страница</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="573" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="575" />
       <source>Backward</source>
       <translation>Назад</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="578" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="580" />
       <source>Forward</source>
       <translation>Вперёд</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="583" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="585" />
       <source>Reload</source>
       <translation>Перезагрузить</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="595" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="597" />
       <source>Copy Page URL to Clipboard</source>
       <translation>Копировать URL страницы в буфер</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="601" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="603" />
       <source>Bookmark Page</source>
       <translation>Страница закладок</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="609" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="611" />
       <source>Zoom in</source>
       <translation>Увеличить масштаб</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="614" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="616" />
       <source>Zoom out</source>
       <translation>Уменьшить масштаб</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="619" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="621" />
       <source>Zoom reset</source>
       <translation>Сбросить масштаб</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="625" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="627" />
       <source>Copy</source>
       <translation>Копировать</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="631" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="633" />
       <source>Select All</source>
       <translation>Выделить всё</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="638" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="640" />
       <source>Close</source>
       <translation>Закрыть</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="643" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="645" />
       <source>Close Others</source>
       <translation>Закрыть остальные</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="661" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="663" />
       <source>Open Link in New Page</source>
       <translation>Открыть ссылку на новой странице</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="668" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="670" />
       <source>Open Link in Background Page</source>
       <translation>Открыть ссылку на фоновой странице</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="676" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="678" />
       <source>Copy URL to Clipboard</source>
       <translation>Копировать URL в буфер</translation>
     </message>
@@ -32127,184 +32127,184 @@
   <context>
     <name>HelpViewerWidget</name>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="126" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="127" />
       <source>Open a local file</source>
       <translation>Открыть локальный файл</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="132" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="133" />
       <source>Select action from menu</source>
       <translation>Выберите действие из меню</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="148" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="149" />
       <source>Move one page backward</source>
       <translation>Перейти на страницу назад</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="153" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="154" />
       <source>Move one page forward</source>
       <translation>Перейти на страницу вперед</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="165" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="166" />
       <source>Reload the current page</source>
       <translation>Перезагрузить текущую страницу</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="176" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="177" />
       <source>Zoom in on the current page</source>
       <translation>Увеличить масштаб текущей страницы</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="182" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="183" />
       <source>Zoom out on the current page</source>
       <translation>Уменьшить масштаб текущей страницы</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="189" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="190" />
       <source>Reset the zoom level of the current page</source>
       <translation>Сбросить масштабирование текущей страницы</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="201" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="202" />
       <source>Add a new empty page</source>
       <translation>Добавить новую пустую страницу</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="207" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="208" />
       <source>Close the current page</source>
       <translation>Закрыть текущую страницу</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="218" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="219" />
       <source>Show or hide the search pane</source>
       <translation>Показать или скрыть панель поиска</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="294" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="295" />
       <source>Show list of open pages</source>
       <translation>Показать список открытых страниц</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="297" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="298" />
       <source>Show the table of contents</source>
       <translation>Показать оглавление</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="300" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="301" />
       <source>Show the help document index</source>
       <translation>Показать индекс документа справки</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="303" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="304" />
       <source>Show the help search window</source>
       <translation>Показать окно поиска справки</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="306" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="307" />
       <source>Show list of bookmarks</source>
       <translation>Показать список закладок</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
-      <source>eric API Documentation</source>
-      <translation>Документация API eric</translation>
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="445" />
-      <source>Python 3 Documentation</source>
-      <translation>Документация Python 3</translation>
+      <source>eric API Documentation</source>
+      <translation>Документация API eric</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="446" />
-      <source>Qt5 Documentation</source>
-      <translation>Документация Qt5</translation>
+      <source>Python 3 Documentation</source>
+      <translation>Документация Python 3</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="447" />
-      <source>Qt6 Documentation</source>
-      <translation>Документация Qt6</translation>
+      <source>Qt5 Documentation</source>
+      <translation>Документация Qt5</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
-      <source>PyQt5 Documentation</source>
-      <translation>Документация PyQt5</translation>
+      <source>Qt6 Documentation</source>
+      <translation>Документация Qt6</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
-      <source>PyQt6 Documentation</source>
-      <translation>Документация PyQt6</translation>
+      <source>PyQt5 Documentation</source>
+      <translation>Документация PyQt5</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
-      <source>PySide2 Documentation</source>
-      <translation>Документация PySide2</translation>
+      <source>PyQt6 Documentation</source>
+      <translation>Документация PyQt6</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
+      <source>PySide2 Documentation</source>
+      <translation>Документация PySide2</translation>
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="452" />
       <source>PySide6 Documentation</source>
       <translation>Документация PySide6</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="508" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="509" />
       <source>Open HTML File</source>
       <translation>Открыть HTML файл</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="510" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="511" />
       <source>HTML Files (*.htm *.html);;All Files (*)</source>
       <translation>Файлы HTML (*.html *.htm);;Все файлы (*)</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="697" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="698" />
       <source>Help Engine</source>
       <translation>Движок системы справки</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="721" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="722" />
       <source>Looking for Documentation...</source>
       <translation>Просмотр документации...</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="732" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="733" />
       <source>eric Help Viewer</source>
       <translation>Просмотрщик справки eric</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="757" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="758" />
       <source>Manage QtHelp Documents</source>
       <translation>Управление документацией QtHelp</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="760" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="761" />
       <source>Reindex Documentation</source>
       <translation>Переиндексация документов</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="765" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="766" />
       <source>Configure Help Documentation</source>
       <translation>Конфигурация справочной документации</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="858" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="838" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="859" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="839" />
       <source>Clear History</source>
       <translation>Очистить историю</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="961" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="962" />
       <source>Updating search index</source>
       <translation>Обновление индекса поиска</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1019" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1020" />
       <source>Filtered by: </source>
       <translation>Отфильтровано по: </translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1055" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1050" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1056" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1051" />
       <source>Unfiltered</source>
       <translation>Без фильтра</translation>
     </message>
@@ -45084,125 +45084,125 @@
   <context>
     <name>IrcChannelWidget</name>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1674" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1609" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="448" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1675" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1610" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="449" />
       <source>Send Message</source>
       <translation>Отправить сообщение</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="449" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="450" />
       <source>Messages starting with a '/' are not allowed in private chats.</source>
       <translation>В приватных разговорах сообщения, начинающиеся с '/', не разрешаются.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="565" />
-      <source>Leave IRC channel</source>
-      <translation>Уйти с IRC канала</translation>
-    </message>
-    <message>
       <location filename="../Network/IRC/IrcChannelWidget.py" line="566" />
+      <source>Leave IRC channel</source>
+      <translation>Уйти с IRC канала</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="567" />
       <source>Do you really want to leave the IRC channel &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation>Вы действительно хотите уйти с канала &lt;b&gt;{0}&lt;/b&gt;?</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="735" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="736" />
       <source>Channel Message</source>
       <translation>Сообщение в канале</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="742" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="743" />
       <source>Nick mentioned</source>
       <translation>Упомянутый ник</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="769" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="770" />
       <source>{0} has joined the channel {1} ({2}).</source>
       <translation>{0} присоединился к каналу {1} ({2}).</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="774" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="775" />
       <source>You have joined the channel {0} ({1}).</source>
       <translation>Вы присоединились к каналу {0} ({1}).</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="782" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="783" />
       <source>Join Channel</source>
       <translation>Подключиться к каналу</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="802" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="803" />
       <source>{0} has left {1}.</source>
       <translation>{0} отсоединился {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="809" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="806" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="810" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="807" />
       <source>{0} has left {1}: {2}.</source>
       <translation>{0} отсоединился {1}: {2}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="817" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="818" />
       <source>Leave Channel</source>
       <translation>Уйти с канала</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="837" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="838" />
       <source>{0} has quit {1}.</source>
       <translation>{0} отсоединился {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="840" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="841" />
       <source>{0} has quit {1}: {2}.</source>
       <translation>{0} отсоединился {1}: {2}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="848" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="849" />
       <source>Quit</source>
       <translation>Выйти</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="869" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="870" />
       <source>You are now known as {0}.</source>
       <translation>Вы теперь {0}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="875" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="876" />
       <source>User {0} is now known as {1}.</source>
       <translation>Пользователь {0} сменил псевдоним на {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="918" />
-      <source>Away</source>
-      <translation>Отошел</translation>
-    </message>
-    <message>
       <location filename="../Network/IRC/IrcChannelWidget.py" line="919" />
+      <source>Away</source>
+      <translation>Отошел</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="920" />
       <source>{0} is away: {1}</source>
       <translation>{0} вдали: {1}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="939" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="940" />
       <source>The channel topic is: "{0}".</source>
       <translation>Тема канала: "{0}".</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="958" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="959" />
       <source>The topic was set by {0} on {1}.</source>
       <translation>Тему отрыл {0} {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="981" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="982" />
       <source>Channel URL: {0}</source>
       <translation>URL канала: {0}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1006" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1007" />
       <source>password protected ({0})</source>
       <translation>защищён паролем ({0})</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1009" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1010" />
       <source>limited to %n user(s)</source>
       <translation>
         <numerusform>ограничивается %n пользователем</numerusform>
@@ -45211,77 +45211,77 @@
       </translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1017" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1018" />
       <source>Channel modes: {0}.</source>
       <translation>Режимы канала: {0}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1036" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1037" />
       <source>This channel was created on {0}.</source>
       <translation>Этот канал был открыт {0}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1073" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1074" />
       <source>{0} sets the channel mode to 'anonymous'.</source>
       <translation>{0} устанавливает 'анонимный' режим для канала.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1077" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1078" />
       <source>{0} removes the 'anonymous' mode from the channel.</source>
       <translation>{0} отменяет 'анонимный' режим для канала.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1082" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1083" />
       <source>{0} sets a ban on {1}.</source>
       <translation>{0} устанавливает запрет на {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1086" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1087" />
       <source>{0} removes the ban on {1}.</source>
       <translation>{0} снимает запрет на {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1091" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1092" />
       <source>{0} sets the channel mode to 'no colors allowed'.</source>
       <translation>{0} устанавливает 'цвета запрещены' режим для канала.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1095" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1096" />
       <source>{0} sets the channel mode to 'allow color codes'.</source>
       <translation>{0} устанавливает 'цвета разрешены' режим для канала.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1100" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1101" />
       <source>{0} sets a ban exception on {1}.</source>
       <translation>{0} устанавливает ислючение на запрет на {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1104" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1105" />
       <source>{0} removes the ban exception on {1}.</source>
       <translation>{0} отменяет ислючение на запрет на {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1109" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1110" />
       <source>{0} sets the channel mode to 'invite only'.</source>
       <translation>{0} устанавливает 'только по приглашению' режим для канала.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1113" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1114" />
       <source>{0} removes the 'invite only' mode from the channel.</source>
       <translation>{0} отменяет 'только по приглашению' режим для канала.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1118" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1119" />
       <source>{0} sets the channel key to '{1}'.</source>
       <translation>{0} устанавливает ключ '{1}' для канала.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1122" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1123" />
       <source>{0} removes the channel key.</source>
       <translation>{0} удаляет ключ для канала.</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1125" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1126" />
       <source>{0} sets the channel limit to %n nick(s).</source>
       <translation>
         <numerusform>{0} устанавливает ограничение канала в %n ник.</numerusform>
@@ -45290,327 +45290,327 @@
       </translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1131" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1132" />
       <source>{0} removes the channel limit.</source>
       <translation>{0} снимает ограничение на число пользователей канала.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1134" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1135" />
       <source>{0} sets the channel mode to 'moderated'.</source>
       <translation>{0} устанавливает 'контролируемый' режим для канала.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1138" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1139" />
       <source>{0} sets the channel mode to 'unmoderated'.</source>
       <translation>{0} устанавливает 'неконтролируемый' режим для канала.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1143" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1144" />
       <source>{0} sets the channel mode to 'no messages from outside'.</source>
       <translation>{0} устанавливает 'внешние сообщения запрещены' режим для канала.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1148" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1149" />
       <source>{0} sets the channel mode to 'allow messages from outside'.</source>
       <translation>{0} устанавливает режим 'внешние сообщения разрешены' для канала.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1154" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1155" />
       <source>{0} sets the channel mode to 'private'.</source>
       <translation>{0} устанавливает 'приватный' режим для канала.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1158" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1159" />
       <source>{0} sets the channel mode to 'public'.</source>
       <translation>{0} устанавливает ''public' режим для канала.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1163" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1164" />
       <source>{0} sets the channel mode to 'quiet'.</source>
       <translation>{0} устанавливает 'тихий' режим для канала.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1167" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1168" />
       <source>{0} removes the 'quiet' mode from the channel.</source>
       <translation>{0} отменяет 'тихий' режим для канала.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1174" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1175" />
       <source>{0} sets the channel mode to 'secret'.</source>
       <translation>{0} устанавливает 'секретный' режим для канала.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1178" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1179" />
       <source>{0} sets the channel mode to 'visible'.</source>
       <translation>{0} устанавливает 'открытый' режим для канала.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1183" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1184" />
       <source>{0} switches on 'topic protection'.</source>
       <translation>{0} включает 'тема защищена'.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1187" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1188" />
       <source>{0} switches off 'topic protection'.</source>
       <translation>{0} выключает 'тема защищена'.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1192" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1193" />
       <source>{0} sets invitation mask {1}.</source>
       <translation>{0} устанавливает шаблон для приглашений {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1196" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1197" />
       <source>{0} removes the invitation mask {1}.</source>
       <translation>{0} отменяет шаблон для приглашений {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1200" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1201" />
       <source>Mode</source>
       <translation>Режим</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1222" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1223" />
       <source>{0} sets mode for {1}: {2}.</source>
       <translation>{0} устанавливает режим для {1}: {2}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1254" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1255" />
       <source>Help</source>
       <translation>Справка</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1307" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1297" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1289" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1281" />
-      <source>CTCP</source>
-      <translation>CTCP (Клиент-клиент протокол)</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1282" />
-      <source>Received Version request from {0}.</source>
-      <translation>Получен запрос версии от {0}.</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1290" />
-      <source>Received CTCP-PING request from {0}, sending answer.</source>
-      <translation>CTCP-PING запрос от {0}, отправление ответа.</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1298" />
-      <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
-      <translation>CTCP-CLIENTINFO запрос от {0}, отправление ответа.</translation>
-    </message>
-    <message>
       <location filename="../Network/IRC/IrcChannelWidget.py" line="1308" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1298" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1290" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1282" />
+      <source>CTCP</source>
+      <translation>CTCP (Клиент-клиент протокол)</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1283" />
+      <source>Received Version request from {0}.</source>
+      <translation>Получен запрос версии от {0}.</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1291" />
+      <source>Received CTCP-PING request from {0}, sending answer.</source>
+      <translation>CTCP-PING запрос от {0}, отправление ответа.</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1299" />
+      <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
+      <translation>CTCP-CLIENTINFO запрос от {0}, отправление ответа.</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1309" />
       <source>Received unknown CTCP-{0} request from {1}.</source>
       <translation>Неизвестный CTCP-{0} запрос от {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1408" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1409" />
       <source>--- New From Here ---</source>
       <translation>--- Здесь новые сообщения ---</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1492" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1475" />
-      <source>Save Messages</source>
-      <translation>Сохранить сообщения</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1477" />
-      <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source>
-      <translation>Файлы HTML (*.{0});;Файлы текстовые (*.txt);;Все файлы (*)</translation>
-    </message>
-    <message>
       <location filename="../Network/IRC/IrcChannelWidget.py" line="1493" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1476" />
+      <source>Save Messages</source>
+      <translation>Сохранить сообщения</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1478" />
+      <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source>
+      <translation>Файлы HTML (*.{0});;Файлы текстовые (*.txt);;Все файлы (*)</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1494" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; уже существует. Переписать?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1513" />
-      <source>Error saving Messages</source>
-      <translation>Ошибка при сохранении сообщений</translation>
-    </message>
-    <message>
       <location filename="../Network/IRC/IrcChannelWidget.py" line="1514" />
+      <source>Error saving Messages</source>
+      <translation>Ошибка при сохранении сообщений</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1515" />
       <source>&lt;p&gt;The messages contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно записать сообщения в файл &lt;b&gt;{0}&lt;/b&gt;:&lt;br&gt;Причина: {1}.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1526" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1527" />
       <source>Copy</source>
       <translation>Копировать</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1531" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1532" />
       <source>Cut all</source>
       <translation>Вырезать всё</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1536" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1537" />
       <source>Copy all</source>
       <translation>Копировать всё</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1542" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1543" />
       <source>Clear</source>
       <translation>Очистить</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1547" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1548" />
       <source>Save</source>
       <translation>Сохранить</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1551" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1552" />
       <source>Mark Current Position</source>
       <translation>Пометить текущую позицию</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1554" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1555" />
       <source>Remove Position Marker</source>
       <translation>Удалить маркер позиции</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1642" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1626" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1610" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1643" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1627" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1611" />
       <source>Enter the message to be sent:</source>
       <translation>Введите сообщение для отправки:</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1677" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1625" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1678" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1626" />
       <source>Send Query</source>
       <translation>Отправить запрос</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1680" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1641" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1681" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1642" />
       <source>Send Notice</source>
       <translation>Отправить уведомление</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1667" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1668" />
       <source>Who Is</source>
       <translation>Кто это</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1670" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1671" />
       <source>Private Chat</source>
       <translation>Приватный чат</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1684" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1685" />
       <source>Send Ping</source>
       <translation>Отправить Ping</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1687" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1688" />
       <source>Ignore User</source>
       <translation>Игнорировать пользователя</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1691" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1692" />
       <source>Refresh</source>
       <translation>Освежить</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1815" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1789" />
-      <source>Who</source>
-      <translation>Кто</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1790" />
-      <source>End of WHO list for {0}.</source>
-      <translation>Конец списка для {0}.</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1813" />
-      <source> (Away)</source>
-      <translation> (отсутствует)</translation>
-    </message>
-    <message>
       <location filename="../Network/IRC/IrcChannelWidget.py" line="1816" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1790" />
+      <source>Who</source>
+      <translation>Кто</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1791" />
+      <source>End of WHO list for {0}.</source>
+      <translation>Конец списка для {0}.</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1814" />
+      <source> (Away)</source>
+      <translation> (отсутствует)</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1817" />
       <source>{0} is {1}@{2} ({3}){4}</source>
       <translation>{0} это {1}@{2} ({3}){4}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2205" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2184" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2163" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2140" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2120" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2100" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2080" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2057" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2049" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2041" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2030" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2011" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1977" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1972" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1949" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1926" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1919" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1912" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1905" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1898" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1891" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1840" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2206" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2185" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2164" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2141" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2121" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2101" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2081" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2058" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2050" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2042" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2031" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2012" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1978" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1973" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1950" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1927" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1920" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1913" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1906" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1899" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1892" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1841" />
       <source>Whois</source>
       <translation>Whois</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1841" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1842" />
       <source>{0} is {1}@{2} ({3}).</source>
       <translation>{0} это {1}@{2} ({3}).</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1892" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1893" />
       <source>{0} is a user on channels: {1}</source>
       <translation>{0} это пользователь в каналах: {1}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1899" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1900" />
       <source>{0} has voice on channels: {1}</source>
       <translation>{0} обладает голосом в каналах: {1}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1906" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1907" />
       <source>{0} is a halfop on channels: {1}</source>
       <translation>{0} это помощник оператора в каналах: {1}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1913" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1914" />
       <source>{0} is an operator on channels: {1}</source>
       <translation>{0} это оператор в каналах: {1}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1920" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1921" />
       <source>{0} is owner of channels: {1}</source>
       <translation>{0} это владелец каналов: {1}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1927" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1928" />
       <source>{0} is admin on channels: {1}</source>
       <translation>{0} это администратор в каналах: {1}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1950" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1951" />
       <source>{0} is online via {1} ({2}).</source>
       <translation>{0} в режиме онлайн через {1} ({2}).</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="1973" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="1974" />
       <source>{0} is an IRC Operator.</source>
       <translation>{0} это IRC оператор.</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2006" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2007" />
       <source>%n day(s)</source>
       <translation>
         <numerusform>%n день</numerusform>
@@ -45619,8 +45619,8 @@
       </translation>
     </message>
     <message numerus="yes">
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2026" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2007" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2027" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2008" />
       <source>%n hour(s)</source>
       <translation>
         <numerusform>%n час</numerusform>
@@ -45629,9 +45629,9 @@
       </translation>
     </message>
     <message numerus="yes">
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2038" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2027" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2008" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2039" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2028" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2009" />
       <source>%n minute(s)</source>
       <translation>
         <numerusform>%n минуту</numerusform>
@@ -45640,9 +45640,9 @@
       </translation>
     </message>
     <message numerus="yes">
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2039" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2028" />
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2009" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2040" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2029" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2010" />
       <source>%n second(s)</source>
       <translation>
         <numerusform>%n секунду</numerusform>
@@ -45651,25 +45651,25 @@
       </translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2012" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2013" />
       <source>{0} has been idle for {1}, {2}, {3}, and {4}.</source>
       <comment>{0} = name of person, {1} = (x days), {2} = (x hours), {3} = (x minutes), {4} = (x seconds)</comment>
       <translation>{0} не появлялся {1}, {2}, {3}, и {4}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2031" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2032" />
       <source>{0} has been idle for {1}, {2}, and {3}.</source>
       <comment>{0} = name of person, {1} = (x hours), {2} = (x minutes), {3} = (x seconds)</comment>
       <translation>{0} не появлялся {1}, {2}, и {3}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2042" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2043" />
       <source>{0} has been idle for {1} and {2}.</source>
       <comment>{0} = name of person, {1} = (x minutes), {3} = (x seconds)</comment>
       <translation>{0} не появлялся {1} и {2}.</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2050" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2051" />
       <source>{0} has been idle for %n second(s).</source>
       <translation>
         <numerusform>{0} бездействует %n секунду.</numerusform>
@@ -45678,52 +45678,52 @@
       </translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2058" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2059" />
       <source>{0} has been online since {1}.</source>
       <translation>{0} присутствует с {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2081" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2082" />
       <source>End of WHOIS list for {0}.</source>
       <translation>Конец WHOIS списка для {0}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2101" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2102" />
       <source>{0} is an identified user.</source>
       <translation>{0} является реальным пользователем.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2121" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2122" />
       <source>{0} is available for help.</source>
       <translation>{0} готов помочь.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2141" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2142" />
       <source>{0} is logged in as {1}.</source>
       <translation>{0} вошёл как {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2164" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2165" />
       <source>{0} is actually using the host {1} (IP: {2}).</source>
       <translation>{0} использует компьютер {1} (IP: {2}).</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2185" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2186" />
       <source>{0} is using a secure connection.</source>
       <translation>{0} использует безопасное соединение.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2206" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2207" />
       <source>{0} is connecting from {1} (IP: {2}).</source>
       <translation>{0} подсоединился с {1} (IP: {2}).</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="2229" />
-      <source>Edit Channel Topic</source>
-      <translation>Изменить тему канала</translation>
-    </message>
-    <message>
       <location filename="../Network/IRC/IrcChannelWidget.py" line="2230" />
+      <source>Edit Channel Topic</source>
+      <translation>Изменить тему канала</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="2231" />
       <source>Enter the topic for this channel:</source>
       <translation>Введите тему для канала:</translation>
     </message>
@@ -46676,7 +46676,7 @@
   <context>
     <name>IrcUserItem</name>
     <message>
-      <location filename="../Network/IRC/IrcChannelWidget.py" line="131" />
+      <location filename="../Network/IRC/IrcChannelWidget.py" line="132" />
       <source>{0} (ignored)</source>
       <translation>{0} (проигнорировано)</translation>
     </message>
@@ -46762,324 +46762,324 @@
   <context>
     <name>IrcWidget</name>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="73" />
+      <location filename="../Network/IRC/IrcWidget.py" line="74" />
       <source>Press to leave the current channel</source>
       <translation>Отключиться от текущего канала</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="256" />
-      <location filename="../Network/IRC/IrcWidget.py" line="151" />
-      <source>Disconnect from Server</source>
-      <translation>Отключение от сервера</translation>
-    </message>
-    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="257" />
       <location filename="../Network/IRC/IrcWidget.py" line="152" />
+      <source>Disconnect from Server</source>
+      <translation>Отключение от сервера</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="258" />
+      <location filename="../Network/IRC/IrcWidget.py" line="153" />
       <source>&lt;p&gt;Do you really want to disconnect from &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;&lt;p&gt;All channels will be closed.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Вы действительно хотите отключиться от &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;&lt;p&gt;Все каналы будут закрыты.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="201" />
-      <source>SSL Connection</source>
-      <translation>SSL соединение</translation>
-    </message>
-    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="202" />
+      <source>SSL Connection</source>
+      <translation>SSL соединение</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="203" />
       <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source>
       <translation>Было запрошено шифрованное соединение к IRC сети, но SSL не доступен. Пожалуйста, измените настройки сервера.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="583" />
-      <location filename="../Network/IRC/IrcWidget.py" line="548" />
-      <location filename="../Network/IRC/IrcWidget.py" line="539" />
-      <location filename="../Network/IRC/IrcWidget.py" line="278" />
-      <location filename="../Network/IRC/IrcWidget.py" line="273" />
-      <location filename="../Network/IRC/IrcWidget.py" line="266" />
-      <location filename="../Network/IRC/IrcWidget.py" line="242" />
-      <location filename="../Network/IRC/IrcWidget.py" line="228" />
+      <location filename="../Network/IRC/IrcWidget.py" line="584" />
+      <location filename="../Network/IRC/IrcWidget.py" line="549" />
+      <location filename="../Network/IRC/IrcWidget.py" line="540" />
+      <location filename="../Network/IRC/IrcWidget.py" line="279" />
+      <location filename="../Network/IRC/IrcWidget.py" line="274" />
+      <location filename="../Network/IRC/IrcWidget.py" line="267" />
+      <location filename="../Network/IRC/IrcWidget.py" line="243" />
+      <location filename="../Network/IRC/IrcWidget.py" line="229" />
       <source>Info</source>
       <translation>Информация</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="229" />
+      <location filename="../Network/IRC/IrcWidget.py" line="230" />
       <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source>
       <translation>Поиск сервера {0} (порт {1}) используя шифрованное SSL соединение...</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="243" />
+      <location filename="../Network/IRC/IrcWidget.py" line="244" />
       <source>Looking for server {0} (port {1})...</source>
       <translation>Поиск сервера {0} (порт {1})...</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="267" />
+      <location filename="../Network/IRC/IrcWidget.py" line="268" />
       <source>Disconnecting from server {0}...</source>
       <translation>Отключение от сервера {0}...</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="274" />
+      <location filename="../Network/IRC/IrcWidget.py" line="275" />
       <source>Disconnecting from network {0}...</source>
       <translation>Отключение от сети {0}...</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="278" />
+      <location filename="../Network/IRC/IrcWidget.py" line="279" />
       <source>Disconnecting from server.</source>
       <translation>Отключение от сервера.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="539" />
+      <location filename="../Network/IRC/IrcWidget.py" line="540" />
       <source>Server found,connecting...</source>
       <translation>Сервер найден, соединение...</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="548" />
+      <location filename="../Network/IRC/IrcWidget.py" line="549" />
       <source>Connected,logging in...</source>
       <translation>Соединение выполнено, вход...</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="583" />
+      <location filename="../Network/IRC/IrcWidget.py" line="584" />
       <source>Server disconnected.</source>
       <translation>Сервер отсоединился.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="627" />
-      <source>Message Error</source>
-      <translation>Ошибка сообщения</translation>
-    </message>
-    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="628" />
+      <source>Message Error</source>
+      <translation>Ошибка сообщения</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="629" />
       <source>Unknown message received from server:&lt;br/&gt;{0}</source>
       <translation>Неизвестное сообщение от сервера:&lt;br/&gt;{0}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1069" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1059" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1051" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1043" />
-      <location filename="../Network/IRC/IrcWidget.py" line="671" />
-      <location filename="../Network/IRC/IrcWidget.py" line="663" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1070" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1060" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1052" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1044" />
+      <location filename="../Network/IRC/IrcWidget.py" line="672" />
+      <location filename="../Network/IRC/IrcWidget.py" line="664" />
       <source>CTCP</source>
       <translation>CTCP (Клиент-клиент протокол)</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="664" />
+      <location filename="../Network/IRC/IrcWidget.py" line="665" />
       <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
       <translation>Получен CTCP-PING ответ от {0} с задержкой {1} мс.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="672" />
+      <location filename="../Network/IRC/IrcWidget.py" line="673" />
       <source>Received unknown CTCP-{0} response from {1}.</source>
       <translation>Получен неизвестный CTCP- {0} ответ от {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="700" />
+      <location filename="../Network/IRC/IrcWidget.py" line="701" />
       <source>Notice</source>
       <translation>Уведомление</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="710" />
+      <location filename="../Network/IRC/IrcWidget.py" line="711" />
       <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
       <translation>Ваши персональные режимы установлены: &lt;b&gt;[{0}]&lt;/b&gt;.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="714" />
+      <location filename="../Network/IRC/IrcWidget.py" line="715" />
       <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
       <translation>{0} изменил ваши персональные режимы на: &lt;b&gt;[{1}]&lt;/b&gt;.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="718" />
+      <location filename="../Network/IRC/IrcWidget.py" line="719" />
       <source>Mode</source>
       <translation>Режим</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="726" />
+      <location filename="../Network/IRC/IrcWidget.py" line="727" />
       <source>You have left channel {0}.</source>
       <translation>Вы отключились от канала {0}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="738" />
+      <location filename="../Network/IRC/IrcWidget.py" line="739" />
       <source>You are now known as {0}.</source>
       <translation>Вы теперь {0}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="744" />
+      <location filename="../Network/IRC/IrcWidget.py" line="745" />
       <source>User {0} is now known as {1}.</source>
       <translation>Пользователь {0} сменил псевдоним на {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="750" />
+      <location filename="../Network/IRC/IrcWidget.py" line="751" />
       <source>Received PONG from {0}</source>
       <translation>Получен PONG из {0}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="755" />
+      <location filename="../Network/IRC/IrcWidget.py" line="756" />
       <source>Server Error</source>
       <translation>Ошибка сервера</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="793" />
+      <location filename="../Network/IRC/IrcWidget.py" line="794" />
       <source>Error</source>
       <translation>Ошибка</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="812" />
+      <location filename="../Network/IRC/IrcWidget.py" line="813" />
       <source>Welcome</source>
       <translation>Добро пожаловать</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="814" />
+      <location filename="../Network/IRC/IrcWidget.py" line="815" />
       <source>Support</source>
       <translation>Поддержка</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="816" />
+      <location filename="../Network/IRC/IrcWidget.py" line="817" />
       <source>User</source>
       <translation>Пользователь</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="818" />
+      <location filename="../Network/IRC/IrcWidget.py" line="819" />
       <source>MOTD</source>
       <translation>MOTD</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="820" />
+      <location filename="../Network/IRC/IrcWidget.py" line="821" />
       <source>Away</source>
       <translation>Отсутствует</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="822" />
+      <location filename="../Network/IRC/IrcWidget.py" line="823" />
       <source>Info ({0})</source>
       <translation>Инфо ({0})</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="826" />
+      <location filename="../Network/IRC/IrcWidget.py" line="827" />
       <source>Message of the day</source>
       <translation>Сообщение дня</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="828" />
+      <location filename="../Network/IRC/IrcWidget.py" line="829" />
       <source>End of message of the day</source>
       <translation>Конец сообщения дня</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="831" />
+      <location filename="../Network/IRC/IrcWidget.py" line="832" />
       <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
       <translation>Сервер {0} (Версия {1}), Пользовательские режимы: {2}, Режимы каналов: {3}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="836" />
+      <location filename="../Network/IRC/IrcWidget.py" line="837" />
       <source>Current users on {0}: {1}, max. {2}</source>
       <translation>Текущее число пользователей на {0}: {1}, максимум: {2}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="841" />
+      <location filename="../Network/IRC/IrcWidget.py" line="842" />
       <source>Current users on the network: {0}, max. {1}</source>
       <translation>Текущее число пользователей в сети {0}, максимум: {1}</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="845" />
+      <location filename="../Network/IRC/IrcWidget.py" line="846" />
       <source>You are no longer marked as being away.</source>
       <translation>Вы больше не отмечены как отсутствующий.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="847" />
+      <location filename="../Network/IRC/IrcWidget.py" line="848" />
       <source>You have been marked as being away.</source>
       <translation>Вы отмечены как отсутствующий.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="978" />
-      <location filename="../Network/IRC/IrcWidget.py" line="962" />
-      <location filename="../Network/IRC/IrcWidget.py" line="910" />
-      <source>SSL Error</source>
-      <translation>Ошибка SSL</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="911" />
-      <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
-      <translation>Соединение с сервером {0} (порт {1}) потеряно.</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="947" />
-      <location filename="../Network/IRC/IrcWidget.py" line="940" />
-      <location filename="../Network/IRC/IrcWidget.py" line="935" />
-      <location filename="../Network/IRC/IrcWidget.py" line="927" />
-      <location filename="../Network/IRC/IrcWidget.py" line="919" />
-      <source>Socket Error</source>
-      <translation>Ошибка соединения</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="920" />
-      <source>The host was not found. Please check the host name and port settings.</source>
-      <translation>Хост не найден. Пожалуйста проверьте имя хоста и парамеры порта.</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="928" />
-      <source>The connection was refused by the peer. Please check the host name and port settings.</source>
-      <translation>Сервер отказал в подключении. Пожалуйста проверьте имя хоста и парамеры порта.</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="935" />
-      <source>The SSL handshake failed.</source>
-      <translation>Неудачное SSL соединение.</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="941" />
-      <source>The following network error occurred:&lt;br/&gt;{0}</source>
-      <translation>Сетевая ошибка:&lt;br/&gt;{0}</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="947" />
-      <source>A network error occurred.</source>
-      <translation>Сетевая ошибка.</translation>
-    </message>
-    <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="963" />
-      <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source>
-      <translation>Ошибка подключения к {0} (порт {1}) с использованием SSL. Либо сервер не поддерживает SSL (Вы выбрали правильный порт?), либо неправильный сертификат.</translation>
-    </message>
-    <message>
       <location filename="../Network/IRC/IrcWidget.py" line="979" />
+      <location filename="../Network/IRC/IrcWidget.py" line="963" />
+      <location filename="../Network/IRC/IrcWidget.py" line="911" />
+      <source>SSL Error</source>
+      <translation>Ошибка SSL</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="912" />
+      <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
+      <translation>Соединение с сервером {0} (порт {1}) потеряно.</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="948" />
+      <location filename="../Network/IRC/IrcWidget.py" line="941" />
+      <location filename="../Network/IRC/IrcWidget.py" line="936" />
+      <location filename="../Network/IRC/IrcWidget.py" line="928" />
+      <location filename="../Network/IRC/IrcWidget.py" line="920" />
+      <source>Socket Error</source>
+      <translation>Ошибка соединения</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="921" />
+      <source>The host was not found. Please check the host name and port settings.</source>
+      <translation>Хост не найден. Пожалуйста проверьте имя хоста и парамеры порта.</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="929" />
+      <source>The connection was refused by the peer. Please check the host name and port settings.</source>
+      <translation>Сервер отказал в подключении. Пожалуйста проверьте имя хоста и парамеры порта.</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="936" />
+      <source>The SSL handshake failed.</source>
+      <translation>Неудачное SSL соединение.</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="942" />
+      <source>The following network error occurred:&lt;br/&gt;{0}</source>
+      <translation>Сетевая ошибка:&lt;br/&gt;{0}</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="948" />
+      <source>A network error occurred.</source>
+      <translation>Сетевая ошибка.</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="964" />
+      <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source>
+      <translation>Ошибка подключения к {0} (порт {1}) с использованием SSL. Либо сервер не поддерживает SSL (Вы выбрали правильный порт?), либо неправильный сертификат.</translation>
+    </message>
+    <message>
+      <location filename="../Network/IRC/IrcWidget.py" line="980" />
       <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
       <translation>SSL сертификат сервера {0} (порт {1}) не прошел проверку на подлинность. Возможно Вы приняли ошибки SSL.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1044" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1045" />
       <source>Received Version request from {0}.</source>
       <translation>Получен запрос версии от {0}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1052" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1053" />
       <source>Received CTCP-PING request from {0}, sending answer.</source>
       <translation>CTCP-PING запрос от {0}, отправление ответа.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1060" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1061" />
       <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
       <translation>CTCP-CLIENTINFO запрос от {0}, отправление ответа.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1070" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1071" />
       <source>Received unknown CTCP-{0} request from {1}.</source>
       <translation>Неизвестный CTCP-{0} запрос от {1}.</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1086" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1087" />
       <source>{0} ({1})</source>
       <comment>channel name, users count</comment>
       <translation>{0} ({1})</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1128" />
-      <location filename="../Network/IRC/IrcWidget.py" line="1108" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1129" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1109" />
       <source>Critical</source>
       <translation>Критическая</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1109" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1110" />
       <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
       <translation>На сервере нет приемлимых псевдонимов, сконфигурированных для &lt;b&gt;{0}&lt;/b&gt;. Отключение...</translation>
     </message>
     <message>
-      <location filename="../Network/IRC/IrcWidget.py" line="1128" />
+      <location filename="../Network/IRC/IrcWidget.py" line="1129" />
       <source>The given nickname is already in use.</source>
       <translation>Данный псевдоним уже используется.</translation>
     </message>
@@ -50000,17 +50000,17 @@
   <context>
     <name>LogViewerPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="36" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="33" />
       <source>&lt;b&gt;Message Filters for Standard Output&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stdout.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Фильтры сообщений для Standard Output&lt;/b&gt;&lt;p&gt;Этот список отображает настроенные фильтры сообщений, используемые для подавления сообщений, полученных через stdout.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="43" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="40" />
       <source>&lt;b&gt;Message Filters for Standard Error &lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stderr.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Фильтры сообщений для Standard Error &lt;/b&gt;&lt;p&gt;Этот список отображает настроенные фильтры сообщений, используемые для подавления сообщений, полученных через stderr.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="50" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="47" />
       <source>&lt;b&gt;Message Filters for both&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stdout or stderr.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Фильтры сообщений для обоих&lt;/b&gt;&lt;p&gt;Этот список отображает настроенные фильтры сообщений, используемые для подавления сообщений, полученные через stdout или stderr.&lt;/p&gt;</translation>
     </message>
@@ -51571,8 +51571,8 @@
       <translation>Введите сетевой пароль</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="364" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="347" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="361" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="344" />
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.ui" line="0" />
       <source>Press to show the password</source>
@@ -51856,66 +51856,66 @@
       <translation>Введите URL документации MicroPython для Calliope mini</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="56" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="53" />
       <source>Automatic</source>
       <translation>Автоматический выбор</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="55" />
+      <source>Light</source>
+      <translation>Light</translation>
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="58" />
-      <source>Light</source>
-      <translation>Light</translation>
+      <source>Dark</source>
+      <translation>Dark</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="61" />
-      <source>Dark</source>
-      <translation>Dark</translation>
+      <source>Blue Cerulean</source>
+      <translation>Blue Cerulean</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="64" />
-      <source>Blue Cerulean</source>
+      <source>Brown Sand</source>
       <translation>Blue Cerulean</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="67" />
-      <source>Brown Sand</source>
-      <translation>Blue Cerulean</translation>
+      <source>Blue NCS</source>
+      <translation>Blue NCS</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="70" />
-      <source>Blue NCS</source>
-      <translation>Blue NCS</translation>
+      <source>High Contrast</source>
+      <translation>Высококонтрастная</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="73" />
-      <source>High Contrast</source>
-      <translation>Высококонтрастная</translation>
+      <source>Blue Icy</source>
+      <translation>Blue Icy</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="76" />
-      <source>Blue Icy</source>
-      <translation>Blue Icy</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="79" />
       <source>Qt</source>
       <translation>Qt</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="90" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="88" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="85" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="82" />
+      <source>All Files (*)</source>
+      <translation>Все файлы (*)</translation>
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="93" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="91" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="88" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="85" />
-      <source>All Files (*)</source>
-      <translation>Все файлы (*)</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="96" />
       <source>open</source>
       <translation>открыто</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="360" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="343" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="357" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="340" />
       <source>Press to hide the password</source>
       <translation>Скрыть пароль</translation>
     </message>
@@ -54267,7 +54267,7 @@
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="362" />
       <source>Found useless {0} expression. Consider either assigning it to a variable or removing it.</source>
-      <translation>Найдено бесполезное выражение. Рассмотрите возможность назначения его переменной или удалить.</translation>
+      <translation> type="unfinished"&gt;Найдено бесполезное выражение. Рассмотрите возможность назначения его переменной или удалить.</translation>
     </message>
     <message>
       <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="367" />
@@ -58493,37 +58493,37 @@
       <translation>Архив</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackageDetailsDialog.py" line="275" />
+      <location filename="../PipInterface/PipPackageDetailsDialog.py" line="269" />
       <source>&lt;h3&gt;{0}&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed Version:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Affected Version:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Advisory:&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;{0}&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Установленная версия:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Версия с уязвимостью:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Рекомендации:&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackageDetailsDialog.py" line="310" />
+      <location filename="../PipInterface/PipPackageDetailsDialog.py" line="304" />
       <source>any</source>
       <translation>любой</translation>
     </message>
     <message>
+      <location filename="../PipInterface/PipPackageDetailsDialog.py" line="340" />
+      <source>B</source>
+      <translation>B</translation>
+    </message>
+    <message>
+      <location filename="../PipInterface/PipPackageDetailsDialog.py" line="343" />
+      <source>KB</source>
+      <translation>KB</translation>
+    </message>
+    <message>
       <location filename="../PipInterface/PipPackageDetailsDialog.py" line="346" />
-      <source>B</source>
-      <translation>B</translation>
+      <source>MB</source>
+      <translation>MB</translation>
     </message>
     <message>
       <location filename="../PipInterface/PipPackageDetailsDialog.py" line="349" />
-      <source>KB</source>
-      <translation>KB</translation>
-    </message>
-    <message>
-      <location filename="../PipInterface/PipPackageDetailsDialog.py" line="352" />
-      <source>MB</source>
-      <translation>MB</translation>
-    </message>
-    <message>
-      <location filename="../PipInterface/PipPackageDetailsDialog.py" line="355" />
       <source>GB</source>
       <translation>GB</translation>
     </message>
     <message>
-      <location filename="../PipInterface/PipPackageDetailsDialog.py" line="356" />
+      <location filename="../PipInterface/PipPackageDetailsDialog.py" line="350" />
       <source>{0:.1f} {1}</source>
       <comment>value, unit</comment>
       <translation>{0:.1f} {1}</translation>
@@ -60186,110 +60186,110 @@
       <translation>Выбрано: &lt;b&gt;{0}&lt;/b&gt;</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="544" />
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="534" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="542" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="532" />
       <source>Download Plugin Files</source>
       <translation>Загрузить файлы плагинов</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="545" />
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="535" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="543" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="533" />
       <source>The requested plugins were downloaded.</source>
       <translation>Запрашиваемые плагины скачаны.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="603" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="601" />
       <source>Plugins Repository URL Changed</source>
       <translation>URL репозитория плагинов изменился</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="604" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="602" />
       <source>The URL of the Plugins Repository has changed. Select the "Update" button to get the new repository file.</source>
       <translation>URL репозитория плагинов изменился. Нажмите кнопку "Обновить" чтобы загрузить новый файл репозитория.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="613" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="611" />
       <source>Read plugins repository file</source>
       <translation>Прочитать файл репозитория плагинов</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="614" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="612" />
       <source>&lt;p&gt;The plugins repository file &lt;b&gt;{0}&lt;/b&gt; could not be read. Select Update&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно прочитать файл репозитория &lt;b&gt;{0}&lt;/b&gt;. Выполните обновление&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="623" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="621" />
       <source>No plugin repository file available.
 Select Update.</source>
       <translation>Файл репозитория плагинов недоступен.
 Выполните обновление.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="627" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="625" />
       <source>New: &lt;b&gt;{0}&lt;/b&gt;</source>
       <translation>Новые: &lt;b&gt;{0}&lt;/b&gt;</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="629" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="627" />
       <source>Local Updates: &lt;b&gt;{0}&lt;/b&gt;</source>
       <translation>Локальные обновления: &lt;b&gt;{0}&lt;/b&gt;</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="632" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="630" />
       <source>Remote Updates: &lt;b&gt;{0}&lt;/b&gt;</source>
       <translation>Удаленные обновления: &lt;b&gt;{0}&lt;/b&gt;</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="705" />
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="673" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="703" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="671" />
       <source>Error downloading file</source>
       <translation>Ошибка загрузки файла</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="706" />
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="674" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="704" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="672" />
       <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не удалось загрузить запрашиваемый файл из {0}.&lt;/p&gt;&lt;p&gt;Ошибка: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="677" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="675" />
       <source>No connection to Internet.</source>
       <translation>Нет подключения к интернету.</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="849" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="847" />
       <source>up-to-date</source>
       <translation>новейший</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="852" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="850" />
       <source>new download available</source>
       <translation>имеются обновления для загрузки</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="856" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="854" />
       <source>update installable</source>
       <translation>обновления готовы к установке</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="860" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="858" />
       <source>updated download available</source>
       <translation>имеется обновление</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="864" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="862" />
       <source>error determining status</source>
       <translation>статус определения ошибки</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="1261" />
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="1233" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="1259" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="1231" />
       <source>Cleanup of Plugin Downloads</source>
       <translation>Очистить загруженные плагины</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="1265" />
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="1236" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="1263" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="1234" />
       <source>&lt;p&gt;The plugin download &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно удалить обновление для плагина &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
@@ -60297,17 +60297,17 @@
   <context>
     <name>PluginRepositoryWindow</name>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="1120" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="1118" />
       <source>Process Generation Error</source>
       <translation>Ошибка при запуске процесса</translation>
     </message>
     <message>
-      <location filename="../PluginManager/PluginRepositoryDialog.py" line="1121" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="1119" />
       <source>&lt;p&gt;Could not start the process.&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="../PluginManager/PluginRepositoryDialog.py" line="1125" />
+      <location filename="../PluginManager/PluginRepositoryDialog.py" line="1123" />
       <source>OK</source>
       <translation>ОК</translation>
     </message>
@@ -60654,18 +60654,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1901" />
+      <location filename="../Preferences/__init__.py" line="1907" />
       <source>Export Preferences</source>
       <translation>Экспорт Preferences</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1930" />
-      <location filename="../Preferences/__init__.py" line="1903" />
+      <location filename="../Preferences/__init__.py" line="1936" />
+      <location filename="../Preferences/__init__.py" line="1909" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation>Файлы Preferences (*.ini);;Все файлы (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1928" />
+      <location filename="../Preferences/__init__.py" line="1934" />
       <source>Import Preferences</source>
       <translation>Импорт Preferences</translation>
     </message>
@@ -62356,9 +62356,9 @@
       <translation>&lt;b&gt;Создать архивы плагина (Snapshot)&lt;/b&gt;&lt;p&gt;Создание архивных файлов плагина eric, используя список файлов, приведенный в файле PKGLIST. Имя архива, если оно не задано в файле со списком пакета, создается из имени главного сценария. Версия главного скрипта изменяется в соответствии релизом snapshot.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6752" />
-      <location filename="../Project/Project.py" line="6723" />
-      <location filename="../Project/Project.py" line="6677" />
+      <location filename="../Project/Project.py" line="6746" />
+      <location filename="../Project/Project.py" line="6717" />
+      <location filename="../Project/Project.py" line="6671" />
       <location filename="../Project/Project.py" line="4820" />
       <source>Execute Make</source>
       <translation>Выполнить Make</translation>
@@ -62379,7 +62379,7 @@
       <translation>&lt;b&gt;Выполнить Make&lt;/b&gt;&lt;p&gt;Выполнение прогона 'make' для пересборки настроеной цели.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6729" />
+      <location filename="../Project/Project.py" line="6723" />
       <location filename="../Project/Project.py" line="4839" />
       <source>Test for Changes</source>
       <translation>Проверить изменения</translation>
@@ -62914,37 +62914,37 @@
       <translation>&lt;p&gt;Невозможно прочитать файл плагина &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6678" />
+      <location filename="../Project/Project.py" line="6672" />
       <source>The make process did not start.</source>
       <translation>Make-процесс не был запущен.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6724" />
+      <location filename="../Project/Project.py" line="6718" />
       <source>The make process crashed.</source>
       <translation>Make-процесс разрушен.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6732" />
+      <location filename="../Project/Project.py" line="6726" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Существуют изменения, которые требуют конфигурации make-цели &lt;b&gt;{0}&lt;/b&gt; для ее пересборки.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6737" />
+      <location filename="../Project/Project.py" line="6731" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Существуют изменения, которые требуют make-цель по умолчанию для ее пересборки.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6753" />
+      <location filename="../Project/Project.py" line="6747" />
       <source>The makefile contains errors.</source>
       <translation>Makefile содержит ошибки.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7172" />
+      <location filename="../Project/Project.py" line="7166" />
       <source>Interpreter Missing</source>
       <translation>Отсутствует интерпретатор</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7173" />
+      <location filename="../Project/Project.py" line="7167" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation>Сконфигурированный интерпретатор встроенной среды окружения больше не существует. Следует ли обновить среду?</translation>
     </message>
@@ -73699,7 +73699,7 @@
       <translation>Показать исходник</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2178" />
+      <location filename="../QScintilla/Shell.py" line="2179" />
       <location filename="../QScintilla/Shell.py" line="1907" />
       <location filename="../QScintilla/Shell.py" line="1906" />
       <location filename="../QScintilla/Shell.py" line="401" />
@@ -73843,59 +73843,59 @@
 </translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2329" />
+      <location filename="../QScintilla/Shell.py" line="2330" />
       <source>Drop Error</source>
       <translation>Ошибка Drag&amp;&amp;Drop</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2330" />
+      <location filename="../QScintilla/Shell.py" line="2331" />
       <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="../QScintilla/Shell.py" line="2576" />
-      <location filename="../QScintilla/Shell.py" line="2562" />
-      <location filename="../QScintilla/Shell.py" line="2541" />
-      <source>Save Shell Contents</source>
-      <translation>Сохранить контент оболочки</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="2543" />
-      <source>Text Files (*.txt);;All Files (*)</source>
-      <translation>Файлы текстовые (*.txt);;Все файлы (*)</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="2563" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; уже существует. Переписать?&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Shell.py" line="2577" />
+      <location filename="../QScintilla/Shell.py" line="2563" />
+      <location filename="../QScintilla/Shell.py" line="2542" />
+      <source>Save Shell Contents</source>
+      <translation>Сохранить контент оболочки</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2544" />
+      <source>Text Files (*.txt);;All Files (*)</source>
+      <translation>Файлы текстовые (*.txt);;Все файлы (*)</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2564" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; уже существует. Переписать?&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2578" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно сохранить файл &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2591" />
+      <location filename="../QScintilla/Shell.py" line="2592" />
       <source>&lt;tr&gt;&lt;td&gt;%restart&lt;/td&gt;&lt;td&gt;Kill the shell and start a new one.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%clear&lt;/td&gt;&lt;td&gt;Clear the display of the shell window.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%start [environment]&lt;/td&gt;&lt;td&gt;Start a shell for a virtual environment with the given name. If no name is given, a default shell is started.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%envs&lt;br/&gt;%environments&lt;/td&gt;&lt;td&gt;Show a list of known virtual environment names.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%which&lt;/td&gt;&lt;td&gt;Show the name of the active virtual environment.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%hist [n]&lt;br/&gt;%history [n]&lt;/td&gt;&lt;td&gt;Show the most recent 'n' entries of the history. If 'n' is not given, show all entries.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%shist&lt;br/&gt;%shistory&lt;br/&gt;%select_history&lt;/td&gt;&lt;td&gt;Select a command from the history.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%chist&lt;br/&gt;%chistory&lt;br/&gt;%clear_history&lt;/td&gt;&lt;td&gt;Clear the current history after confirmation.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%help&lt;/td&gt;&lt;td&gt;Show this help text.&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;%restart&lt;/td&gt;&lt;td&gt;Убить текущую оболочку и запустить новую.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%clear&lt;/td&gt;&lt;td&gt;Очистить отображение окна оболочки.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%start [environment]&lt;/td&gt;&lt;td&gt;Запустить оболочку для виртуальной среды с заданным именем. Если имя не указано, будет запущена оболочка по умолчанию.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%envs&lt;br/&gt;%environments&lt;/td&gt;&lt;td&gt;Показать список известных имен виртуальной среды.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%which&lt;/td&gt;&lt;td&gt;Показать имя активной виртуальной среды.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%hist [n]&lt;br/&gt;%history [n]&lt;/td&gt;&lt;td&gt;Показать последние 'n' записей в истории. Если 'n' не задано, будут отображены все записи.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%shist&lt;br/&gt;%shistory&lt;br/&gt;%select_history&lt;/td&gt;&lt;td&gt;Выбрать команду из истории.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%chist&lt;br/&gt;%chistory&lt;br/&gt;%clear_history&lt;/td&gt;&lt;td&gt;Очистить текущую историю после подтверждения.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%help&lt;/td&gt;&lt;td&gt;Показать данную справку.&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2613" />
+      <location filename="../QScintilla/Shell.py" line="2614" />
       <source>&lt;tr&gt;&lt;td&gt;%quit&lt;br/&gt;%quit()&lt;br/&gt;%exit&lt;br/&gt;%exit()&lt;/td&gt;&lt;td&gt;Exit the application.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;These commands are available through the window menus as well.&lt;/p&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;%quit&lt;br/&gt;%quot()&lt;br/&gt;%exit&lt;br/&gt;%exit()&lt;/td&gt;&lt;td&gt;Выйти из приложения.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;Эти команды доступны также через меню окна.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2621" />
+      <location filename="../QScintilla/Shell.py" line="2622" />
       <source>&lt;/table&gt;&lt;p&gt;These commands are available through the context menu as well.&lt;/p&gt;</source>
       <translation>&lt;/table&gt;&lt;p&gt;Эти команды также доступны через контекстное меню.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2628" />
-      <source>Shell Special Commands</source>
-      <translation>Специальные команды оболочки</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Shell.py" line="2629" />
+      <source>Shell Special Commands</source>
+      <translation>Специальные команды оболочки</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2630" />
       <source>The shell supports these special commands:</source>
       <translation>Оболочка поддерживает следующие специальные команды:</translation>
     </message>
@@ -87982,198 +87982,198 @@
   <context>
     <name>TrayStarter</name>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="83" />
-      <location filename="../Tools/TrayStarter.py" line="65" />
+      <location filename="../Tools/TrayStarter.py" line="84" />
+      <location filename="../Tools/TrayStarter.py" line="66" />
       <source>eric tray starter</source>
       <translation>запуск eric из панели задач</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="67" />
+      <location filename="../Tools/TrayStarter.py" line="68" />
       <source>Recent Projects</source>
       <translation>Недавние проекты</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="72" />
+      <location filename="../Tools/TrayStarter.py" line="73" />
       <source>Recent Multiprojects</source>
       <translation>Недавние мультипроекты</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="79" />
+      <location filename="../Tools/TrayStarter.py" line="80" />
       <source>Recent Files</source>
       <translation>Недавние файлы</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="89" />
+      <location filename="../Tools/TrayStarter.py" line="90" />
       <source>Show Versions</source>
       <translation>Показать версии</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="93" />
+      <location filename="../Tools/TrayStarter.py" line="94" />
       <source>QRegularExpression editor</source>
       <translation>Редактор QRegularExpression</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="95" />
+      <location filename="../Tools/TrayStarter.py" line="96" />
       <source>Python re editor</source>
       <translation>Редактор Python re</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="100" />
+      <location filename="../Tools/TrayStarter.py" line="101" />
       <source>UI Previewer</source>
       <translation>Предпросмотр UI</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="105" />
+      <location filename="../Tools/TrayStarter.py" line="106" />
       <source>Translations Previewer</source>
       <translation>Предпросмотр переводов</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="109" />
+      <location filename="../Tools/TrayStarter.py" line="110" />
       <source>Testing</source>
       <translation>Тестировать</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="115" />
+      <location filename="../Tools/TrayStarter.py" line="116" />
       <source>Compare Files</source>
       <translation>Сравнить файлы</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="120" />
+      <location filename="../Tools/TrayStarter.py" line="121" />
       <source>Compare Files side by side</source>
       <translation>Сравнение файлов построчно</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="127" />
+      <location filename="../Tools/TrayStarter.py" line="128" />
       <source>SQL Browser</source>
       <translation>SQL браузер</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="134" />
+      <location filename="../Tools/TrayStarter.py" line="135" />
       <source>Snapshot</source>
       <translation>Снимок экрана</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="139" />
+      <location filename="../Tools/TrayStarter.py" line="140" />
       <source>Icon Editor</source>
       <translation>Редактор иконок</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="144" />
+      <location filename="../Tools/TrayStarter.py" line="145" />
       <source>PDF Viewer</source>
       <translation>Просмотр PDF</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="151" />
+      <location filename="../Tools/TrayStarter.py" line="152" />
       <source>Install Plugin</source>
       <translation>Установить плагин</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="156" />
+      <location filename="../Tools/TrayStarter.py" line="157" />
       <source>Uninstall Plugin</source>
       <translation>Удалить плагин</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="161" />
+      <location filename="../Tools/TrayStarter.py" line="162" />
       <source>Plugin Repository</source>
       <translation>Репозиторий плагинов</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="168" />
+      <location filename="../Tools/TrayStarter.py" line="169" />
       <source>Virtual Environments</source>
       <translation>Виртуальные окружения</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="173" />
+      <location filename="../Tools/TrayStarter.py" line="174" />
       <source>PyPI Package Management</source>
       <translation>Управление пакетами PyPI</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="180" />
+      <location filename="../Tools/TrayStarter.py" line="181" />
       <source>Preferences</source>
       <translation>Предпочтения</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="187" />
+      <location filename="../Tools/TrayStarter.py" line="188" />
       <source>eric Mini Editor</source>
       <translation>eric миниредактор</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="192" />
+      <location filename="../Tools/TrayStarter.py" line="193" />
       <source>eric Hex Editor</source>
       <translation>eric Hex-редактор</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="197" />
+      <location filename="../Tools/TrayStarter.py" line="198" />
       <source>eric Shell Window</source>
       <translation>окно оболочки eric</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="204" />
+      <location filename="../Tools/TrayStarter.py" line="205" />
       <source>eric Web Browser</source>
       <translation>eric web-браузер</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="209" />
+      <location filename="../Tools/TrayStarter.py" line="210" />
       <source>eric Web Browser (with QtHelp)</source>
       <translation>eric web-браузер (c QtHelp)</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="214" />
+      <location filename="../Tools/TrayStarter.py" line="215" />
       <source>eric Web Browser (Private Mode)</source>
       <translation>eric web-браузер (приватный режим)</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="230" />
+      <location filename="../Tools/TrayStarter.py" line="231" />
       <source>eric IDE</source>
       <translation>eric IDE</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="236" />
+      <location filename="../Tools/TrayStarter.py" line="237" />
       <source>Configure Tray Starter</source>
       <translation>Настройка запуска из панели задач</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="242" />
+      <location filename="../Tools/TrayStarter.py" line="243" />
       <source>Quit</source>
       <translation>Выйти</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="330" />
-      <source>Process Generation Error</source>
-      <translation>Ошибка при запуске процесса</translation>
-    </message>
-    <message>
       <location filename="../Tools/TrayStarter.py" line="331" />
+      <source>Process Generation Error</source>
+      <translation>Ошибка при запуске процесса</translation>
+    </message>
+    <message>
+      <location filename="../Tools/TrayStarter.py" line="332" />
       <source>&lt;p&gt;Could not start the process.&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="../Tools/TrayStarter.py" line="335" />
+      <location filename="../Tools/TrayStarter.py" line="336" />
       <source>OK</source>
       <translation>ОК</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="609" />
+      <location filename="../Tools/TrayStarter.py" line="610" />
       <source>&lt;h3&gt;Version Numbers&lt;/h3&gt;&lt;table&gt;</source>
       <translation>&lt;h3&gt;Номера версий&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="644" />
+      <location filename="../Tools/TrayStarter.py" line="645" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Security)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (безопасность)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="661" />
+      <location filename="../Tools/TrayStarter.py" line="662" />
       <source>Desktop</source>
       <translation>Рабочий стол</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="665" />
+      <location filename="../Tools/TrayStarter.py" line="666" />
       <source>Session Type</source>
       <translation>Тип сессии</translation>
     </message>
     <message>
-      <location filename="../Tools/TrayStarter.py" line="668" />
+      <location filename="../Tools/TrayStarter.py" line="669" />
       <source>&lt;/table&gt;</source>
       <translation>&lt;/table&gt;</translation>
     </message>
@@ -89307,2199 +89307,2219 @@
   <context>
     <name>UserInterface</name>
     <message>
-      <location filename="../UI/UserInterface.py" line="308" />
+      <location filename="../UI/UserInterface.py" line="316" />
       <source>Initializing Basic Services...</source>
       <translation>Инициализация базовых служб ...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="343" />
+      <location filename="../UI/UserInterface.py" line="351" />
       <source>Initializing Plugin Manager...</source>
       <translation>Инициализация менеджера плагинов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="350" />
+      <location filename="../UI/UserInterface.py" line="358" />
       <source>Generating Main User Interface...</source>
       <translation>Создание главного пользовательского интерфейса...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="408" />
+      <location filename="../UI/UserInterface.py" line="416" />
       <source>Setting up signal/slot-connections...</source>
       <translation>Настройка соединения сигнала/слота...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="601" />
+      <location filename="../UI/UserInterface.py" line="609" />
       <source>Initializing Tools...</source>
       <translation>Инициализация инструментов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="612" />
+      <location filename="../UI/UserInterface.py" line="620" />
       <source>Registering Objects...</source>
       <translation>Регистрация объектов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="646" />
+      <location filename="../UI/UserInterface.py" line="654" />
       <source>Initializing Actions...</source>
       <translation>Инициализация действий...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="648" />
+      <location filename="../UI/UserInterface.py" line="656" />
       <source>Initializing Menus...</source>
       <translation>Инициализация меню...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="650" />
+      <location filename="../UI/UserInterface.py" line="658" />
       <source>Initializing Toolbars...</source>
       <translation>Инициализация панелей инструментов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="652" />
+      <location filename="../UI/UserInterface.py" line="660" />
       <source>Initializing Statusbar...</source>
       <translation>Инициализация строки состояния...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="679" />
+      <location filename="../UI/UserInterface.py" line="687" />
       <source>Initializing Single Application Server...</source>
       <translation>Инициализация сервера уникального приложения...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="685" />
-      <source>Initializing Plugins...</source>
-      <translation>Инициализация плагинов...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="688" />
-      <source>Activating Plugins...</source>
-      <translation>Активация плагинов...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="690" />
-      <source>Generating Plugins Toolbars...</source>
-      <translation>Генерация панели инструментов...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="693" />
+      <source>Initializing Plugins...</source>
+      <translation>Инициализация плагинов...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="696" />
+      <source>Activating Plugins...</source>
+      <translation>Активация плагинов...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="698" />
+      <source>Generating Plugins Toolbars...</source>
+      <translation>Генерация панели инструментов...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="701" />
       <source>Cleaning Plugins Download Area...</source>
       <translation>Очистка области загрузки плагинов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="703" />
-      <source>Restoring Toolbarmanager...</source>
-      <translation>Восстановление менеджера панелей инструментов...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="711" />
+      <source>Restoring Toolbarmanager...</source>
+      <translation>Восстановление менеджера панелей инструментов...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="719" />
       <source>Setting View Profile...</source>
       <translation>Установка профилей...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="724" />
+      <location filename="../UI/UserInterface.py" line="732" />
       <source>Reading Tasks...</source>
       <translation>Чтение задач...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="729" />
+      <location filename="../UI/UserInterface.py" line="737" />
       <source>Reading Templates...</source>
       <translation>Чтение шаблонов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="734" />
+      <location filename="../UI/UserInterface.py" line="742" />
       <source>Starting Debugger...</source>
       <translation>Запуск отладчика...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2194" />
-      <location filename="../UI/UserInterface.py" line="1085" />
+      <location filename="../UI/UserInterface.py" line="2202" />
+      <location filename="../UI/UserInterface.py" line="1093" />
       <source>Left Toolbox</source>
       <translation>Левая панель инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2240" />
-      <location filename="../UI/UserInterface.py" line="1095" />
+      <location filename="../UI/UserInterface.py" line="2248" />
+      <location filename="../UI/UserInterface.py" line="1103" />
       <source>Horizontal Toolbox</source>
       <translation>Горизонтальная панель инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2217" />
-      <location filename="../UI/UserInterface.py" line="1106" />
+      <location filename="../UI/UserInterface.py" line="2225" />
+      <location filename="../UI/UserInterface.py" line="1114" />
       <source>Right Toolbox</source>
       <translation>Правая панель инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2036" />
-      <location filename="../UI/UserInterface.py" line="1300" />
-      <location filename="../UI/UserInterface.py" line="1116" />
+      <location filename="../UI/UserInterface.py" line="2044" />
+      <location filename="../UI/UserInterface.py" line="1308" />
+      <location filename="../UI/UserInterface.py" line="1124" />
       <source>Multiproject-Viewer</source>
       <translation>Просмотр мультипроекта</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2014" />
-      <location filename="../UI/UserInterface.py" line="1306" />
-      <location filename="../UI/UserInterface.py" line="1122" />
-      <source>Project-Viewer</source>
-      <translation>Просмотр проекта</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2576" />
-      <location filename="../UI/UserInterface.py" line="2575" />
-      <location filename="../UI/UserInterface.py" line="1313" />
-      <location filename="../UI/UserInterface.py" line="1129" />
-      <source>Find/Replace In Files</source>
-      <translation>Найти/Заменить в файлах</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2599" />
-      <location filename="../UI/UserInterface.py" line="2598" />
-      <location filename="../UI/UserInterface.py" line="1320" />
-      <location filename="../UI/UserInterface.py" line="1136" />
-      <source>Find File</source>
-      <translation>Найти файл</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1326" />
-      <location filename="../UI/UserInterface.py" line="1142" />
-      <source>VCS Status</source>
-      <translation>Статус VCS</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2169" />
-      <location filename="../UI/UserInterface.py" line="1333" />
-      <location filename="../UI/UserInterface.py" line="1149" />
-      <source>Template-Viewer</source>
-      <translation>Просмотр шаблонов</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2102" />
-      <location filename="../UI/UserInterface.py" line="1340" />
-      <location filename="../UI/UserInterface.py" line="1156" />
-      <source>File-Browser</source>
-      <translation>Браузер файлов</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1347" />
-      <location filename="../UI/UserInterface.py" line="1163" />
-      <source>Symbols</source>
-      <translation>Символы</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2058" />
-      <location filename="../UI/UserInterface.py" line="1369" />
-      <location filename="../UI/UserInterface.py" line="1363" />
-      <location filename="../UI/UserInterface.py" line="1173" />
-      <source>Debug-Viewer</source>
-      <translation>Просмотр отладки</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2430" />
-      <location filename="../UI/UserInterface.py" line="2429" />
-      <location filename="../UI/UserInterface.py" line="1376" />
-      <location filename="../UI/UserInterface.py" line="1180" />
-      <source>Code Documentation Viewer</source>
-      <translation>Просмотр документации кода</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2645" />
-      <location filename="../UI/UserInterface.py" line="2644" />
-      <location filename="../UI/UserInterface.py" line="1383" />
-      <location filename="../UI/UserInterface.py" line="1187" />
-      <source>Help Viewer</source>
-      <translation>Просмотрщик справки</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3549" />
-      <location filename="../UI/UserInterface.py" line="2525" />
-      <location filename="../UI/UserInterface.py" line="2524" />
-      <location filename="../UI/UserInterface.py" line="1389" />
-      <location filename="../UI/UserInterface.py" line="1193" />
-      <source>Plugin Repository</source>
-      <translation>Репозиторий плагинов</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2549" />
-      <location filename="../UI/UserInterface.py" line="2548" />
-      <location filename="../UI/UserInterface.py" line="1395" />
-      <location filename="../UI/UserInterface.py" line="1199" />
-      <source>Virtual Environments</source>
-      <translation>Виртуальные окружения</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2457" />
-      <location filename="../UI/UserInterface.py" line="2456" />
-      <location filename="../UI/UserInterface.py" line="1400" />
-      <location filename="../UI/UserInterface.py" line="1204" />
-      <source>PyPI</source>
-      <translation>PyPI</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2479" />
-      <location filename="../UI/UserInterface.py" line="2478" />
-      <location filename="../UI/UserInterface.py" line="1407" />
-      <location filename="../UI/UserInterface.py" line="1209" />
-      <source>Conda</source>
-      <translation>Conda</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1414" />
-      <location filename="../UI/UserInterface.py" line="1216" />
-      <source>Cooperation</source>
-      <translation>Кооперация</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2357" />
-      <location filename="../UI/UserInterface.py" line="1418" />
-      <location filename="../UI/UserInterface.py" line="1221" />
-      <source>IRC</source>
-      <translation>IRC</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2501" />
-      <location filename="../UI/UserInterface.py" line="2500" />
-      <location filename="../UI/UserInterface.py" line="1424" />
-      <location filename="../UI/UserInterface.py" line="1228" />
-      <source>MicroPython</source>
-      <translation>MicroPython</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2080" />
-      <location filename="../UI/UserInterface.py" line="1432" />
-      <location filename="../UI/UserInterface.py" line="1236" />
-      <source>Shell</source>
-      <translation>Оболочка</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2146" />
-      <location filename="../UI/UserInterface.py" line="1438" />
-      <location filename="../UI/UserInterface.py" line="1240" />
-      <source>Task-Viewer</source>
-      <translation>Просмотр задач</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2124" />
-      <location filename="../UI/UserInterface.py" line="1444" />
-      <location filename="../UI/UserInterface.py" line="1244" />
-      <source>Log-Viewer</source>
-      <translation>Просмотр журналов</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1451" />
-      <location filename="../UI/UserInterface.py" line="1251" />
-      <source>Numbers</source>
-      <translation>Представление чисел</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1826" />
-      <source>{0} - Passive Mode</source>
-      <translation>{0} - пассивный режим</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1835" />
-      <location filename="../UI/UserInterface.py" line="1829" />
-      <source>{0} - {1} - Passive Mode</source>
-      <translation>{0} - {1} - пассивный режим</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1841" />
-      <source>{0} - {1} - {2} - Passive Mode</source>
-      <translation>{0} - {1} - {2} - пассивный режим</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1867" />
-      <source>Quit</source>
-      <translation>Выйти</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1869" />
-      <source>&amp;Quit</source>
-      <translation>&amp;Выйти</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1870" />
-      <source>Ctrl+Q</source>
-      <comment>File|Quit</comment>
-      <translation>Ctrl+Q</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1875" />
-      <source>Quit the IDE</source>
-      <translation>Выход из IDE</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1877" />
-      <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Выход из IDE&lt;/b&gt;
-&lt;p&gt;Перед выходом все изменения могут быть сохранены. Отлаживаемая программа (если есть) будет остановлена, и предпочтения будут сохранены на диск.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1891" />
-      <location filename="../UI/UserInterface.py" line="1889" />
-      <source>Restart</source>
-      <translation>Рестарт</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1892" />
-      <source>Ctrl+Shift+Q</source>
-      <comment>File|Quit</comment>
-      <translation>Ctrl+Shift+Q</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1897" />
-      <source>Restart the IDE</source>
-      <translation>Перезапуск IDE</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1899" />
-      <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Рестарт IDEE&lt;/b&gt;&lt;p&gt;Перезапуск среды IDE. Любые несохраненные изменения сохраняются в первую очередь. Любая программа Python, находящаяся в процессе отладки, будет остановлена, предпочтения будут записаны на диск.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1917" />
-      <location filename="../UI/UserInterface.py" line="1910" />
-      <source>Save session</source>
-      <translation>Сохранить сессию</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1911" />
-      <source>Save session...</source>
-      <translation>Сохранить сессию...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1919" />
-      <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Сохранить сессию...&lt;/b&gt;&lt;p&gt;Позволяет сохранить текущую сессию на диск. Открывается диалог для выбора имени файла.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7728" />
-      <location filename="../UI/UserInterface.py" line="1936" />
-      <location filename="../UI/UserInterface.py" line="1929" />
-      <source>Load session</source>
-      <translation>Загрузить сессию</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1930" />
-      <source>Load session...</source>
-      <translation>Загрузить сессию...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1938" />
-      <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Загрузить сессию...&lt;/b&gt;&lt;p&gt;Позволяет загрузить сессию, ранее сохраненную на диске. Открывается диалог для выбора имени файла.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1948" />
-      <source>New Window</source>
-      <translation>Новое окно</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1950" />
-      <source>New &amp;Window</source>
-      <translation>&amp;Новое окно</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1951" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation>Ctrl+Shift+N</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1956" />
-      <source>Open a new eric instance</source>
-      <translation>Запустить ещё один экземпляр eric</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1958" />
-      <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Новое окно&lt;/b&gt;&lt;p&gt;Запустить ещё один экземпляр eric IDE.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1972" />
-      <location filename="../UI/UserInterface.py" line="1970" />
-      <source>Edit Profile</source>
-      <translation>Профиль редактирования</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1979" />
-      <source>Activate the edit view profile</source>
-      <translation>Активизировать профиль редактирования</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1981" />
-      <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Профиль редактирования&lt;/b&gt;&lt;p&gt;Активизировать "профиль редактирования". Окна, отображаемые в этом профиле, можно настроить в диалоге "Конфигурация профилей".&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="1994" />
-      <location filename="../UI/UserInterface.py" line="1992" />
-      <source>Debug Profile</source>
-      <translation>Профиль отладки</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2001" />
-      <source>Activate the debug view profile</source>
-      <translation>Активизировать профиль отладки</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2003" />
-      <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Профиль отладки&lt;/b&gt;&lt;p&gt;Активизировать "профиль отладки". Окна, отображаемые в этом профиле, можно настроить в диалоге "Конфигурация профилей".&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2015" />
-      <source>&amp;Project-Viewer</source>
-      <translation>Просмотр &amp;проекта</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2016" />
-      <source>Alt+Shift+P</source>
-      <translation>Alt+Shift+P</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2022" />
-      <source>Switch the input focus to the Project-Viewer window.</source>
-      <translation>Переключить фокус ввода в окно просмотра проекта.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2025" />
-      <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Активировать просмотрщик проекта&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно просмотра проекта.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2037" />
-      <source>&amp;Multiproject-Viewer</source>
-      <translation>Просмотр &amp;мультипроекта</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2038" />
-      <source>Alt+Shift+M</source>
-      <translation>Alt+Shift+M</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2044" />
-      <source>Switch the input focus to the Multiproject-Viewer window.</source>
-      <translation>Переключить фокус ввода в окно просмотра мультипроекта.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2047" />
-      <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Активировать просмотрщик проектов&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно просмотра мультипроекта.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2059" />
-      <source>&amp;Debug-Viewer</source>
-      <translation>Просмотр &amp;отладки</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2060" />
-      <source>Alt+Shift+D</source>
-      <translation>Alt+Shift+D</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2066" />
-      <source>Switch the input focus to the Debug-Viewer window.</source>
-      <translation>Переключить фокус ввода в окно просмотра отладки.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2069" />
-      <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Активировать просмотрщик отладки&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно просмотра отладки.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2081" />
-      <source>&amp;Shell</source>
-      <translation>&amp;Оболочка</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2082" />
-      <source>Alt+Shift+S</source>
-      <translation>Alt+Shift+S</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2088" />
-      <source>Switch the input focus to the Shell window.</source>
-      <translation>Переключить фокус ввода в окно оболочки.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2091" />
-      <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Активировать оболочку&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно оболочки.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2103" />
-      <source>&amp;File-Browser</source>
-      <translation>&amp;Браузер файлов</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2104" />
-      <source>Alt+Shift+F</source>
-      <translation>Alt+Shift+F</translation>
+      <location filename="../UI/UserInterface.py" line="1314" />
+      <location filename="../UI/UserInterface.py" line="1130" />
+      <source>Project-Viewer</source>
+      <translation>Просмотр проекта</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2584" />
+      <location filename="../UI/UserInterface.py" line="2583" />
+      <location filename="../UI/UserInterface.py" line="1321" />
+      <location filename="../UI/UserInterface.py" line="1137" />
+      <source>Find/Replace In Files</source>
+      <translation>Найти/Заменить в файлах</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2607" />
+      <location filename="../UI/UserInterface.py" line="2606" />
+      <location filename="../UI/UserInterface.py" line="1328" />
+      <location filename="../UI/UserInterface.py" line="1144" />
+      <source>Find File</source>
+      <translation>Найти файл</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1334" />
+      <location filename="../UI/UserInterface.py" line="1150" />
+      <source>VCS Status</source>
+      <translation>Статус VCS</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2177" />
+      <location filename="../UI/UserInterface.py" line="1341" />
+      <location filename="../UI/UserInterface.py" line="1157" />
+      <source>Template-Viewer</source>
+      <translation>Просмотр шаблонов</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2110" />
-      <source>Switch the input focus to the File-Browser window.</source>
-      <translation>Переключить фокус ввода в окно браузера файлов.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2113" />
-      <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="2125" />
-      <source>Lo&amp;g-Viewer</source>
-      <translation>Просмотр &amp;журнала</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2126" />
-      <source>Alt+Shift+G</source>
-      <translation>Alt+Shift+G</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2132" />
-      <source>Switch the input focus to the Log-Viewer window.</source>
-      <translation>Переключить фокус ввода в окно просмотра журналов.</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2135" />
-      <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="2147" />
-      <source>&amp;Task-Viewer</source>
-      <translation>Просмотр &amp;задач</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2148" />
-      <source>Alt+Shift+T</source>
-      <translation>Alt+Shift+T</translation>
+      <location filename="../UI/UserInterface.py" line="1348" />
+      <location filename="../UI/UserInterface.py" line="1164" />
+      <source>File-Browser</source>
+      <translation>Браузер файлов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1355" />
+      <location filename="../UI/UserInterface.py" line="1171" />
+      <source>Symbols</source>
+      <translation>Символы</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2066" />
+      <location filename="../UI/UserInterface.py" line="1377" />
+      <location filename="../UI/UserInterface.py" line="1371" />
+      <location filename="../UI/UserInterface.py" line="1181" />
+      <source>Debug-Viewer</source>
+      <translation>Просмотр отладки</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2438" />
+      <location filename="../UI/UserInterface.py" line="2437" />
+      <location filename="../UI/UserInterface.py" line="1384" />
+      <location filename="../UI/UserInterface.py" line="1188" />
+      <source>Code Documentation Viewer</source>
+      <translation>Просмотр документации кода</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2653" />
+      <location filename="../UI/UserInterface.py" line="2652" />
+      <location filename="../UI/UserInterface.py" line="1391" />
+      <location filename="../UI/UserInterface.py" line="1195" />
+      <source>Help Viewer</source>
+      <translation>Просмотрщик справки</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3577" />
+      <location filename="../UI/UserInterface.py" line="2533" />
+      <location filename="../UI/UserInterface.py" line="2532" />
+      <location filename="../UI/UserInterface.py" line="1397" />
+      <location filename="../UI/UserInterface.py" line="1201" />
+      <source>Plugin Repository</source>
+      <translation>Репозиторий плагинов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2557" />
+      <location filename="../UI/UserInterface.py" line="2556" />
+      <location filename="../UI/UserInterface.py" line="1403" />
+      <location filename="../UI/UserInterface.py" line="1207" />
+      <source>Virtual Environments</source>
+      <translation>Виртуальные окружения</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2465" />
+      <location filename="../UI/UserInterface.py" line="2464" />
+      <location filename="../UI/UserInterface.py" line="1408" />
+      <location filename="../UI/UserInterface.py" line="1212" />
+      <source>PyPI</source>
+      <translation>PyPI</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2487" />
+      <location filename="../UI/UserInterface.py" line="2486" />
+      <location filename="../UI/UserInterface.py" line="1415" />
+      <location filename="../UI/UserInterface.py" line="1217" />
+      <source>Conda</source>
+      <translation>Conda</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1422" />
+      <location filename="../UI/UserInterface.py" line="1224" />
+      <source>Cooperation</source>
+      <translation>Кооперация</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2365" />
+      <location filename="../UI/UserInterface.py" line="1426" />
+      <location filename="../UI/UserInterface.py" line="1229" />
+      <source>IRC</source>
+      <translation>IRC</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2509" />
+      <location filename="../UI/UserInterface.py" line="2508" />
+      <location filename="../UI/UserInterface.py" line="1432" />
+      <location filename="../UI/UserInterface.py" line="1236" />
+      <source>MicroPython</source>
+      <translation>MicroPython</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2088" />
+      <location filename="../UI/UserInterface.py" line="1440" />
+      <location filename="../UI/UserInterface.py" line="1244" />
+      <source>Shell</source>
+      <translation>Оболочка</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2154" />
+      <location filename="../UI/UserInterface.py" line="1446" />
+      <location filename="../UI/UserInterface.py" line="1248" />
+      <source>Task-Viewer</source>
+      <translation>Просмотр задач</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2132" />
+      <location filename="../UI/UserInterface.py" line="1452" />
+      <location filename="../UI/UserInterface.py" line="1252" />
+      <source>Log-Viewer</source>
+      <translation>Просмотр журналов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1459" />
+      <location filename="../UI/UserInterface.py" line="1259" />
+      <source>Numbers</source>
+      <translation>Представление чисел</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1834" />
+      <source>{0} - Passive Mode</source>
+      <translation>{0} - пассивный режим</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1843" />
+      <location filename="../UI/UserInterface.py" line="1837" />
+      <source>{0} - {1} - Passive Mode</source>
+      <translation>{0} - {1} - пассивный режим</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1849" />
+      <source>{0} - {1} - {2} - Passive Mode</source>
+      <translation>{0} - {1} - {2} - пассивный режим</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1875" />
+      <source>Quit</source>
+      <translation>Выйти</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1877" />
+      <source>&amp;Quit</source>
+      <translation>&amp;Выйти</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1878" />
+      <source>Ctrl+Q</source>
+      <comment>File|Quit</comment>
+      <translation>Ctrl+Q</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1883" />
+      <source>Quit the IDE</source>
+      <translation>Выход из IDE</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1885" />
+      <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Выход из IDE&lt;/b&gt;
+&lt;p&gt;Перед выходом все изменения могут быть сохранены. Отлаживаемая программа (если есть) будет остановлена, и предпочтения будут сохранены на диск.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1899" />
+      <location filename="../UI/UserInterface.py" line="1897" />
+      <source>Restart</source>
+      <translation>Рестарт</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1900" />
+      <source>Ctrl+Shift+Q</source>
+      <comment>File|Quit</comment>
+      <translation>Ctrl+Shift+Q</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1905" />
+      <source>Restart the IDE</source>
+      <translation>Перезапуск IDE</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1907" />
+      <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Рестарт IDEE&lt;/b&gt;&lt;p&gt;Перезапуск среды IDE. Любые несохраненные изменения сохраняются в первую очередь. Любая программа Python, находящаяся в процессе отладки, будет остановлена, предпочтения будут записаны на диск.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1925" />
+      <location filename="../UI/UserInterface.py" line="1918" />
+      <source>Save session</source>
+      <translation>Сохранить сессию</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1919" />
+      <source>Save session...</source>
+      <translation>Сохранить сессию...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1927" />
+      <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Сохранить сессию...&lt;/b&gt;&lt;p&gt;Позволяет сохранить текущую сессию на диск. Открывается диалог для выбора имени файла.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="7769" />
+      <location filename="../UI/UserInterface.py" line="1944" />
+      <location filename="../UI/UserInterface.py" line="1937" />
+      <source>Load session</source>
+      <translation>Загрузить сессию</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1938" />
+      <source>Load session...</source>
+      <translation>Загрузить сессию...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1946" />
+      <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Загрузить сессию...&lt;/b&gt;&lt;p&gt;Позволяет загрузить сессию, ранее сохраненную на диске. Открывается диалог для выбора имени файла.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1956" />
+      <source>New Window</source>
+      <translation>Новое окно</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1958" />
+      <source>New &amp;Window</source>
+      <translation>&amp;Новое окно</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1959" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation>Ctrl+Shift+N</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1964" />
+      <source>Open a new eric instance</source>
+      <translation>Запустить ещё один экземпляр eric</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1966" />
+      <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Новое окно&lt;/b&gt;&lt;p&gt;Запустить ещё один экземпляр eric IDE.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1980" />
+      <location filename="../UI/UserInterface.py" line="1978" />
+      <source>Edit Profile</source>
+      <translation>Профиль редактирования</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1987" />
+      <source>Activate the edit view profile</source>
+      <translation>Активизировать профиль редактирования</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1989" />
+      <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Профиль редактирования&lt;/b&gt;&lt;p&gt;Активизировать "профиль редактирования". Окна, отображаемые в этом профиле, можно настроить в диалоге "Конфигурация профилей".&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2002" />
+      <location filename="../UI/UserInterface.py" line="2000" />
+      <source>Debug Profile</source>
+      <translation>Профиль отладки</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2009" />
+      <source>Activate the debug view profile</source>
+      <translation>Активизировать профиль отладки</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2011" />
+      <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Профиль отладки&lt;/b&gt;&lt;p&gt;Активизировать "профиль отладки". Окна, отображаемые в этом профиле, можно настроить в диалоге "Конфигурация профилей".&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2023" />
+      <source>&amp;Project-Viewer</source>
+      <translation>Просмотр &amp;проекта</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2024" />
+      <source>Alt+Shift+P</source>
+      <translation>Alt+Shift+P</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2030" />
+      <source>Switch the input focus to the Project-Viewer window.</source>
+      <translation>Переключить фокус ввода в окно просмотра проекта.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2033" />
+      <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Активировать просмотрщик проекта&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно просмотра проекта.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2045" />
+      <source>&amp;Multiproject-Viewer</source>
+      <translation>Просмотр &amp;мультипроекта</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2046" />
+      <source>Alt+Shift+M</source>
+      <translation>Alt+Shift+M</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2052" />
+      <source>Switch the input focus to the Multiproject-Viewer window.</source>
+      <translation>Переключить фокус ввода в окно просмотра мультипроекта.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2055" />
+      <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Активировать просмотрщик проектов&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно просмотра мультипроекта.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2067" />
+      <source>&amp;Debug-Viewer</source>
+      <translation>Просмотр &amp;отладки</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2068" />
+      <source>Alt+Shift+D</source>
+      <translation>Alt+Shift+D</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2074" />
+      <source>Switch the input focus to the Debug-Viewer window.</source>
+      <translation>Переключить фокус ввода в окно просмотра отладки.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2077" />
+      <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Активировать просмотрщик отладки&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно просмотра отладки.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2089" />
+      <source>&amp;Shell</source>
+      <translation>&amp;Оболочка</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2090" />
+      <source>Alt+Shift+S</source>
+      <translation>Alt+Shift+S</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2096" />
+      <source>Switch the input focus to the Shell window.</source>
+      <translation>Переключить фокус ввода в окно оболочки.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2099" />
+      <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Активировать оболочку&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно оболочки.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2111" />
+      <source>&amp;File-Browser</source>
+      <translation>&amp;Браузер файлов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2112" />
+      <source>Alt+Shift+F</source>
+      <translation>Alt+Shift+F</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2118" />
+      <source>Switch the input focus to the File-Browser window.</source>
+      <translation>Переключить фокус ввода в окно браузера файлов.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2121" />
+      <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="2133" />
+      <source>Lo&amp;g-Viewer</source>
+      <translation>Просмотр &amp;журнала</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2134" />
+      <source>Alt+Shift+G</source>
+      <translation>Alt+Shift+G</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2140" />
+      <source>Switch the input focus to the Log-Viewer window.</source>
+      <translation>Переключить фокус ввода в окно просмотра журналов.</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2143" />
+      <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="2155" />
+      <source>&amp;Task-Viewer</source>
+      <translation>Просмотр &amp;задач</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2156" />
+      <source>Alt+Shift+T</source>
+      <translation>Alt+Shift+T</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2162" />
       <source>Switch the input focus to the Task-Viewer window.</source>
       <translation>Переключить фокус ввода в окно просмотра задач.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2157" />
+      <location filename="../UI/UserInterface.py" line="2165" />
       <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Активировать просмотрщик задач&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно просмотра задач.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2170" />
+      <location filename="../UI/UserInterface.py" line="2178" />
       <source>Templ&amp;ate-Viewer</source>
       <translation>Просмотр &amp;шаблонов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2171" />
+      <location filename="../UI/UserInterface.py" line="2179" />
       <source>Alt+Shift+A</source>
       <translation>Alt+Shift+A</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2177" />
+      <location filename="../UI/UserInterface.py" line="2185" />
       <source>Switch the input focus to the Template-Viewer window.</source>
       <translation>Переключить фокус ввода в окно просмотра шаблонов.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2180" />
+      <location filename="../UI/UserInterface.py" line="2188" />
       <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Активировать просмотрщик шаблонов&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно просмотра шаблонов.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2195" />
+      <location filename="../UI/UserInterface.py" line="2203" />
       <source>&amp;Left Toolbox</source>
       <translation>&amp;Левая панель инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2202" />
+      <location filename="../UI/UserInterface.py" line="2210" />
       <source>Toggle the Left Toolbox window</source>
       <translation>Показать/Скрыть левую панель инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2204" />
+      <location filename="../UI/UserInterface.py" line="2212" />
       <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="2218" />
+      <location filename="../UI/UserInterface.py" line="2226" />
       <source>&amp;Right Toolbox</source>
       <translation>&amp;Правая панель инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2225" />
+      <location filename="../UI/UserInterface.py" line="2233" />
       <source>Toggle the Right Toolbox window</source>
       <translation>Показать/Скрыть правую панель инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2227" />
+      <location filename="../UI/UserInterface.py" line="2235" />
       <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="2241" />
+      <location filename="../UI/UserInterface.py" line="2249" />
       <source>&amp;Horizontal Toolbox</source>
       <translation>&amp;Горизонтальная панель инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2248" />
+      <location filename="../UI/UserInterface.py" line="2256" />
       <source>Toggle the Horizontal Toolbox window</source>
       <translation>Включить/Выключить горизонтальную панель инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2250" />
+      <location filename="../UI/UserInterface.py" line="2258" />
       <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="2263" />
-      <source>Left Sidebar</source>
-      <translation>Левая док-панель</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2264" />
-      <source>&amp;Left Sidebar</source>
-      <translation>&amp;Левая док-панель</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2271" />
+      <source>Left Sidebar</source>
+      <translation>Левая док-панель</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2272" />
+      <source>&amp;Left Sidebar</source>
+      <translation>&amp;Левая док-панель</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2279" />
       <source>Toggle the left sidebar window</source>
       <translation>Показать/Скрыть левую док-панель</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2273" />
+      <location filename="../UI/UserInterface.py" line="2281" />
       <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="2286" />
-      <source>Right Sidebar</source>
-      <translation>Правая боковая панель</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2287" />
-      <source>&amp;Right Sidebar</source>
-      <translation>&amp;Правая боковая панель</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2294" />
+      <source>Right Sidebar</source>
+      <translation>Правая боковая панель</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2295" />
+      <source>&amp;Right Sidebar</source>
+      <translation>&amp;Правая боковая панель</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2302" />
       <source>Toggle the right sidebar window</source>
       <translation>Показать/Скрыть окно правой боковой панели</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2296" />
+      <location filename="../UI/UserInterface.py" line="2304" />
       <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="2309" />
-      <source>Bottom Sidebar</source>
-      <translation>Нижняя док-панель</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2310" />
-      <source>&amp;Bottom Sidebar</source>
-      <translation>&amp;Нижняя док-панель</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2317" />
+      <source>Bottom Sidebar</source>
+      <translation>Нижняя док-панель</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2318" />
+      <source>&amp;Bottom Sidebar</source>
+      <translation>&amp;Нижняя док-панель</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2325" />
       <source>Toggle the bottom sidebar window</source>
       <translation>Показать/Скрыть нижнюю док-панель</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2319" />
+      <location filename="../UI/UserInterface.py" line="2327" />
       <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="2332" />
-      <source>Cooperation-Viewer</source>
-      <translation>Просмотр кооперации</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2333" />
-      <source>Co&amp;operation-Viewer</source>
-      <translation>Просмотр ко&amp;операции</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2334" />
-      <source>Alt+Shift+O</source>
-      <translation>Alt+Shift+O</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2340" />
+      <source>Cooperation-Viewer</source>
+      <translation>Просмотр кооперации</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2341" />
+      <source>Co&amp;operation-Viewer</source>
+      <translation>Просмотр ко&amp;операции</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2342" />
+      <source>Alt+Shift+O</source>
+      <translation>Alt+Shift+O</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2348" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation>Переключить фокус ввода в окно просмотра кооперации.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2343" />
+      <location filename="../UI/UserInterface.py" line="2351" />
       <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="2358" />
+      <location filename="../UI/UserInterface.py" line="2366" />
       <source>&amp;IRC</source>
       <translation>&amp;IRC</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2359" />
+      <location filename="../UI/UserInterface.py" line="2367" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation>Ctrl+Alt+Shift+I</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2365" />
+      <location filename="../UI/UserInterface.py" line="2373" />
       <source>Switch the input focus to the IRC window.</source>
       <translation>Переключить фокус ввода в окно IRC.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2368" />
+      <location filename="../UI/UserInterface.py" line="2376" />
       <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="2379" />
-      <source>Symbols-Viewer</source>
-      <translation>Просмотр символов</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2380" />
-      <source>S&amp;ymbols-Viewer</source>
-      <translation>Просмотр с&amp;имволов</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2381" />
-      <source>Alt+Shift+Y</source>
-      <translation>Alt+Shift+Y</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2387" />
+      <source>Symbols-Viewer</source>
+      <translation>Просмотр символов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2388" />
+      <source>S&amp;ymbols-Viewer</source>
+      <translation>Просмотр с&amp;имволов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2389" />
+      <source>Alt+Shift+Y</source>
+      <translation>Alt+Shift+Y</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2395" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation>Переключить фокус ввода в окно просмотра символов.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2390" />
+      <location filename="../UI/UserInterface.py" line="2398" />
       <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Активировать просмотрщик символов&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно просмотра символов.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2404" />
-      <source>Numbers-Viewer</source>
-      <translation>Представление чисел</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2405" />
-      <source>Num&amp;bers-Viewer</source>
-      <translation>Представление &amp;чисел</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2406" />
-      <source>Alt+Shift+B</source>
-      <translation>Alt+Shift+B</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2412" />
+      <source>Numbers-Viewer</source>
+      <translation>Представление чисел</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2413" />
+      <source>Num&amp;bers-Viewer</source>
+      <translation>Представление &amp;чисел</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2414" />
+      <source>Alt+Shift+B</source>
+      <translation>Alt+Shift+B</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2420" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation>Переключить фокус ввода в окно просмотра чисел.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2415" />
+      <location filename="../UI/UserInterface.py" line="2423" />
       <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Активировать просмотрщик чисел&lt;/b&gt;&lt;p&gt;Переключить фокус ввода в окно просмотра чисел.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2431" />
+      <location filename="../UI/UserInterface.py" line="2439" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation>Ctrl+Alt+Shift+D</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2437" />
+      <location filename="../UI/UserInterface.py" line="2445" />
       <source>Switch the input focus to the Code Documentation Viewer window.</source>
       <translation>Переключить фокус ввода в окно просмотра документации кода.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2442" />
+      <location filename="../UI/UserInterface.py" line="2450" />
       <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Просмотр документации кода&lt;/b&gt;&lt;p&gt;Переключение фокуса ввода в окно просмотра документации кода.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2458" />
+      <location filename="../UI/UserInterface.py" line="2466" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation>Ctrl+Alt+Shift+P</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2464" />
+      <location filename="../UI/UserInterface.py" line="2472" />
       <source>Switch the input focus to the PyPI window.</source>
       <translation>Переключить фокус ввода в окно PyPI.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2467" />
+      <location filename="../UI/UserInterface.py" line="2475" />
       <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;Переключение фокуса ввода в окно PyPI.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2480" />
+      <location filename="../UI/UserInterface.py" line="2488" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation>Ctrl+Alt+Shift+C</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2486" />
+      <location filename="../UI/UserInterface.py" line="2494" />
       <source>Switch the input focus to the Conda window.</source>
       <translation>Переключить фокус ввода в окно Conda.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2489" />
+      <location filename="../UI/UserInterface.py" line="2497" />
       <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;Переключение фокуса ввода в окно Conda.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2502" />
+      <location filename="../UI/UserInterface.py" line="2510" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation>Ctrl+Alt+Shift+M</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2508" />
+      <location filename="../UI/UserInterface.py" line="2516" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation>Переключить фокус ввода в окно MicroPython.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2511" />
+      <location filename="../UI/UserInterface.py" line="2519" />
       <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;Переключение фокуса ввода в окно MicroPython.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2526" />
+      <location filename="../UI/UserInterface.py" line="2534" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation>Ctrl+Alt+Shift+R</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2532" />
+      <location filename="../UI/UserInterface.py" line="2540" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation>Переключить фокус ввода в окно репозитория плагинов.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2535" />
+      <location filename="../UI/UserInterface.py" line="2543" />
       <source>&lt;b&gt;Plugin Repository&lt;/b&gt;&lt;p&gt;This switches the input focus to the Plugin Repository window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Репозиторий плагинов&lt;/b&gt;&lt;p&gt;Переключение фокуса ввода в окно репозитория подключаемых модулей.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2550" />
+      <location filename="../UI/UserInterface.py" line="2558" />
       <source>Ctrl+Alt+V</source>
       <translation>Ctrl+Alt+V</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2556" />
+      <location filename="../UI/UserInterface.py" line="2564" />
       <source>Switch the input focus to the Virtual Environments Manager window.</source>
       <translation>Переключить фокус ввода в окно диспетчера виртуальных сред.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2561" />
+      <location filename="../UI/UserInterface.py" line="2569" />
       <source>&lt;b&gt;Virtual Environments&lt;/b&gt;&lt;p&gt;This switches the input focus to the Virtual Environments Manager window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Виртуальные окружения&lt;/b&gt;&lt;p&gt;Переключение фокуса ввода в окно диспетчера виртуальных сред.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2577" />
+      <location filename="../UI/UserInterface.py" line="2585" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation>Ctrl+Alt+Shift+F</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2583" />
+      <location filename="../UI/UserInterface.py" line="2591" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation>Переключить фокус ввода в окно 'Найти/Заменить в файлах'.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2586" />
+      <location filename="../UI/UserInterface.py" line="2594" />
       <source>&lt;b&gt;Find/Replace In Files&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find/Replace In Files window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Найти/Заменить в файлах&lt;/b&gt;&lt;p&gt;Переключение фокуса ввода в окно 'Найти/Заменить в файлах'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2600" />
+      <location filename="../UI/UserInterface.py" line="2608" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation>Ctrl+Alt+Shift+L</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2606" />
+      <location filename="../UI/UserInterface.py" line="2614" />
       <source>Switch the input focus to the Find File window.</source>
       <translation>Переключить фокус ввода в окно 'Найти файл'.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2609" />
+      <location filename="../UI/UserInterface.py" line="2617" />
       <source>&lt;b&gt;Find File&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find File window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Найти файл&lt;/b&gt;&lt;p&gt;Переключение фокус ввода в окно 'Найти файл'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2623" />
-      <location filename="../UI/UserInterface.py" line="2622" />
+      <location filename="../UI/UserInterface.py" line="2631" />
+      <location filename="../UI/UserInterface.py" line="2630" />
       <source>VCS Status List</source>
       <translation>Список статусов VCS</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2624" />
+      <location filename="../UI/UserInterface.py" line="2632" />
       <source>Alt+Shift+V</source>
       <translation>Alt+Shift+V</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2630" />
+      <location filename="../UI/UserInterface.py" line="2638" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation>Переключить фокус ввода в окно 'Список статусов VCS'.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2633" />
+      <location filename="../UI/UserInterface.py" line="2641" />
       <source>&lt;b&gt;VCS Status List&lt;/b&gt;&lt;p&gt;This switches the input focus to the VCS Status List window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Список статусов VCS&lt;/b&gt;&lt;p&gt;Переключение фокуса ввода в окно 'Список статусов VCS'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2646" />
+      <location filename="../UI/UserInterface.py" line="2654" />
       <source>Alt+Shift+H</source>
       <translation>Alt+Shift+H</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2652" />
+      <location filename="../UI/UserInterface.py" line="2660" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation>Переключение фокуса ввода в окно встроенного просмотрщика справки.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2655" />
+      <location filename="../UI/UserInterface.py" line="2663" />
       <source>&lt;b&gt;Help Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Просмотрщик справки&lt;/b&gt;&lt;p&gt;Переключение фокуса ввода в окно встроенного просмотрщика справки. В нем отображаются файлы справки HTML и справка из коллекций справки Qt.&lt;/p&gt;&lt;p&gt;Если вызов с выбранным словом, это слово ищется в коллекции справки Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2668" />
-      <source>What's This?</source>
-      <translation>Что это?</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2670" />
-      <source>&amp;What's This?</source>
-      <translation>&amp;Что это?</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2671" />
-      <source>Shift+F1</source>
-      <translation>Shift+F1</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2676" />
-      <source>Context sensitive help</source>
-      <translation>Контекстнозависимая справка</translation>
+      <source>What's This?</source>
+      <translation>Что это?</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2678" />
+      <source>&amp;What's This?</source>
+      <translation>&amp;Что это?</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2679" />
+      <source>Shift+F1</source>
+      <translation>Shift+F1</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2684" />
+      <source>Context sensitive help</source>
+      <translation>Контекстнозависимая справка</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2686" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Показ контекстнозависимой справки&lt;/b&gt;&lt;p&gt;В режиме "What's This?"(Что это?)курсор мыши отображается как стрелка со знаком вопроса, и вы можете, кликнув по элементу интерфейса, получить краткое описание того, что он делает и как его использовать. В диалоговом окне эта функция может быть вызвана кнопкой контекстной справки в панели заголовка.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2691" />
-      <source>Helpviewer</source>
-      <translation>Просмотр справки</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2693" />
-      <source>&amp;Helpviewer...</source>
-      <translation>Просмотр спр&amp;авки...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2694" />
-      <source>F1</source>
-      <translation>F1</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2699" />
-      <source>Open the helpviewer window</source>
-      <translation>Открыть окно просмотра справки</translation>
+      <source>Helpviewer</source>
+      <translation>Просмотр справки</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2701" />
+      <source>&amp;Helpviewer...</source>
+      <translation>Просмотр спр&amp;авки...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2702" />
+      <source>F1</source>
+      <translation>F1</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2707" />
+      <source>Open the helpviewer window</source>
+      <translation>Открыть окно просмотра справки</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2709" />
       <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Просмотр справки&lt;/b&gt;&lt;p&gt;Открытие eric web-браузера. В его окне будут показываться HTML файлы справки. Оно поддерживает навигацию по ссылкам, закладки, печать и некоторые другие функции. Его можно использовать для просмотра интернета.&lt;/p&gt;&lt;p&gt;Если перед вызовом окна отображения справки был подсвечен какой-либо текст, то будет произведён поиск этого текста в коллекции справки Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2721" />
+      <location filename="../UI/UserInterface.py" line="2729" />
       <source>Show Versions</source>
       <translation>Показать версии</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2722" />
-      <source>Show &amp;Versions</source>
-      <translation>Показать &amp;версии</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2728" />
-      <source>Display version information</source>
-      <translation>Информация о версии</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2730" />
+      <source>Show &amp;Versions</source>
+      <translation>Показать &amp;версии</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2736" />
+      <source>Display version information</source>
+      <translation>Информация о версии</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2738" />
       <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="2743" />
-      <location filename="../UI/UserInterface.py" line="2736" />
-      <source>Show Error Log</source>
-      <translation>Показать журнал ошибок</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2737" />
-      <source>Show Error &amp;Log...</source>
-      <translation>&amp;Журнал ошибок...</translation>
+      <location filename="../UI/UserInterface.py" line="2744" />
+      <source>Copy Versions</source>
+      <translation>Копировать версии</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2745" />
-      <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="2754" />
-      <source>Show Install Info</source>
-      <translation>Показать информацию об установке</translation>
+      <source>&amp;Copy Versions</source>
+      <translation>&amp;Копировать версии</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2752" />
+      <source>Copy version information to the clipboard</source>
+      <translation>Копировать информацию о версии в буфер обмена</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2755" />
-      <source>Show Install &amp;Info...</source>
-      <translation>Показать информацию об &amp;установке...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2761" />
-      <source>Show Installation Information</source>
-      <translation>Показать информацию об установке</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2763" />
-      <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Показать информацию об установке...&lt;/b&gt;&lt;p&gt;Открывает диалоговое окно, в котором отображается некая информация о процессе установки.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="4633" />
-      <location filename="../UI/UserInterface.py" line="2773" />
-      <source>Report Bug</source>
-      <translation>Сообщение об ошибке</translation>
+      <source>&lt;b&gt;Copy Versions&lt;/b&gt;&lt;p&gt;This generates version information and copies it to the clipboard.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Копировать версии&lt;/b&gt;&lt;p&gt;Генерирование информации о версии и копирование ее в буфер обмена.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2771" />
+      <location filename="../UI/UserInterface.py" line="2764" />
+      <source>Show Error Log</source>
+      <translation>Показать журнал ошибок</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2765" />
+      <source>Show Error &amp;Log...</source>
+      <translation>&amp;Журнал ошибок...</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2773" />
-      <source>Report &amp;Bug...</source>
-      <translation>Сообщить об &amp;ошибке...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2775" />
-      <source>Report a bug</source>
-      <translation>Сообщить об ошибке</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2777" />
-      <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>
+      <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="2782" />
+      <source>Show Install Info</source>
+      <translation>Показать информацию об установке</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2783" />
-      <source>Request Feature</source>
-      <translation>Запросить функционал</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2784" />
-      <source>Request &amp;Feature...</source>
-      <translation>Запросить &amp;функционал...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2790" />
-      <source>Send a feature request</source>
-      <translation>Послать запрос</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2792" />
-      <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="4093" />
+      <source>Show Install &amp;Info...</source>
+      <translation>Показать информацию об &amp;установке...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2789" />
+      <source>Show Installation Information</source>
+      <translation>Показать информацию об установке</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2791" />
+      <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Показать информацию об установке...&lt;/b&gt;&lt;p&gt;Открывает диалоговое окно, в котором отображается некая информация о процессе установки.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="4674" />
+      <location filename="../UI/UserInterface.py" line="2801" />
+      <source>Report Bug</source>
+      <translation>Сообщение об ошибке</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2801" />
+      <source>Report &amp;Bug...</source>
+      <translation>Сообщить об &amp;ошибке...</translation>
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="2803" />
-      <source>Testing</source>
-      <translation>Тестировать</translation>
+      <source>Report a bug</source>
+      <translation>Сообщить об ошибке</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2805" />
-      <source>&amp;Testing...</source>
-      <translation>&amp;Тестировать...</translation>
+      <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="2811" />
+      <source>Request Feature</source>
+      <translation>Запросить функционал</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2812" />
+      <source>Request &amp;Feature...</source>
+      <translation>Запросить &amp;функционал...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2818" />
+      <source>Send a feature request</source>
+      <translation>Послать запрос</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2820" />
+      <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="4122" />
+      <location filename="../UI/UserInterface.py" line="2831" />
+      <source>Testing</source>
+      <translation>Тестировать</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2833" />
+      <source>&amp;Testing...</source>
+      <translation>&amp;Тестировать...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2839" />
       <source>Start the testing dialog</source>
       <translation>Запуск диалогового окна тестирования</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2813" />
+      <location filename="../UI/UserInterface.py" line="2841" />
       <source>&lt;b&gt;Testing&lt;/b&gt;&lt;p&gt;Perform test runs. The dialog gives the ability to select and run a test suite or auto discover them.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Тестировать&lt;/b&gt;&lt;p&gt;Выполнение тестовых прогонов. В этом диалоговом окне можно выбрать и запустить набор тестов или автоматически их обнаружить.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2824" />
+      <location filename="../UI/UserInterface.py" line="2852" />
       <source>Restart Last Test</source>
       <translation>Перезапустить последний тест</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2826" />
+      <location filename="../UI/UserInterface.py" line="2854" />
       <source>&amp;Restart Last Test...</source>
       <translation>&amp;Перезапустить последний тест...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2832" />
+      <location filename="../UI/UserInterface.py" line="2860" />
       <source>Restarts the last test</source>
       <translation>Перезапуск последнего теста</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2834" />
+      <location filename="../UI/UserInterface.py" line="2862" />
       <source>&lt;b&gt;Restart Last Test&lt;/b&gt;&lt;p&gt;Restarts the test performed last.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Перезапустить последний тестt&lt;/b&gt;&lt;p&gt;Перезапускает тест, выполненный последним.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2844" />
+      <location filename="../UI/UserInterface.py" line="2872" />
       <source>Rerun Failed Tests</source>
       <translation>Повторить неудачные тесты</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2846" />
-      <source>Rerun Failed Tests...</source>
-      <translation>Повторить неудачные тесты...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2853" />
-      <source>Rerun failed tests of the last run</source>
-      <translation>Повторить неудачные тесты последнего запуска</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2856" />
-      <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last test run.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Повторить неудачные тесты&lt;/b&gt;&lt;p&gt;Перезапустить все тесты, провалившиеся при последней попытке.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2866" />
-      <source>Test Script</source>
-      <translation>Тест на сценарии</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2868" />
-      <source>Test &amp;Script...</source>
-      <translation>Тест на &amp;сценарии...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2874" />
-      <source>Run tests of the current script</source>
-      <translation>Выполнить тесты на текущем сценарии</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2876" />
-      <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Тест на сценарии&lt;/b&gt;&lt;p&gt;Выполнить тесты на текущем сценарии.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2883" />
-      <source>Test Project</source>
-      <translation>Тест на проекте</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2885" />
-      <source>Test &amp;Project...</source>
-      <translation>Тест на &amp;проекте...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2891" />
-      <source>Run tests of the current project</source>
-      <translation>Выполнить тесты на текущем проекте</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2893" />
-      <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Тест на проекте&lt;/b&gt;&lt;p&gt;Выполнить тест на текущем проекте.&lt;/p&gt;</translation>
+      <source>Rerun Failed Tests...</source>
+      <translation>Повторить неудачные тесты...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2881" />
+      <source>Rerun failed tests of the last run</source>
+      <translation>Повторить неудачные тесты последнего запуска</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2884" />
+      <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last test run.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Повторить неудачные тесты&lt;/b&gt;&lt;p&gt;Перезапустить все тесты, провалившиеся при последней попытке.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2894" />
+      <source>Test Script</source>
+      <translation>Тест на сценарии</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2896" />
+      <source>Test &amp;Script...</source>
+      <translation>Тест на &amp;сценарии...</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2902" />
-      <source>Qt-Designer</source>
-      <translation>Qt-Designer</translation>
+      <source>Run tests of the current script</source>
+      <translation>Выполнить тесты на текущем сценарии</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2904" />
-      <source>Qt-&amp;Designer...</source>
-      <translation>Qt-&amp;Designer...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2910" />
-      <source>Start Qt-Designer</source>
-      <translation>Запуск Qt-Designer</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2912" />
-      <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Запуск Qt-Designer.&lt;/p&gt;</translation>
+      <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Тест на сценарии&lt;/b&gt;&lt;p&gt;Выполнить тесты на текущем сценарии.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2911" />
+      <source>Test Project</source>
+      <translation>Тест на проекте</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2913" />
+      <source>Test &amp;Project...</source>
+      <translation>Тест на &amp;проекте...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2919" />
+      <source>Run tests of the current project</source>
+      <translation>Выполнить тесты на текущем проекте</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2921" />
-      <source>Qt-Linguist</source>
-      <translation>Qt-Linguist</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2923" />
-      <source>Qt-&amp;Linguist...</source>
-      <translation>Qt-&amp;Linguist...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2929" />
-      <source>Start Qt-Linguist</source>
-      <translation>Запуск Qt-Linguist</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2931" />
-      <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Запуск Qt-Linguist.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2939" />
-      <source>UI Previewer</source>
-      <translation>Предпросмотр UI</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2941" />
-      <source>&amp;UI Previewer...</source>
-      <translation>Предпросмотр &amp;UI...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2947" />
-      <source>Start the UI Previewer</source>
-      <translation>Запуск предпросмотра UI (пользовательского интерфейса)</translation>
+      <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Тест на проекте&lt;/b&gt;&lt;p&gt;Выполнить тест на текущем проекте.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2930" />
+      <source>Qt-Designer</source>
+      <translation>Qt-Designer</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2932" />
+      <source>Qt-&amp;Designer...</source>
+      <translation>Qt-&amp;Designer...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2938" />
+      <source>Start Qt-Designer</source>
+      <translation>Запуск Qt-Designer</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2940" />
+      <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Запуск Qt-Designer.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2949" />
-      <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Запустить the UI Previewer.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2955" />
-      <source>Translations Previewer</source>
-      <translation>Предпросмотр переводов</translation>
+      <source>Qt-Linguist</source>
+      <translation>Qt-Linguist</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2951" />
+      <source>Qt-&amp;Linguist...</source>
+      <translation>Qt-&amp;Linguist...</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2957" />
+      <source>Start Qt-Linguist</source>
+      <translation>Запуск Qt-Linguist</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2959" />
+      <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Запуск Qt-Linguist.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2967" />
+      <source>UI Previewer</source>
+      <translation>Предпросмотр UI</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2969" />
+      <source>&amp;UI Previewer...</source>
+      <translation>Предпросмотр &amp;UI...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2975" />
+      <source>Start the UI Previewer</source>
+      <translation>Запуск предпросмотра UI (пользовательского интерфейса)</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2977" />
+      <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Запустить the UI Previewer.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2983" />
+      <source>Translations Previewer</source>
+      <translation>Предпросмотр переводов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2985" />
       <source>&amp;Translations Previewer...</source>
       <translation>&amp;Предпросмотр переводов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2963" />
+      <location filename="../UI/UserInterface.py" line="2991" />
       <source>Start the Translations Previewer</source>
       <translation>Запустить предпросмотр переводов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2965" />
+      <location filename="../UI/UserInterface.py" line="2993" />
       <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="2974" />
+      <location filename="../UI/UserInterface.py" line="3002" />
       <source>Compare Files</source>
       <translation>Сравнить файлы</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2976" />
+      <location filename="../UI/UserInterface.py" line="3004" />
       <source>&amp;Compare Files...</source>
       <translation>&amp;Сравнить файлы...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3001" />
-      <location filename="../UI/UserInterface.py" line="2982" />
+      <location filename="../UI/UserInterface.py" line="3029" />
+      <location filename="../UI/UserInterface.py" line="3010" />
       <source>Compare two files</source>
       <translation>Сравнить два файла</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2984" />
+      <location filename="../UI/UserInterface.py" line="3012" />
       <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="2993" />
+      <location filename="../UI/UserInterface.py" line="3021" />
       <source>Compare Files side by side</source>
       <translation>Сравнение файлов построчно</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2995" />
-      <source>Compare &amp;Files side by side...</source>
-      <translation>Сравнить &amp;файлы построчно...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3003" />
-      <source>&lt;b&gt;Compare Files side by side&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files and show the result side by side.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Сравнить файлы построчно (side by side)&lt;/b&gt;
-&lt;p&gt;Открыть диалог, в котором показаны различия между файлами, в две колонки.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3013" />
-      <source>SQL Browser</source>
-      <translation>SQL браузер</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3015" />
-      <source>SQL &amp;Browser...</source>
-      <translation>&amp;SQL браузер...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3021" />
-      <source>Browse a SQL database</source>
-      <translation>Просмотреть SQL базу данных</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3023" />
-      <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="3037" />
-      <location filename="../UI/UserInterface.py" line="3029" />
-      <source>Mini Editor</source>
-      <translation>Миниредактор</translation>
+      <source>Compare &amp;Files side by side...</source>
+      <translation>Сравнить &amp;файлы построчно...</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3031" />
+      <source>&lt;b&gt;Compare Files side by side&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files and show the result side by side.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Сравнить файлы построчно (side by side)&lt;/b&gt;
+&lt;p&gt;Открыть диалог, в котором показаны различия между файлами, в две колонки.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3041" />
+      <source>SQL Browser</source>
+      <translation>SQL браузер</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3043" />
+      <source>SQL &amp;Browser...</source>
+      <translation>&amp;SQL браузер...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3049" />
+      <source>Browse a SQL database</source>
+      <translation>Просмотреть SQL базу данных</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3051" />
+      <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="3065" />
+      <location filename="../UI/UserInterface.py" line="3057" />
+      <source>Mini Editor</source>
+      <translation>Миниредактор</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3059" />
       <source>Mini &amp;Editor...</source>
       <translation>Мини&amp;редактор...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3039" />
+      <location filename="../UI/UserInterface.py" line="3067" />
       <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="3048" />
-      <source>Hex Editor</source>
-      <translation>Hex-редактор</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3050" />
-      <source>&amp;Hex Editor...</source>
-      <translation>&amp;Hex-редактор...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3056" />
-      <source>Start the eric Hex Editor</source>
-      <translation>Запуск eric Hex-редактора</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3058" />
-      <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Hex-редактор&lt;/b&gt;&lt;p&gt;Запускает eric Hex-редактор для просмотра или редактирования двоичного файла.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3068" />
-      <source>eric Web Browser</source>
-      <translation>Eric web-браузер</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3070" />
-      <source>eric &amp;Web Browser...</source>
-      <translation>Eric &amp;web-браузер...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3076" />
-      <source>Start the eric Web Browser</source>
-      <translation>Запустить eric web-браузер</translation>
+      <source>Hex Editor</source>
+      <translation>Hex-редактор</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3078" />
+      <source>&amp;Hex Editor...</source>
+      <translation>&amp;Hex-редактор...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3084" />
+      <source>Start the eric Hex Editor</source>
+      <translation>Запуск eric Hex-редактора</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3086" />
+      <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Hex-редактор&lt;/b&gt;&lt;p&gt;Запускает eric Hex-редактор для просмотра или редактирования двоичного файла.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3096" />
+      <source>eric Web Browser</source>
+      <translation>Eric web-браузер</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3098" />
+      <source>eric &amp;Web Browser...</source>
+      <translation>Eric &amp;web-браузер...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3104" />
+      <source>Start the eric Web Browser</source>
+      <translation>Запустить eric web-браузер</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3106" />
       <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Eric web-браузер&lt;/b&gt;&lt;p&gt;Просмотр интернета используя web-браузер, встроенный в eric.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3087" />
+      <location filename="../UI/UserInterface.py" line="3115" />
       <source>Icon Editor</source>
       <translation>Редактор иконок</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3089" />
-      <source>&amp;Icon Editor...</source>
-      <translation>Редактор &amp;иконок...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3095" />
-      <source>Start the eric Icon Editor</source>
-      <translation>Запустить eric редактор иконок</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3097" />
-      <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Редактор иконок&lt;/b&gt;&lt;p&gt;Запустить eric редактор иконок.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6493" />
-      <location filename="../UI/UserInterface.py" line="3109" />
-      <source>Snapshot</source>
-      <translation>Снимки</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3111" />
-      <source>&amp;Snapshot...</source>
-      <translation>&amp;Снимки...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3117" />
-      <source>Take snapshots of a screen region</source>
-      <translation>Сделать снимок области экрана</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3119" />
-      <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="3129" />
-      <source>eric PDF Viewer</source>
-      <translation>Просмотрщик PDF eric</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3131" />
-      <source>eric PDF &amp;Viewer...</source>
-      <translation>Просмотрщик &amp;PDF eric...</translation>
-    </message>
-    <message>
+      <source>&amp;Icon Editor...</source>
+      <translation>Редактор &amp;иконок...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3123" />
+      <source>Start the eric Icon Editor</source>
+      <translation>Запустить eric редактор иконок</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3125" />
+      <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Редактор иконок&lt;/b&gt;&lt;p&gt;Запустить eric редактор иконок.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6534" />
       <location filename="../UI/UserInterface.py" line="3137" />
-      <source>Start the eric PDF Viewer</source>
-      <translation>Запустить просмотрщик PDF eric</translation>
+      <source>Snapshot</source>
+      <translation>Снимки</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3139" />
+      <source>&amp;Snapshot...</source>
+      <translation>&amp;Снимки...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3145" />
+      <source>Take snapshots of a screen region</source>
+      <translation>Сделать снимок области экрана</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3147" />
+      <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="3157" />
+      <source>eric PDF Viewer</source>
+      <translation>Просмотрщик PDF eric</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3159" />
+      <source>eric PDF &amp;Viewer...</source>
+      <translation>Просмотрщик &amp;PDF eric...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3165" />
+      <source>Start the eric PDF Viewer</source>
+      <translation>Запустить просмотрщик PDF eric</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3167" />
       <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Просмотрщик PDF eric&lt;/b&gt;&lt;p&gt;Запускает PDF Viewer eric для просмотра PDF-файлов.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3148" />
+      <location filename="../UI/UserInterface.py" line="3176" />
       <source>Preferences</source>
       <translation>Предпочтения</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3150" />
+      <location filename="../UI/UserInterface.py" line="3178" />
       <source>&amp;Preferences...</source>
       <translation>&amp;Предпочтения...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3156" />
+      <location filename="../UI/UserInterface.py" line="3184" />
       <source>Set the prefered configuration</source>
       <translation>Установите предпочтительную конфигурацию</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3158" />
+      <location filename="../UI/UserInterface.py" line="3186" />
       <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="3169" />
-      <source>Export Preferences</source>
-      <translation>Экспорт предпочтений</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3171" />
-      <source>E&amp;xport Preferences...</source>
-      <translation>&amp;Экспорт предпочтений...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3177" />
-      <source>Export the current configuration</source>
-      <translation>Экспорт текущих настроек</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3179" />
-      <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="3188" />
-      <source>Import Preferences</source>
-      <translation>Импорт предпочтений</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3190" />
-      <source>I&amp;mport Preferences...</source>
-      <translation>&amp;Импорт предпочтений...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3197" />
+      <source>Export Preferences</source>
+      <translation>Экспорт предпочтений</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3199" />
+      <source>E&amp;xport Preferences...</source>
+      <translation>&amp;Экспорт предпочтений...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3205" />
+      <source>Export the current configuration</source>
+      <translation>Экспорт текущих настроек</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3207" />
+      <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="3216" />
+      <source>Import Preferences</source>
+      <translation>Импорт предпочтений</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3218" />
+      <source>I&amp;mport Preferences...</source>
+      <translation>&amp;Импорт предпочтений...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3225" />
       <source>Import a previously exported configuration</source>
       <translation>Импорт сохранённых ранее настроек</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3200" />
-      <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="3209" />
-      <source>Export Theme</source>
-      <translation>Экспорт темы</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3211" />
-      <source>Export Theme...</source>
-      <translation>Экспорт темы...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3217" />
-      <source>Export the current theme</source>
-      <translation>Экспорт текущей темы</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3219" />
-      <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Экспорт темы&lt;/b&gt;&lt;p&gt;Экспорт текущей темы в файл.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3228" />
-      <source>Import Theme</source>
-      <translation>Импорт темы</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3230" />
-      <source>Import Theme...</source>
-      <translation>Импорт темы...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3236" />
-      <source>Import a previously exported theme</source>
-      <translation>Импорт ранее экспортированной темы</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3238" />
-      <source>&lt;b&gt;Import Theme&lt;/b&gt;&lt;p&gt;Import a previously exported theme.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Импорт темы&lt;/b&gt;&lt;p&gt;Импорт ранее экспортированной темы.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3247" />
-      <source>Reload APIs</source>
-      <translation>Перезагрузить API</translation>
+      <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="3237" />
+      <source>Export Theme</source>
+      <translation>Экспорт темы</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3239" />
+      <source>Export Theme...</source>
+      <translation>Экспорт темы...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3245" />
+      <source>Export the current theme</source>
+      <translation>Экспорт текущей темы</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3247" />
+      <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Экспорт темы&lt;/b&gt;&lt;p&gt;Экспорт текущей темы в файл.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3256" />
+      <source>Import Theme</source>
+      <translation>Импорт темы</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3258" />
+      <source>Import Theme...</source>
+      <translation>Импорт темы...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3264" />
+      <source>Import a previously exported theme</source>
+      <translation>Импорт ранее экспортированной темы</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3266" />
+      <source>&lt;b&gt;Import Theme&lt;/b&gt;&lt;p&gt;Import a previously exported theme.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Импорт темы&lt;/b&gt;&lt;p&gt;Импорт ранее экспортированной темы.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3275" />
+      <source>Reload APIs</source>
+      <translation>Перезагрузить API</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3275" />
       <source>Reload &amp;APIs</source>
       <translation>Перезагрузить &amp;API</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3249" />
-      <source>Reload the API information</source>
-      <translation>Перезагрузить информацию об API</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3251" />
-      <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="3265" />
-      <location filename="../UI/UserInterface.py" line="3257" />
-      <source>Show external tools</source>
-      <translation>Показать внешние инструменты</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3259" />
-      <source>Show external &amp;tools</source>
-      <translation>&amp;Внешние инструменты</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3267" />
-      <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Показать внешние инструменты&lt;/b&gt;&lt;p&gt;Открытие диалога отображения пути и версий внешних инструментов, используемых eric.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3277" />
-      <source>View Profiles</source>
-      <translation>Профили</translation>
+      <source>Reload the API information</source>
+      <translation>Перезагрузить информацию об API</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3279" />
-      <source>&amp;View Profiles...</source>
-      <translation>&amp;Профили...</translation>
-    </message>
-    <message>
+      <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="3293" />
       <location filename="../UI/UserInterface.py" line="3285" />
-      <source>Configure view profiles</source>
-      <translation>Конфигурация профилей</translation>
+      <source>Show external tools</source>
+      <translation>Показать внешние инструменты</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3287" />
+      <source>Show external &amp;tools</source>
+      <translation>&amp;Внешние инструменты</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3295" />
+      <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Показать внешние инструменты&lt;/b&gt;&lt;p&gt;Открытие диалога отображения пути и версий внешних инструментов, используемых eric.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3305" />
+      <source>View Profiles</source>
+      <translation>Профили</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3307" />
+      <source>&amp;View Profiles...</source>
+      <translation>&amp;Профили...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3313" />
+      <source>Configure view profiles</source>
+      <translation>Конфигурация профилей</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3315" />
       <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="3298" />
+      <location filename="../UI/UserInterface.py" line="3326" />
       <source>Toolbars</source>
       <translation>Панели инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3300" />
+      <location filename="../UI/UserInterface.py" line="3328" />
       <source>Tool&amp;bars...</source>
       <translation>Панели &amp;инструментов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3306" />
+      <location filename="../UI/UserInterface.py" line="3334" />
       <source>Configure toolbars</source>
       <translation>Настройка панелей инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3308" />
+      <location filename="../UI/UserInterface.py" line="3336" />
       <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="3319" />
-      <source>Keyboard Shortcuts</source>
-      <translation>Горячие клавиши</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3321" />
-      <source>Keyboard &amp;Shortcuts...</source>
-      <translation>Горячие &amp;клавиши...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3327" />
-      <source>Set the keyboard shortcuts</source>
-      <translation>Определение горячих клавиш</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3329" />
-      <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="7452" />
-      <location filename="../UI/UserInterface.py" line="7433" />
-      <location filename="../UI/UserInterface.py" line="3339" />
-      <source>Export Keyboard Shortcuts</source>
-      <translation>Экспорт горячих клавиш</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3341" />
-      <source>&amp;Export Keyboard Shortcuts...</source>
-      <translation>&amp;Экспорт горячих клавиш...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3347" />
-      <source>Export the keyboard shortcuts</source>
-      <translation>Экспортировать горячие клавиши</translation>
+      <source>Keyboard Shortcuts</source>
+      <translation>Горячие клавиши</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3349" />
+      <source>Keyboard &amp;Shortcuts...</source>
+      <translation>Горячие &amp;клавиши...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3355" />
+      <source>Set the keyboard shortcuts</source>
+      <translation>Определение горячих клавиш</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3357" />
+      <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="7493" />
+      <location filename="../UI/UserInterface.py" line="7474" />
+      <location filename="../UI/UserInterface.py" line="3367" />
+      <source>Export Keyboard Shortcuts</source>
+      <translation>Экспорт горячих клавиш</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3369" />
+      <source>&amp;Export Keyboard Shortcuts...</source>
+      <translation>&amp;Экспорт горячих клавиш...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3375" />
+      <source>Export the keyboard shortcuts</source>
+      <translation>Экспортировать горячие клавиши</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3377" />
       <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="7471" />
-      <location filename="../UI/UserInterface.py" line="3358" />
+      <location filename="../UI/UserInterface.py" line="7512" />
+      <location filename="../UI/UserInterface.py" line="3386" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Импорт горячих клавиш</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3360" />
+      <location filename="../UI/UserInterface.py" line="3388" />
       <source>&amp;Import Keyboard Shortcuts...</source>
       <translation>&amp;Импорт горячих клавиш...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3366" />
+      <location filename="../UI/UserInterface.py" line="3394" />
       <source>Import the keyboard shortcuts</source>
       <translation>Импортировать горячие клавиши</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3368" />
+      <location filename="../UI/UserInterface.py" line="3396" />
       <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="3378" />
+      <location filename="../UI/UserInterface.py" line="3406" />
       <source>Manage SSL Certificates</source>
       <translation>Менеджер SSL сертификатов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3380" />
+      <location filename="../UI/UserInterface.py" line="3408" />
       <source>Manage SSL Certificates...</source>
       <translation>Менеджер SSL сертификатов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3387" />
+      <location filename="../UI/UserInterface.py" line="3415" />
       <source>Manage the saved SSL certificates</source>
       <translation>Управление сохранёнными SSL сертификатами</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3390" />
+      <location filename="../UI/UserInterface.py" line="3418" />
       <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="3400" />
+      <location filename="../UI/UserInterface.py" line="3428" />
       <source>Edit Message Filters</source>
       <translation>Редактировать фильтры сообщений</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3402" />
+      <location filename="../UI/UserInterface.py" line="3430" />
       <source>Edit Message Filters...</source>
       <translation>Редактировать фильтры сообщений...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3409" />
+      <location filename="../UI/UserInterface.py" line="3437" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation>Редактировать фильтры нежелательных сообщений</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3412" />
+      <location filename="../UI/UserInterface.py" line="3440" />
       <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Редактировать фильтры сообщений&lt;/b&gt;&lt;p&gt;Редактировать фильтры нежелательных сообщений об ошибках.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3431" />
-      <location filename="../UI/UserInterface.py" line="3425" />
-      <location filename="../UI/UserInterface.py" line="3423" />
+      <location filename="../UI/UserInterface.py" line="3459" />
+      <location filename="../UI/UserInterface.py" line="3453" />
+      <location filename="../UI/UserInterface.py" line="3451" />
       <source>Clear private data</source>
       <translation>Очистить приватные данные</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3433" />
+      <location filename="../UI/UserInterface.py" line="3461" />
       <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Очистить приватные данные&lt;/b&gt;&lt;p&gt;Очистка приватных данных, таких как различные списки недавно открытых файлов, проектов или мультипроектов.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3444" />
-      <location filename="../UI/UserInterface.py" line="3443" />
+      <location filename="../UI/UserInterface.py" line="3472" />
+      <location filename="../UI/UserInterface.py" line="3471" />
       <source>Activate current editor</source>
       <translation>Активировать текущий редактор</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3445" />
+      <location filename="../UI/UserInterface.py" line="3473" />
       <source>Alt+Shift+E</source>
       <translation>Alt+Shift+E</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3456" />
-      <location filename="../UI/UserInterface.py" line="3455" />
+      <location filename="../UI/UserInterface.py" line="3484" />
+      <location filename="../UI/UserInterface.py" line="3483" />
       <source>Show next</source>
       <translation>Показать следующую</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3457" />
+      <location filename="../UI/UserInterface.py" line="3485" />
       <source>Ctrl+Alt+Tab</source>
       <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3468" />
-      <location filename="../UI/UserInterface.py" line="3467" />
+      <location filename="../UI/UserInterface.py" line="3496" />
+      <location filename="../UI/UserInterface.py" line="3495" />
       <source>Show previous</source>
       <translation>Показать предыдущую</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3469" />
+      <location filename="../UI/UserInterface.py" line="3497" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3480" />
-      <location filename="../UI/UserInterface.py" line="3479" />
+      <location filename="../UI/UserInterface.py" line="3508" />
+      <location filename="../UI/UserInterface.py" line="3507" />
       <source>Switch between tabs</source>
       <translation>Переключение между вкладками</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3481" />
+      <location filename="../UI/UserInterface.py" line="3509" />
       <source>Ctrl+1</source>
       <translation>Ctrl+1</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3491" />
-      <source>Plugin Infos</source>
-      <translation>Информация о плагинах</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3493" />
-      <source>&amp;Plugin Infos...</source>
-      <translation>Ин&amp;формация о плагинах...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3499" />
-      <source>Show Plugin Infos</source>
-      <translation>Отображение информации о плагинах</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3501" />
-      <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="3519" />
-      <location filename="../UI/UserInterface.py" line="3511" />
-      <source>Install Plugins</source>
-      <translation>Установить плагины</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3513" />
-      <source>&amp;Install Plugins...</source>
-      <translation>&amp;Установить плагины...</translation>
+      <source>Plugin Infos</source>
+      <translation>Информация о плагинах</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3521" />
+      <source>&amp;Plugin Infos...</source>
+      <translation>Ин&amp;формация о плагинах...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3527" />
+      <source>Show Plugin Infos</source>
+      <translation>Отображение информации о плагинах</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3529" />
+      <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="3547" />
+      <location filename="../UI/UserInterface.py" line="3539" />
+      <source>Install Plugins</source>
+      <translation>Установить плагины</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3541" />
+      <source>&amp;Install Plugins...</source>
+      <translation>&amp;Установить плагины...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3549" />
       <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="3538" />
-      <location filename="../UI/UserInterface.py" line="3530" />
+      <location filename="../UI/UserInterface.py" line="3566" />
+      <location filename="../UI/UserInterface.py" line="3558" />
       <source>Uninstall Plugin</source>
       <translation>Удалить плагин</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3532" />
+      <location filename="../UI/UserInterface.py" line="3560" />
       <source>&amp;Uninstall Plugin...</source>
       <translation>Уда&amp;лить плагин...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3540" />
+      <location filename="../UI/UserInterface.py" line="3568" />
       <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="3551" />
+      <location filename="../UI/UserInterface.py" line="3579" />
       <source>Plugin &amp;Repository...</source>
       <translation>&amp;Репозиторий плагинов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3557" />
+      <location filename="../UI/UserInterface.py" line="3585" />
       <source>Show Plugins available for download</source>
       <translation>Показать плагины, доступные для загрузки</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3559" />
+      <location filename="../UI/UserInterface.py" line="3587" />
       <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Репозиторий плагинов...&lt;/b&gt;&lt;p&gt;Открытие диалога, отображающего список плагинов, доступных для скачивания с интернета.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3586" />
-      <location filename="../UI/UserInterface.py" line="3585" />
+      <location filename="../UI/UserInterface.py" line="3614" />
+      <location filename="../UI/UserInterface.py" line="3613" />
       <source>Qt5 Documentation</source>
       <translation>Документация Qt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3592" />
+      <location filename="../UI/UserInterface.py" line="3620" />
       <source>Open Qt5 Documentation</source>
       <translation>Открыть документацию Qt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3594" />
+      <location filename="../UI/UserInterface.py" line="3622" />
       <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation>&lt;b&gt;Документация Qt5&lt;/b&gt;&lt;p&gt;Отображение документации Qt5. В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. &lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3607" />
-      <location filename="../UI/UserInterface.py" line="3606" />
+      <location filename="../UI/UserInterface.py" line="3635" />
+      <location filename="../UI/UserInterface.py" line="3634" />
       <source>Qt6 Documentation</source>
       <translation>Документация Qt6</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3613" />
+      <location filename="../UI/UserInterface.py" line="3641" />
       <source>Open Qt6 Documentation</source>
       <translation>Открыть документацию Qt6</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3615" />
+      <location filename="../UI/UserInterface.py" line="3643" />
       <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation>&lt;b&gt;Документация Qt6&lt;/b&gt;&lt;p&gt;Отображение документации Qt6. В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. &lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3628" />
-      <location filename="../UI/UserInterface.py" line="3627" />
+      <location filename="../UI/UserInterface.py" line="3656" />
+      <location filename="../UI/UserInterface.py" line="3655" />
       <source>PyQt5 Documentation</source>
       <translation>Документация PyQt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3634" />
+      <location filename="../UI/UserInterface.py" line="3662" />
       <source>Open PyQt5 Documentation</source>
       <translation>Открыть документацию PyQt5</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3636" />
+      <location filename="../UI/UserInterface.py" line="3664" />
       <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation>&lt;b&gt;Докуметация PyQt5&lt;/b&gt;&lt;p&gt;Отображение документации PyQt5. В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. &lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3649" />
-      <location filename="../UI/UserInterface.py" line="3648" />
+      <location filename="../UI/UserInterface.py" line="3677" />
+      <location filename="../UI/UserInterface.py" line="3676" />
       <source>PyQt6 Documentation</source>
       <translation>Документация PyQt6</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3655" />
-      <source>Open PyQt6 Documentation</source>
-      <translation>Открыть документацию PyQt6</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3657" />
-      <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-      <translation>&lt;b&gt;Докуметация PyQt6&lt;/b&gt;&lt;p&gt;Отображение документации PyQt6. В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. &lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3675" />
-      <location filename="../UI/UserInterface.py" line="3674" />
-      <source>Python 3 Documentation</source>
-      <translation>Документация Python 3</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3681" />
-      <source>Open Python 3 Documentation</source>
-      <translation>Открыть документацию Python 3</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3683" />
+      <source>Open PyQt6 Documentation</source>
+      <translation>Открыть документацию PyQt6</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3685" />
+      <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+      <translation>&lt;b&gt;Докуметация PyQt6&lt;/b&gt;&lt;p&gt;Отображение документации PyQt6. В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. &lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3703" />
+      <location filename="../UI/UserInterface.py" line="3702" />
+      <source>Python 3 Documentation</source>
+      <translation>Документация Python 3</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3709" />
+      <source>Open Python 3 Documentation</source>
+      <translation>Открыть документацию Python 3</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3711" />
       <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Документация Python 3&lt;/b&gt;&lt;p&gt;Отображение документации Python 3. Если директория документации не настроена, то предполагается, что документация Python 3 находится в директории doc в расположении исполняемого файла Python 3 в Windows и &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i. &gt; на Юникс. Чтобы переопределить это, установите PYTHON3DOCDIR в вашей среде.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3702" />
-      <location filename="../UI/UserInterface.py" line="3701" />
+      <location filename="../UI/UserInterface.py" line="3730" />
+      <location filename="../UI/UserInterface.py" line="3729" />
       <source>eric API Documentation</source>
       <translation>Документация API Eric</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3708" />
-      <source>Open eric API Documentation</source>
-      <translation>Открыть документацию API Eric</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3710" />
-      <source>&lt;b&gt;eric API Documentation&lt;/b&gt;&lt;p&gt;Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Документация API eric&lt;/b&gt;&lt;p&gt;Отображение документации API eric. Местонахождение документации - директория Documentation/Source, расположенный в директории инсталляции eric.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3728" />
-      <location filename="../UI/UserInterface.py" line="3727" />
-      <source>PySide2 Documentation</source>
-      <translation>Документация PySide2</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3734" />
-      <source>Open PySide2 Documentation</source>
-      <translation>Открыть документацию PySide2</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3736" />
-      <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
-      <translation>&lt;b&gt;Документация PySide2&lt;/b&gt;&lt;p&gt;Отображение документации PySide2.  В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. &lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3754" />
-      <location filename="../UI/UserInterface.py" line="3753" />
-      <source>PySide6 Documentation</source>
-      <translation>Документация PySide6</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3760" />
-      <source>Open PySide6 Documentation</source>
-      <translation>Открыть документацию PySide6</translation>
+      <source>Open eric API Documentation</source>
+      <translation>Открыть документацию API Eric</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3738" />
+      <source>&lt;b&gt;eric API Documentation&lt;/b&gt;&lt;p&gt;Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Документация API eric&lt;/b&gt;&lt;p&gt;Отображение документации API eric. Местонахождение документации - директория Documentation/Source, расположенный в директории инсталляции eric.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3756" />
+      <location filename="../UI/UserInterface.py" line="3755" />
+      <source>PySide2 Documentation</source>
+      <translation>Документация PySide2</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3762" />
+      <source>Open PySide2 Documentation</source>
+      <translation>Открыть документацию PySide2</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3764" />
+      <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
+      <translation>&lt;b&gt;Документация PySide2&lt;/b&gt;&lt;p&gt;Отображение документации PySide2.  В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. &lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3782" />
+      <location filename="../UI/UserInterface.py" line="3781" />
+      <source>PySide6 Documentation</source>
+      <translation>Документация PySide6</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3788" />
+      <source>Open PySide6 Documentation</source>
+      <translation>Открыть документацию PySide6</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3790" />
       <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation>&lt;b&gt;Документация PySide6&lt;/b&gt;&lt;p&gt;Отображение документации PySide6.  В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. &lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3864" />
-      <source>E&amp;xtras</source>
-      <translation>&amp;Дополнительно</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3874" />
-      <source>Wi&amp;zards</source>
-      <translation>&amp;Мастера</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3892" />
+      <source>E&amp;xtras</source>
+      <translation>&amp;Дополнительно</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3902" />
+      <source>Wi&amp;zards</source>
+      <translation>&amp;Мастера</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3920" />
       <source>P&amp;lugins</source>
       <translation>Пла&amp;гины</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3901" />
+      <location filename="../UI/UserInterface.py" line="3929" />
       <source>Configure...</source>
       <translation>Настроить...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3910" />
-      <source>&amp;Testing</source>
-      <translation>&amp;Тестировать</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3927" />
-      <source>Select Tool Group</source>
-      <translation>Выберите группу инструментов</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3938" />
+      <source>&amp;Testing</source>
+      <translation>&amp;Тестировать</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3955" />
+      <source>Select Tool Group</source>
+      <translation>Выберите группу инструментов</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3966" />
       <source>Se&amp;ttings</source>
       <translation>&amp;Настройки</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3971" />
+      <location filename="../UI/UserInterface.py" line="3999" />
       <source>&amp;Window</source>
       <translation>&amp;Окно</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3980" />
+      <location filename="../UI/UserInterface.py" line="4008" />
       <source>&amp;Windows</source>
       <translation>&amp;Окна</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3984" />
+      <location filename="../UI/UserInterface.py" line="4012" />
       <source>Central Park</source>
       <translation>Центральное окно</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3988" />
+      <location filename="../UI/UserInterface.py" line="4016" />
       <source>Left Side</source>
       <translation>Левая панель</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4007" />
+      <location filename="../UI/UserInterface.py" line="4035" />
       <source>Right Side</source>
       <translation>Правая панель</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4026" />
+      <location filename="../UI/UserInterface.py" line="4054" />
       <source>Bottom Side</source>
       <translation>Нижняя панель</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4034" />
+      <location filename="../UI/UserInterface.py" line="4062" />
       <source>Plug-ins</source>
       <translation>Плагины</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4040" />
+      <location filename="../UI/UserInterface.py" line="4068" />
       <source>&amp;Toolbars</source>
       <translation>&amp;Панели инструментов</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4053" />
+      <location filename="../UI/UserInterface.py" line="4081" />
       <source>&amp;Help</source>
       <translation>&amp;Справка</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4108" />
-      <location filename="../UI/UserInterface.py" line="4092" />
+      <location filename="../UI/UserInterface.py" line="4137" />
+      <location filename="../UI/UserInterface.py" line="4121" />
       <source>Tools</source>
       <translation>Инструменты</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4110" />
-      <location filename="../UI/UserInterface.py" line="4096" />
+      <location filename="../UI/UserInterface.py" line="4139" />
+      <location filename="../UI/UserInterface.py" line="4125" />
       <source>Settings</source>
       <translation>Настройки</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6221" />
-      <location filename="../UI/UserInterface.py" line="4111" />
-      <location filename="../UI/UserInterface.py" line="4097" />
+      <location filename="../UI/UserInterface.py" line="6262" />
+      <location filename="../UI/UserInterface.py" line="4140" />
+      <location filename="../UI/UserInterface.py" line="4126" />
       <source>Help</source>
       <translation>Справка</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4112" />
-      <location filename="../UI/UserInterface.py" line="4098" />
+      <location filename="../UI/UserInterface.py" line="4141" />
+      <location filename="../UI/UserInterface.py" line="4127" />
       <source>Profiles</source>
       <translation>Профили</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4113" />
-      <location filename="../UI/UserInterface.py" line="4099" />
+      <location filename="../UI/UserInterface.py" line="4142" />
+      <location filename="../UI/UserInterface.py" line="4128" />
       <source>Plugins</source>
       <translation>Плагины</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4109" />
+      <location filename="../UI/UserInterface.py" line="4138" />
       <source>Unittest</source>
       <translation>Юниттест</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4283" />
+      <location filename="../UI/UserInterface.py" line="4312" />
       <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="4292" />
+      <location filename="../UI/UserInterface.py" line="4321" />
       <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="4301" />
+      <location filename="../UI/UserInterface.py" line="4330" />
       <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="4310" />
+      <location filename="../UI/UserInterface.py" line="4339" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
       <translation>&lt;p&gt;В этой части строки состояния отображается режим ro/rw файла, открытого в редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4319" />
+      <location filename="../UI/UserInterface.py" line="4348" />
       <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="4328" />
+      <location filename="../UI/UserInterface.py" line="4357" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;В этой части строки состояния отображается текущая позиция курсора в редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4342" />
+      <location filename="../UI/UserInterface.py" line="4371" />
       <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
       <translation>&lt;p&gt;В этой части строки состояния разрешено масштабирование редактора или оболочки.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4413" />
-      <location filename="../UI/UserInterface.py" line="4372" />
+      <location filename="../UI/UserInterface.py" line="4442" />
+      <location filename="../UI/UserInterface.py" line="4401" />
       <source>External Tools/{0}</source>
       <translation>Внешние инструменты/{0}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4521" />
+      <location filename="../UI/UserInterface.py" line="4550" />
       <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
       <translation>&lt;h2&gt;Номера версий&lt;/h2&gt;&lt;table&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4570" />
+      <location filename="../UI/UserInterface.py" line="4599" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Security)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (безопасность)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4587" />
+      <location filename="../UI/UserInterface.py" line="4616" />
       <source>Desktop</source>
       <translation>Рабочий стол</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4591" />
+      <location filename="../UI/UserInterface.py" line="4620" />
       <source>Session Type</source>
       <translation>Тип сессии</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4594" />
+      <location filename="../UI/UserInterface.py" line="4623" />
       <source>&lt;/table&gt;</source>
       <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4634" />
+      <location filename="../UI/UserInterface.py" line="4675" />
       <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
       <translation>Почтовый адрес или адрес почтового сервера пуст. &lt;p&gt;Настройте параметры вашей электронной почты в диалоге предпочтений.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4969" />
+      <location filename="../UI/UserInterface.py" line="5010" />
       <source>Restart application</source>
       <translation>Перезапустить приложение</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4970" />
+      <location filename="../UI/UserInterface.py" line="5011" />
       <source>The application needs to be restarted. Do it now?</source>
       <translation>Необходимо перезапустить приложение. Сделать это сейчас?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4994" />
+      <location filename="../UI/UserInterface.py" line="5035" />
       <source>Upgrade PyQt</source>
       <translation>Обновить PyQt</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4995" />
+      <location filename="../UI/UserInterface.py" line="5036" />
       <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
@@ -91508,13 +91528,13 @@
 Выполнить обновление сейчас?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5045" />
-      <location filename="../UI/UserInterface.py" line="5019" />
+      <location filename="../UI/UserInterface.py" line="5086" />
+      <location filename="../UI/UserInterface.py" line="5060" />
       <source>Upgrade Eric</source>
       <translation>Обновить Eric</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5020" />
+      <location filename="../UI/UserInterface.py" line="5061" />
       <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
@@ -91523,7 +91543,7 @@
 Выполнить обновление сейчас?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5046" />
+      <location filename="../UI/UserInterface.py" line="5087" />
       <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
  Shall the upgrade be done now?</source>
@@ -91532,336 +91552,336 @@
  Выполнить обновление сейчас?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5104" />
+      <location filename="../UI/UserInterface.py" line="5145" />
       <source>&amp;Builtin Tools</source>
       <translation>&amp;Встроенные инструменты</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5123" />
+      <location filename="../UI/UserInterface.py" line="5164" />
       <source>&amp;Plugin Tools</source>
       <translation>Инструменты - &amp;плагины</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5126" />
+      <location filename="../UI/UserInterface.py" line="5167" />
       <source>&amp;User Tools</source>
       <translation>&amp;Инструменты пользователя</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5152" />
+      <location filename="../UI/UserInterface.py" line="5193" />
       <source>Configure Tool Groups ...</source>
       <translation>Настройка группы инструментов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5156" />
+      <location filename="../UI/UserInterface.py" line="5197" />
       <source>Configure current Tool Group ...</source>
       <translation>Настроить текущую группу инструментов...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5195" />
-      <location filename="../UI/UserInterface.py" line="5175" />
+      <location filename="../UI/UserInterface.py" line="5236" />
+      <location filename="../UI/UserInterface.py" line="5216" />
       <source>No User Tools Configured</source>
       <translation>Инструменты пользователя не сконфигурированы</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5271" />
+      <location filename="../UI/UserInterface.py" line="5312" />
       <source>&amp;Show all</source>
       <translation>Показать &amp;всё</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5273" />
+      <location filename="../UI/UserInterface.py" line="5314" />
       <source>&amp;Hide all</source>
       <translation>Ск&amp;рыть всё</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6358" />
-      <location filename="../UI/UserInterface.py" line="6347" />
-      <location filename="../UI/UserInterface.py" line="6299" />
-      <location filename="../UI/UserInterface.py" line="6289" />
-      <location filename="../UI/UserInterface.py" line="6120" />
-      <location filename="../UI/UserInterface.py" line="6110" />
-      <location filename="../UI/UserInterface.py" line="6052" />
-      <location filename="../UI/UserInterface.py" line="6042" />
+      <location filename="../UI/UserInterface.py" line="6399" />
+      <location filename="../UI/UserInterface.py" line="6388" />
+      <location filename="../UI/UserInterface.py" line="6340" />
+      <location filename="../UI/UserInterface.py" line="6330" />
+      <location filename="../UI/UserInterface.py" line="6161" />
+      <location filename="../UI/UserInterface.py" line="6151" />
+      <location filename="../UI/UserInterface.py" line="6093" />
+      <location filename="../UI/UserInterface.py" line="6083" />
       <source>Problem</source>
       <translation>Проблема</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6359" />
-      <location filename="../UI/UserInterface.py" line="6348" />
-      <location filename="../UI/UserInterface.py" line="6300" />
-      <location filename="../UI/UserInterface.py" line="6290" />
-      <location filename="../UI/UserInterface.py" line="6121" />
-      <location filename="../UI/UserInterface.py" line="6111" />
-      <location filename="../UI/UserInterface.py" line="6053" />
-      <location filename="../UI/UserInterface.py" line="6043" />
+      <location filename="../UI/UserInterface.py" line="6400" />
+      <location filename="../UI/UserInterface.py" line="6389" />
+      <location filename="../UI/UserInterface.py" line="6341" />
+      <location filename="../UI/UserInterface.py" line="6331" />
+      <location filename="../UI/UserInterface.py" line="6162" />
+      <location filename="../UI/UserInterface.py" line="6152" />
+      <location filename="../UI/UserInterface.py" line="6094" />
+      <location filename="../UI/UserInterface.py" line="6084" />
       <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="6602" />
-      <location filename="../UI/UserInterface.py" line="6513" />
-      <location filename="../UI/UserInterface.py" line="6394" />
-      <location filename="../UI/UserInterface.py" line="6371" />
-      <location filename="../UI/UserInterface.py" line="6312" />
-      <location filename="../UI/UserInterface.py" line="6259" />
+      <location filename="../UI/UserInterface.py" line="6643" />
+      <location filename="../UI/UserInterface.py" line="6554" />
+      <location filename="../UI/UserInterface.py" line="6435" />
+      <location filename="../UI/UserInterface.py" line="6412" />
+      <location filename="../UI/UserInterface.py" line="6353" />
+      <location filename="../UI/UserInterface.py" line="6300" />
+      <location filename="../UI/UserInterface.py" line="6278" />
       <location filename="../UI/UserInterface.py" line="6237" />
-      <location filename="../UI/UserInterface.py" line="6196" />
-      <location filename="../UI/UserInterface.py" line="6187" />
-      <location filename="../UI/UserInterface.py" line="6152" />
-      <location filename="../UI/UserInterface.py" line="6143" />
-      <location filename="../UI/UserInterface.py" line="6084" />
-      <location filename="../UI/UserInterface.py" line="6075" />
+      <location filename="../UI/UserInterface.py" line="6228" />
+      <location filename="../UI/UserInterface.py" line="6193" />
+      <location filename="../UI/UserInterface.py" line="6184" />
+      <location filename="../UI/UserInterface.py" line="6125" />
+      <location filename="../UI/UserInterface.py" line="6116" />
       <source>Process Generation Error</source>
       <translation>Ошибка при запуске процесса</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6076" />
+      <location filename="../UI/UserInterface.py" line="6117" />
       <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно запустить Qt-Designer.&lt;br&gt;Убедитесь, что он доступен в &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6085" />
+      <location filename="../UI/UserInterface.py" line="6126" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не удается найти исполняемый файл Qt-Designer.&lt;br&gt;На странице настройки Qt убедитесь, что он установлен и дополнительно настроен.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6144" />
+      <location filename="../UI/UserInterface.py" line="6185" />
       <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно запустить Qt-Linguist.&lt;br&gt;Убедитесь, что он доступен в &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6153" />
+      <location filename="../UI/UserInterface.py" line="6194" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не удается найти исполняемый файл Qt-Linguist.&lt;br&gt;На странице настройки Qt убедитесь, что он установлен и дополнительно настроен.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6188" />
+      <location filename="../UI/UserInterface.py" line="6229" />
       <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно запустить Qt-Assistant.&lt;br&gt;Убедитесь, что он доступен в &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6197" />
-      <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Не удается найти исполняемый файл Qt-Assistant.&lt;br&gt;На странице настройки Qt убедитесь, что он установлен и дополнительно настроен.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6222" />
-      <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="6238" />
+      <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Не удается найти исполняемый файл Qt-Assistant.&lt;br&gt;На странице настройки Qt убедитесь, что он установлен и дополнительно настроен.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6263" />
+      <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="6279" />
       <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="6260" />
+      <location filename="../UI/UserInterface.py" line="6301" />
       <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="6313" />
+      <location filename="../UI/UserInterface.py" line="6354" />
       <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно запустить UI Previewer (предпросмотр интерфейсов).&lt;br&gt;Убедитесь, что он находится в &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6372" />
+      <location filename="../UI/UserInterface.py" line="6413" />
       <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно запустить Translation Previewer (предпросмотр переводов).&lt;br&gt;Убедитесь, что он находится в &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6395" />
+      <location filename="../UI/UserInterface.py" line="6436" />
       <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="6494" />
+      <location filename="../UI/UserInterface.py" line="6535" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Утилита моментального снимка недоступна для сеансов Wayland desktop.&lt; / p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6514" />
+      <location filename="../UI/UserInterface.py" line="6555" />
       <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="6547" />
-      <location filename="../UI/UserInterface.py" line="6537" />
+      <location filename="../UI/UserInterface.py" line="6588" />
+      <location filename="../UI/UserInterface.py" line="6578" />
       <source>External Tools</source>
       <translation>Внешние инструменты</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6538" />
+      <location filename="../UI/UserInterface.py" line="6579" />
       <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
       <translation>Запись для внешнего инструмента '{0}' не найдена в группе инструментов '{1}'.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6548" />
+      <location filename="../UI/UserInterface.py" line="6589" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation>Запись для группы инструментов '{0}' не найдена.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6585" />
+      <location filename="../UI/UserInterface.py" line="6626" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>Запускается процесс '{0} {1}'.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6603" />
+      <location filename="../UI/UserInterface.py" line="6644" />
       <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно запустить инструмент &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Убедитесь, что он доступен в &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6682" />
+      <location filename="../UI/UserInterface.py" line="6723" />
       <source>Process '{0}' has exited.
 </source>
       <translation>Процесс '{0}' завершен.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6969" />
-      <location filename="../UI/UserInterface.py" line="6907" />
-      <location filename="../UI/UserInterface.py" line="6863" />
-      <location filename="../UI/UserInterface.py" line="6789" />
-      <location filename="../UI/UserInterface.py" line="6725" />
+      <location filename="../UI/UserInterface.py" line="7010" />
+      <location filename="../UI/UserInterface.py" line="6948" />
+      <location filename="../UI/UserInterface.py" line="6904" />
+      <location filename="../UI/UserInterface.py" line="6830" />
+      <location filename="../UI/UserInterface.py" line="6766" />
       <source>Documentation Missing</source>
       <translation>Документация отсутствует</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6970" />
-      <location filename="../UI/UserInterface.py" line="6908" />
-      <location filename="../UI/UserInterface.py" line="6864" />
-      <location filename="../UI/UserInterface.py" line="6790" />
-      <location filename="../UI/UserInterface.py" line="6726" />
+      <location filename="../UI/UserInterface.py" line="7011" />
+      <location filename="../UI/UserInterface.py" line="6949" />
+      <location filename="../UI/UserInterface.py" line="6905" />
+      <location filename="../UI/UserInterface.py" line="6831" />
+      <location filename="../UI/UserInterface.py" line="6767" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Стартовая директория документации "&lt;b&gt;{0}&lt;/b&gt;" не найдена.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6951" />
-      <location filename="../UI/UserInterface.py" line="6833" />
+      <location filename="../UI/UserInterface.py" line="6992" />
+      <location filename="../UI/UserInterface.py" line="6874" />
       <source>Documentation</source>
       <translation>Документация</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6834" />
+      <location filename="../UI/UserInterface.py" line="6875" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Стартовая директория документации PyQt{0} не настроена.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6952" />
+      <location filename="../UI/UserInterface.py" line="6993" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Просмотр документации PySide{0} не настроен.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7131" />
-      <location filename="../UI/UserInterface.py" line="7067" />
+      <location filename="../UI/UserInterface.py" line="7172" />
+      <location filename="../UI/UserInterface.py" line="7108" />
       <source>Start Web Browser</source>
       <translation>Запуск web-браузера</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7068" />
+      <location filename="../UI/UserInterface.py" line="7109" />
       <source>The eric web browser could not be started.</source>
       <translation>Невозможно запустить eric web-браузер.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7132" />
+      <location filename="../UI/UserInterface.py" line="7173" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Eric web-браузер не запущен.&lt;/p&gt;&lt;p&gt;Причина: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7178" />
+      <location filename="../UI/UserInterface.py" line="7219" />
       <source>Open Browser</source>
       <translation>Открыть браузер</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7178" />
+      <location filename="../UI/UserInterface.py" line="7219" />
       <source>Could not start a web browser</source>
       <translation>Невозможно запустить web-браузер</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7473" />
-      <location filename="../UI/UserInterface.py" line="7435" />
+      <location filename="../UI/UserInterface.py" line="7514" />
+      <location filename="../UI/UserInterface.py" line="7476" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation>Файл горячих клавиш (*.ekj)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7453" />
+      <location filename="../UI/UserInterface.py" line="7494" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл горячих клавиш &lt;b&gt;{0}&lt;/b&gt; уже существует. Переписать?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7681" />
+      <location filename="../UI/UserInterface.py" line="7722" />
       <source>Read Session</source>
       <translation>Загрузить сессию</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7682" />
+      <location filename="../UI/UserInterface.py" line="7723" />
       <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="7705" />
+      <location filename="../UI/UserInterface.py" line="7746" />
       <source>Save Session</source>
       <translation>Сохранить сессию</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7730" />
-      <location filename="../UI/UserInterface.py" line="7707" />
+      <location filename="../UI/UserInterface.py" line="7771" />
+      <location filename="../UI/UserInterface.py" line="7748" />
       <source>eric Session Files (*.esj)</source>
       <translation>Файлы сессий eric (*.esj)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7775" />
+      <location filename="../UI/UserInterface.py" line="7816" />
       <source>Crash Session found!</source>
       <translation>Обнаружена crash-сессия!</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7776" />
+      <location filename="../UI/UserInterface.py" line="7817" />
       <source>A session file of a crashed session was found. Shall this session be restored?</source>
       <translation>Найден файл crashed-сессии. Должна ли эта сессия быть восстановлена?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8153" />
+      <location filename="../UI/UserInterface.py" line="8194" />
       <source>Drop Error</source>
       <translation>Ошибка Drag&amp;&amp;Drop</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8154" />
+      <location filename="../UI/UserInterface.py" line="8195" />
       <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="8340" />
+      <location filename="../UI/UserInterface.py" line="8381" />
       <source>Upgrade available</source>
       <translation>Доступно обновление</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8341" />
+      <location filename="../UI/UserInterface.py" line="8382" />
       <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Новая версия пакета &lt;b&gt;eric-ide&lt;/b&gt; доступна по адресу &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt; Установлено: {1}&lt;br/&gt;Доступно: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Должен ли &lt;b&gt;eric-ide&lt;/b&gt; быть обновлен?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8386" />
+      <location filename="../UI/UserInterface.py" line="8427" />
       <source>First time usage</source>
       <translation>Первое использование</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8387" />
+      <location filename="../UI/UserInterface.py" line="8428" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation>Настройка eric ещё не выполнена. Сейчас будет запущен диалог конфигурации.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8409" />
+      <location filename="../UI/UserInterface.py" line="8450" />
       <source>Select Workspace Directory</source>
       <translation>Выбор директории рабочей области</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8574" />
+      <location filename="../UI/UserInterface.py" line="8618" />
       <source>Unsaved Data Detected</source>
       <translation>Обнаружены несохраненные данные</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8575" />
+      <location filename="../UI/UserInterface.py" line="8619" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation>Некоторые редакторы содержат несохраненные данные. Должны ли они быть сохранены?</translation>
     </message>
@@ -91941,7 +91961,7 @@
   <context>
     <name>Utilities</name>
     <message>
-      <location filename="../Utilities/__init__.py" line="1051" />
+      <location filename="../Utilities/__init__.py" line="1052" />
       <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;Вы можете использовать %-коды как заполнители в строке:
 &lt;table&gt;
@@ -92305,40 +92325,40 @@
 &lt;p&gt;Это окно отображает локальные переменные отлаживаемой программы.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1055" />
+      <location filename="../Debugger/VariablesViewer.py" line="1056" />
       <source>Show Details...</source>
       <translation>Показать подробности...</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1057" />
-      <source>Expand</source>
-      <translation>Развернуть</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1058" />
-      <source>Collapse</source>
-      <translation>Свернуть</translation>
-    </message>
-    <message>
       <location filename="../Debugger/VariablesViewer.py" line="1059" />
+      <source>Expand Subitems</source>
+      <translation>Развернуть подпункты</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/VariablesViewer.py" line="1062" />
+      <source>Collapse Subitems</source>
+      <translation>Свернуть подпункты</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/VariablesViewer.py" line="1064" />
       <source>Collapse All</source>
       <translation>Свернуть все</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1067" />
-      <location filename="../Debugger/VariablesViewer.py" line="1061" />
+      <location filename="../Debugger/VariablesViewer.py" line="1072" />
+      <location filename="../Debugger/VariablesViewer.py" line="1066" />
       <source>Refresh</source>
       <translation>Освежить</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1069" />
-      <location filename="../Debugger/VariablesViewer.py" line="1063" />
+      <location filename="../Debugger/VariablesViewer.py" line="1074" />
+      <location filename="../Debugger/VariablesViewer.py" line="1068" />
       <source>Configure...</source>
       <translation>Настроить...</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1071" />
-      <location filename="../Debugger/VariablesViewer.py" line="1064" />
+      <location filename="../Debugger/VariablesViewer.py" line="1076" />
+      <location filename="../Debugger/VariablesViewer.py" line="1069" />
       <source>Variables Type Filter...</source>
       <translation>Фильтр типа переменных...</translation>
     </message>
@@ -96973,75 +96993,75 @@
       <translation>&lt;p&gt;В файле &lt;b&gt;{0}&lt;/b&gt; есть несохранённые изменения.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5971" />
+      <location filename="../ViewManager/ViewManager.py" line="5969" />
       <source>Line: {0:5}</source>
       <translation>Строка: {0:5}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5977" />
+      <location filename="../ViewManager/ViewManager.py" line="5975" />
       <source>Pos: {0:5}</source>
       <translation>Позиция: {0:5}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5997" />
+      <location filename="../ViewManager/ViewManager.py" line="5995" />
       <source>Language: {0}</source>
       <translation>Язык: {0}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6006" />
+      <location filename="../ViewManager/ViewManager.py" line="6004" />
       <source>EOL Mode: {0}</source>
       <translation>Режим конца строк: {0}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6502" />
-      <location filename="../ViewManager/ViewManager.py" line="6459" />
+      <location filename="../ViewManager/ViewManager.py" line="6500" />
+      <location filename="../ViewManager/ViewManager.py" line="6457" />
       <source>&amp;Clear</source>
       <translation>&amp;Очистить</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6496" />
+      <location filename="../ViewManager/ViewManager.py" line="6494" />
       <source>&amp;Add</source>
       <translation>&amp;Добавить</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6499" />
+      <location filename="../ViewManager/ViewManager.py" line="6497" />
       <source>&amp;Edit...</source>
       <translation>&amp;Правка...</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7569" />
-      <location filename="../ViewManager/ViewManager.py" line="7555" />
-      <location filename="../ViewManager/ViewManager.py" line="7523" />
+      <location filename="../ViewManager/ViewManager.py" line="7567" />
+      <location filename="../ViewManager/ViewManager.py" line="7553" />
+      <location filename="../ViewManager/ViewManager.py" line="7521" />
       <source>Edit Spelling Dictionary</source>
       <translation>Редактировать орфографический словарь</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7526" />
+      <location filename="../ViewManager/ViewManager.py" line="7524" />
       <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно прочитать файл словаря&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7542" />
+      <location filename="../ViewManager/ViewManager.py" line="7540" />
       <source>Editing {0}</source>
       <translation>Редактирование {0}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7558" />
+      <location filename="../ViewManager/ViewManager.py" line="7556" />
       <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно записать файл словаря&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="7572" />
+      <location filename="../ViewManager/ViewManager.py" line="7570" />
       <source>The spelling dictionary was saved successfully.</source>
       <translation>Файл словаря успешно сохранён.</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6681" />
+      <location filename="../ViewManager/ViewManager.py" line="6679" />
       <source>Clear Editor</source>
       <translation>Очистить редактор</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6682" />
+      <location filename="../ViewManager/ViewManager.py" line="6680" />
       <source>Do you really want to delete all text of the current editor?</source>
       <translation>Вы действительно хотите удалить весь текст из текущего редактора?</translation>
     </message>
@@ -98948,16 +98968,6 @@
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
-      <source>Select to delete all web databases</source>
-      <translation>Разрешить удаление всех web баз данных</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
-      <source>Web &amp;Databases</source>
-      <translation>Web &amp;базы данных</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
       <source>Select to delete all remembered zoom settings</source>
       <translation>Разрешить удаление всех сохраненных настроек масштабирования</translation>
     </message>
@@ -99221,6 +99231,16 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
+      <source>Select to render all web contents using a dark theme.</source>
+      <translation>Разрешить отображать все веб-содержимое с использованием темной темы.</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
+      <source>Force Dark Mode</source>
+      <translation>Включить темный режим</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
       <source>Startup</source>
       <translation>Запуск</translation>
     </message>
@@ -100180,355 +100200,355 @@
   <context>
     <name>WebBrowserView</name>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="366" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="353" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="341" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="329" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="368" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="355" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="343" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="331" />
       <source>eric Web Browser</source>
       <translation>eric web-браузер</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="330" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="332" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; не существует.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="367" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="342" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="369" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="344" />
       <source>&lt;p&gt;Could not start a viewer for file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно запустить просмотрщик для файла &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="354" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="356" />
       <source>&lt;p&gt;Could not start an application for URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно запустить приложение для URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="608" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="610" />
       <source>Match {0} of {1}</source>
       <translation>Соответствие {0} из {1}</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="634" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="636" />
       <source>Inspect Element...</source>
       <translation>Проверить элемент...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="666" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="668" />
       <source>No suggestions</source>
       <translation>Нет предложений</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="723" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="725" />
       <source>Open Link in New Tab	Ctrl+LMB</source>
       <translation>Открыть ссылку в новой вкладке	Ctrl+LMB</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="728" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="730" />
       <source>Open Link in New Window</source>
       <translation>Открыть ссылку в новом окне</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="734" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="736" />
       <source>Open Link in New Private Window</source>
       <translation>Открыть ссылку в новом приватном окне</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="741" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="743" />
       <source>Save Lin&amp;k</source>
       <translation>Сохранить &amp;ссылку</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="745" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="747" />
       <source>Bookmark this Link</source>
       <translation>Добавить ссылку в закладки</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="751" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="753" />
       <source>Copy URL to Clipboard</source>
       <translation>Копировать URL в буфер</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="755" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="757" />
       <source>Send URL</source>
       <translation>Отправить URL</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="764" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="766" />
       <source>Scan Link with VirusTotal</source>
       <translation>Сканировать ссылку посредством VirusTotal</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="782" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="784" />
       <source>Open Image in New Tab</source>
       <translation>Открыть изображение в новой вкладке</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="789" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="791" />
       <source>Save Image</source>
       <translation>Сохранить изображение</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="792" />
-      <source>Copy Image to Clipboard</source>
-      <translation>Копировать изображение в буфер</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="794" />
+      <source>Copy Image to Clipboard</source>
+      <translation>Копировать изображение в буфер</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="796" />
       <source>Copy Image URL to Clipboard</source>
       <translation>Копировать URL изображения в буфер</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="799" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="801" />
       <source>Send Image URL</source>
       <translation>Отправить URL изображения</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="818" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="810" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="820" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="812" />
       <source>Search image in {0}</source>
       <translation>Поиск изображений в {0}</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="814" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="816" />
       <source>Search image with...</source>
       <translation>Поиск изображений с...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="825" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="827" />
       <source>Block Image</source>
       <translation>Заблокировать изображение</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="835" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="837" />
       <source>Scan Image with VirusTotal</source>
       <translation>Сканировать изображение посредством VirusTotal</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="855" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="857" />
       <source>Play</source>
       <translation>Воспроизвести</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="861" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="863" />
       <source>Pause</source>
       <translation>Пауза</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="867" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="869" />
       <source>Unmute</source>
       <translation>Включить звук</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="873" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="875" />
       <source>Mute</source>
       <translation>Отключить звук</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="878" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="880" />
       <source>Copy Media URL to Clipboard</source>
       <translation>Копировать URL ресурса в буфер</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="883" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="885" />
       <source>Send Media URL</source>
       <translation>Отправить URL ресурса</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="889" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="891" />
       <source>Save Media</source>
       <translation>Сохранить ресурс</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="910" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="912" />
       <source>Send Text</source>
       <translation>Отправить текст</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="917" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="919" />
       <source>Search with '{0}'</source>
       <translation>Поиск с '{0}'</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="921" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="923" />
       <source>Search with...</source>
       <translation>Искать с...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1078" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="947" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1080" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="949" />
       <source>Google Translate</source>
       <translation>Переводчик Google</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="957" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="959" />
       <source>Dictionary</source>
       <translation>Словарь</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="965" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="967" />
       <source>Go to web address</source>
       <translation>Перейти на веб адрес</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="994" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="996" />
       <source>Add New Page</source>
       <translation>Добавить новую страницу</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="999" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1001" />
       <source>Configure Speed Dial</source>
       <translation>Конфигурация быстрых вкладок</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1005" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1007" />
       <source>Reload All Dials</source>
       <translation>Перегрузить все быстрые вкладки</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1009" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1011" />
       <source>Reset to Default Dials</source>
       <translation>Сбросить к стандартным вкладкам</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1014" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1016" />
       <source>Bookmark this Page</source>
       <translation>Закладка этой страницы</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1018" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1020" />
       <source>Copy Page URL to Clipboard</source>
       <translation>Копировать URL страницы в буфер</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1023" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1025" />
       <source>Send Page URL</source>
       <translation>Отправить URL страницы</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1029" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1031" />
       <source>User Agent</source>
       <translation>Агент пользователя</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1057" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1059" />
       <source>Validate Page</source>
       <translation>Подтвердить страницу</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1120" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1122" />
       <source>Add to web search toolbar</source>
       <translation>Добавить в панель инструментов web-поиска</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1804" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1806" />
       <source>Empty Page</source>
       <translation>Пустая страница</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1868" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="1867" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1870" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1869" />
       <source>Render Process terminated abnormally</source>
       <translation>Рендер процесс завершился анормально</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1873" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1875" />
       <source>The render process crashed while loading this page.</source>
       <translation>Рендер процесс упал при загрузке этой страницы.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1878" />
-      <source>The render process was killed.</source>
-      <translation>Рендер процесс был убит.</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="1880" />
+      <source>The render process was killed.</source>
+      <translation>Рендер процесс был убит.</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="1882" />
       <source>The render process terminated while loading this page.</source>
       <translation>Рендер процесс завершается при загрузке этой страницы.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1884" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1886" />
       <source>Try reloading the page or closing some tabs to make more memory available.</source>
       <translation>Попробуйте перезагрузить страницу или закрыть некоторые вкладки, чтобы увеличить доступную память.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2012" />
-      <source>Web Archive (*.mhtml *.mht)</source>
-      <translation>Web архив (*.mhtml *.mht)</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2013" />
-      <source>HTML File (*.html *.htm)</source>
-      <translation>Файлы HTML (*.html *.htm)</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2014" />
+      <source>Web Archive (*.mhtml *.mht)</source>
+      <translation>Web архив (*.mhtml *.mht)</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2015" />
+      <source>HTML File (*.html *.htm)</source>
+      <translation>Файлы HTML (*.html *.htm)</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2016" />
       <source>HTML File with all resources (*.html *.htm)</source>
       <translation>Файлы HTML со всеми ресурсами (*.html *.htm)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2036" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2038" />
       <source>Save Web Page</source>
       <translation>Сохранить web-страницу</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2428" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2430" />
       <source>eric7 {0} ({1})</source>
       <translation>eric7 {0} ({1})</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2439" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2441" />
       <source>Print Page</source>
       <translation>Печать страницы</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2440" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2442" />
       <source>There is already a print job in progress. Printing is temporarily disabled until the current job is finished.</source>
       <translation>Уже выполняется задание печати. Печать временно отключена до завершения текущего задания.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2555" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="2485" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2557" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2487" />
       <source>Print to PDF</source>
       <translation>Печать в PDF</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2486" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2488" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; уже существует. Переписать его?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2556" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2558" />
       <source>&lt;p&gt;The PDF file &lt;b&gt;{0}&lt;/b&gt; could not be generated.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не удалось сгенерировать PDF-файл &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2590" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2592" />
       <source>Quota Request</source>
       <translation>Запрос квоты</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2591" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2593" />
       <source>&lt;p&gt; Allow the website at &lt;b&gt;{0}&lt;/b&gt; to use &lt;b&gt;{1}&lt;/b&gt; of persistent storage?&lt;/p&gt;</source>
       <translation>&lt;p&gt; Разрешить вебсайту &lt;b&gt;{0}&lt;/b&gt; использовать &lt;b&gt;{1}&lt;/b&gt; постоянного хранилища?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2634" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2636" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Read&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Предоставить веб-сайту &lt;b&gt;{0}&lt;/b&gt; доступ для &lt;b&gt;Чтения&lt;/b&gt; к '{1}'?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2642" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2644" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Write&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Предоставить веб-сайту &lt;b&gt;{0}&lt;/b&gt; доступ для &lt;b&gt;Записи&lt;/b&gt; к  '{1}'?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2647" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2649" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Read and Write&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Предоставить веб-сайту &lt;b&gt;{0}&lt;/b&gt; доступ для &lt;b&gt;Чтения и Записи&lt;/b&gt; к '{1}'?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2654" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2656" />
       <source>File System Access Request</source>
       <translation>Запрос доступа к файловой системе</translation>
     </message>
@@ -100642,10 +100662,10 @@
       <translation>eric web-браузер (приватный режим)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4099" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3007" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2991" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2976" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4105" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3013" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2997" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2982" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="207" />
       <source>eric Web Browser</source>
       <translation>eric web-браузер</translation>
@@ -100656,2079 +100676,2079 @@
       <translation>Содержание</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1758" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1758" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1764" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1764" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="306" />
       <source>Index</source>
       <translation>Индекс</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1769" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1768" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1774" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="318" />
       <source>Search</source>
       <translation>Поиск</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2115" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2114" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2121" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2120" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="325" />
       <source>JavaScript Console</source>
       <translation>Консоль JavaScript</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="737" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="743" />
       <source>New Tab</source>
       <translation>Новая вкладка</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="739" />
-      <source>&amp;New Tab</source>
-      <translation>&amp;Новая вкладка</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="740" />
-      <source>Ctrl+T</source>
-      <comment>File|New Tab</comment>
-      <translation>Ctrl+T</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="745" />
+      <source>&amp;New Tab</source>
+      <translation>&amp;Новая вкладка</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="746" />
+      <source>Ctrl+T</source>
+      <comment>File|New Tab</comment>
+      <translation>Ctrl+T</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="751" />
       <source>Open a new web browser tab</source>
       <translation>Открыть новую вкладку web-браузера</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="747" />
-      <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Новая вкладка&lt;/b&gt;&lt;p&gt;Открытие новой вкладки web-браузера.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="753" />
+      <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Новая вкладка&lt;/b&gt;&lt;p&gt;Открытие новой вкладки web-браузера.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="759" />
       <source>New Window</source>
       <translation>Новое окно</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="755" />
-      <source>New &amp;Window</source>
-      <translation>&amp;Новое окно</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="756" />
-      <source>Ctrl+N</source>
-      <comment>File|New Window</comment>
-      <translation>Ctrl+N</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="761" />
+      <source>New &amp;Window</source>
+      <translation>&amp;Новое окно</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="762" />
+      <source>Ctrl+N</source>
+      <comment>File|New Window</comment>
+      <translation>Ctrl+N</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="767" />
       <source>Open a new web browser window</source>
       <translation>Открыть новое окно web-браузера</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="763" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="769" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new web browser window in the current privacy mode.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Новое окно&lt;/b&gt;&lt;p&gt;Открывается новое окно web-браузера в текущем приватном режиме.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2889" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="773" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2895" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="779" />
       <source>New Private Window</source>
       <translation>Новое приватное окно</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="781" />
       <source>New &amp;Private Window</source>
       <translation>Новое &amp;приватное окно</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="776" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="782" />
       <source>Ctrl+Shift+P</source>
       <comment>File|New Private Window</comment>
       <translation>Ctrl+Shift+P</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="782" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="788" />
       <source>Open a new private web browser window</source>
       <translation>Открыть новое приватное окно web-браузера</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="785" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="791" />
       <source>&lt;b&gt;New Private Window&lt;/b&gt;&lt;p&gt;This opens a new private web browser window by starting a new web browser instance in private mode.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Новое приватное окно&lt;/b&gt;&lt;p&gt;Открытие нового приватного окна web-бразера путем запуска нового экземпляра web-браузера в приватном режиме.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2927" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2904" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="795" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2933" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2910" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="801" />
       <source>Open File</source>
       <translation>Открыть файл</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="797" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="803" />
       <source>&amp;Open File</source>
       <translation>&amp;Открыть файл</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="798" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="804" />
       <source>Ctrl+O</source>
       <comment>File|Open</comment>
       <translation>Ctrl+O</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="803" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="809" />
       <source>Open a file for display</source>
       <translation>Открыть файл для показа</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="805" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="811" />
       <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new file for display. It pops up a file selection dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Открыть файл&lt;/b&gt;&lt;p&gt;Открывается новый файл для показа. Отображается диалог выбора файла.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="815" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="821" />
       <source>Open File in New Tab</source>
       <translation>Открыть файл в новой вкладке</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="817" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="823" />
       <source>Open File in New &amp;Tab</source>
       <translation>Открыть файл в новой &amp;вкладке</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="818" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="824" />
       <source>Shift+Ctrl+O</source>
       <comment>File|Open in new tab</comment>
       <translation>Shift+Ctrl+O</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="823" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="829" />
       <source>Open a file for display in a new tab</source>
       <translation>Открыть файл для показа в новой вкладке</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="825" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="831" />
       <source>&lt;b&gt;Open File in New Tab&lt;/b&gt;&lt;p&gt;This opens a new file for display in a new tab. It pops up a file selection dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Открыть файл в новой вкладке&lt;/b&gt;&lt;p&gt;Открытие нового файла для показа в новой вкладке. Отображается диалог выбора файла.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="836" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="842" />
       <source>Save As</source>
       <translation>Сохранить как</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="838" />
-      <source>&amp;Save As...</source>
-      <translation>Сохранить &amp;как...</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="839" />
-      <source>Shift+Ctrl+S</source>
-      <comment>File|Save As</comment>
-      <translation>Shift+Ctrl+S</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="844" />
+      <source>&amp;Save As...</source>
+      <translation>Сохранить &amp;как...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="845" />
+      <source>Shift+Ctrl+S</source>
+      <comment>File|Save As</comment>
+      <translation>Shift+Ctrl+S</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="850" />
       <source>Save the current page to disk</source>
       <translation>Сохранить текущую страницу на диск</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="846" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="852" />
       <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current page to disk.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Сохранить как...&lt;/b&gt;&lt;p&gt;Сохранение текущей страницы на диск.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="854" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="860" />
       <source>Save Page Screen</source>
       <translation>Сохранение страницы</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="856" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="862" />
       <source>Save Page Screen...</source>
       <translation>Сохранить страницу...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="863" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="869" />
       <source>Save the visible part of the current page as a screen shot</source>
       <translation>Сохранить видимую часть текущей страницы как снимок экрана</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="866" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="872" />
       <source>&lt;b&gt;Save Page Screen...&lt;/b&gt;&lt;p&gt;Saves the visible part of the current page as a screen shot.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Сохранение страницы...&lt;/b&gt;&lt;p&gt;Сохранение видимой части текущей страницы как снимка экрана.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="877" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="883" />
       <source>Import Bookmarks</source>
       <translation>Импорт закладок</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="878" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="884" />
       <source>&amp;Import Bookmarks...</source>
       <translation>&amp;Импорт закладок...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="885" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="891" />
       <source>Import bookmarks from other browsers</source>
       <translation>Импорт закладок из других браузеров</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="888" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="894" />
       <source>&lt;b&gt;Import Bookmarks&lt;/b&gt;&lt;p&gt;Import bookmarks from other browsers.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Импорт закладок&lt;/b&gt;&lt;p&gt;Импортировать закладки из других браузеров.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="897" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="903" />
       <source>Export Bookmarks</source>
       <translation>Экспорт закладок</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="898" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="904" />
       <source>&amp;Export Bookmarks...</source>
       <translation>&amp;Экспорт закладок...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="905" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="911" />
       <source>Export the bookmarks into a file</source>
       <translation>Экспорт закладок в файл</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="908" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="914" />
       <source>&lt;b&gt;Export Bookmarks&lt;/b&gt;&lt;p&gt;Export the bookmarks into a file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Экспорт закладок&lt;/b&gt;&lt;p&gt;Экспорт закладок в файл.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2537" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="917" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2543" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="923" />
       <source>Print</source>
       <translation>Печать</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="919" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="925" />
       <source>&amp;Print</source>
       <translation>&amp;Печать</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="920" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="926" />
       <source>Ctrl+P</source>
       <comment>File|Print</comment>
       <translation>Ctrl+P</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="925" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="931" />
       <source>Print the displayed help</source>
       <translation>Печать текущего раздела справки</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="927" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="933" />
       <source>&lt;b&gt;Print&lt;/b&gt;&lt;p&gt;Print the displayed help text.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Печать&lt;/b&gt;&lt;p&gt;Печать текущего раздела справки&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="935" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="933" />
-      <source>Print as PDF</source>
-      <translation>Печать как PDF</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="941" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="939" />
+      <source>Print as PDF</source>
+      <translation>Печать как PDF</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="947" />
       <source>Print the displayed help as PDF</source>
       <translation>Печать текущего раздела справки как PDF</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="943" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="949" />
       <source>&lt;b&gt;Print as PDF&lt;/b&gt;&lt;p&gt;Print the displayed help text as a PDF file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Печать как PDF&lt;/b&gt;&lt;p&gt;Печать текущего раздела справки как PDF&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="954" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="952" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="960" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="958" />
       <source>Print Preview</source>
       <translation>Предварительный просмотр печати</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="961" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="967" />
       <source>Print preview of the displayed help</source>
       <translation>Предварительный просмотр печати справки</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="964" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="970" />
       <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the displayed help text.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Предварительный просмотр печати&lt;/b&gt;&lt;p&gt;Предварительный просмотр печати справки.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="975" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="973" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="981" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="979" />
       <source>Send Page Link</source>
       <translation>Отправить ссылку на страницу</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="982" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="988" />
       <source>Send the link of the current page via email</source>
       <translation>Отправить ссылку на текущую страницу по электронной почте</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="985" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="991" />
       <source>&lt;b&gt;Send Page Link&lt;/b&gt;&lt;p&gt;Send the link of the current page via email.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Отправить ссылку на страницу&lt;/b&gt;&lt;p&gt;Отправить ссылку на текущую страницу по электронной почте.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="994" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1000" />
       <source>Close</source>
       <translation>Закрыть</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="996" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1002" />
       <source>&amp;Close</source>
       <translation>&amp;Закрыть</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="997" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1003" />
       <source>Ctrl+W</source>
       <comment>File|Close</comment>
       <translation>Ctrl+W</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1002" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1008" />
       <source>Close the current help window</source>
       <translation>Закрыть это окно справки</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1004" />
-      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Закрыть&lt;/b&gt;&lt;p&gt;Открывается текущее окно web-броузера.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1010" />
+      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Закрыть&lt;/b&gt;&lt;p&gt;Открывается текущее окно web-броузера.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1016" />
       <source>Close All</source>
       <translation>Закрыть все</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1011" />
-      <source>Close &amp;All</source>
-      <translation>Закрыть &amp;все</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1017" />
+      <source>Close &amp;All</source>
+      <translation>Закрыть &amp;все</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1023" />
       <source>Close all help windows</source>
       <translation>Закрыть все окна справки</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1019" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1025" />
       <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all web browser windows except the first one.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Закрыть все&lt;/b&gt;&lt;p&gt;Закрываются все окна web-браузера за исключением первого.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1028" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1034" />
       <source>Quit</source>
       <translation>Выйти</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3319" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1030" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3325" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1036" />
       <source>&amp;Quit</source>
       <translation>&amp;Выйти</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1031" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1037" />
       <source>Ctrl+Q</source>
       <comment>File|Quit</comment>
       <translation>Ctrl+Q</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1036" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1042" />
       <source>Quit the eric Web Browser</source>
       <translation>Выйти из eric web-браузера</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1038" />
-      <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Выход&lt;/b&gt;&lt;p&gt;Выйти из erc6 web-браузера.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1044" />
+      <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Выход&lt;/b&gt;&lt;p&gt;Выйти из erc6 web-браузера.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1050" />
       <source>Backward</source>
       <translation>Назад</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1046" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1052" />
       <source>&amp;Backward</source>
       <translation>&amp;Назад</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1047" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1053" />
       <source>Alt+Left</source>
       <comment>Go|Backward</comment>
       <translation>Alt+Left</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1052" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1058" />
       <source>Move one screen backward</source>
       <translation>Перейти на один экран назад</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1054" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1060" />
       <source>&lt;b&gt;Backward&lt;/b&gt;&lt;p&gt;Moves one screen backward. If none is available, this action is disabled.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Назад&lt;/b&gt;&lt;p&gt;Переход на один экран назад. Если ни один экран не доступен, действие невозможно.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1064" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1070" />
       <source>Forward</source>
       <translation>Вперёд</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1066" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1072" />
       <source>&amp;Forward</source>
       <translation>&amp;Вперёд</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1067" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1073" />
       <source>Alt+Right</source>
       <comment>Go|Forward</comment>
       <translation>Alt+Right</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1072" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1078" />
       <source>Move one screen forward</source>
       <translation>Перейти на один экран вперед</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1074" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1080" />
       <source>&lt;b&gt;Forward&lt;/b&gt;&lt;p&gt;Moves one screen forward. If none is available, this action is disabled.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Вперед&lt;/b&gt;&lt;p&gt;Переход на один экран вперед. Если ни один экран не доступен, действие невозможно.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1084" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1090" />
       <source>Home</source>
       <translation>Домой</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1086" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1092" />
       <source>&amp;Home</source>
       <translation>&amp;Домой</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1087" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1093" />
       <source>Ctrl+Home</source>
       <comment>Go|Home</comment>
       <translation>Ctrl+Home</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1092" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1098" />
       <source>Move to the initial screen</source>
       <translation>Перейти к первоначальному экрану</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1094" />
-      <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Домой&lt;/b&gt;&lt;p&gt;Переход к начальному экрану.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1100" />
+      <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Домой&lt;/b&gt;&lt;p&gt;Переход к начальному экрану.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1106" />
       <source>Reload</source>
       <translation>Перезагрузить</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1102" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1108" />
       <source>&amp;Reload</source>
       <translation>П&amp;ерезагрузить</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1103" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1109" />
       <source>Ctrl+R</source>
       <comment>Go|Reload</comment>
       <translation>Ctrl+R</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1104" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1110" />
       <source>F5</source>
       <comment>Go|Reload</comment>
       <translation>F5</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1108" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1114" />
       <source>Reload the current screen</source>
       <translation>Перегрузить текущий экран</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1110" />
-      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Перезагрузить&lt;/b&gt;&lt;p&gt;Перезагружается текущий экран.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1116" />
+      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Перезагрузить&lt;/b&gt;&lt;p&gt;Перезагружается текущий экран.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1122" />
       <source>Stop</source>
       <translation>Остановить</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1118" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1124" />
       <source>&amp;Stop</source>
       <translation>&amp;Остановить</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1119" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1125" />
       <source>Ctrl+.</source>
       <comment>Go|Stop</comment>
       <translation>Ctrl+.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1120" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1126" />
       <source>Esc</source>
       <comment>Go|Stop</comment>
       <translation>Esc</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1124" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1130" />
       <source>Stop loading</source>
       <translation>Остановить загрузку</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1126" />
-      <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Стоп&lt;/b&gt;&lt;p&gt;Остановить загрузку текущей вкладки.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1132" />
+      <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Стоп&lt;/b&gt;&lt;p&gt;Остановить загрузку текущей вкладки.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1138" />
       <source>Copy</source>
       <translation>Копировать</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1134" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1140" />
       <source>&amp;Copy</source>
       <translation>&amp;Копировать</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1135" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1141" />
       <source>Ctrl+C</source>
       <comment>Edit|Copy</comment>
       <translation>Ctrl+C</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1140" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1146" />
       <source>Copy the selected text</source>
       <translation>Копировать выбранный текст</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1142" />
-      <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;Копировать&lt;/b&gt;&lt;p&gt;Копировать выбранный текст в буфер обмена.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1148" />
+      <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;Копировать&lt;/b&gt;&lt;p&gt;Копировать выбранный текст в буфер обмена.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1154" />
       <source>Cut</source>
       <translation>Вырезать</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1150" />
-      <source>Cu&amp;t</source>
-      <translation>В&amp;ырезать</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1151" />
-      <source>Ctrl+X</source>
-      <comment>Edit|Cut</comment>
-      <translation>Ctrl+X</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1156" />
+      <source>Cu&amp;t</source>
+      <translation>В&amp;ырезать</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1157" />
+      <source>Ctrl+X</source>
+      <comment>Edit|Cut</comment>
+      <translation>Ctrl+X</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1162" />
       <source>Cut the selected text</source>
       <translation>Вырезать выделенный текст</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1158" />
-      <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;Вырезать&lt;/b&gt;&lt;p&gt;Вырезать выделенный текст в буфер обмена.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1164" />
+      <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;Вырезать&lt;/b&gt;&lt;p&gt;Вырезать выделенный текст в буфер обмена.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1170" />
       <source>Paste</source>
       <translation>Вставить</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1166" />
-      <source>&amp;Paste</source>
-      <translation>Вс&amp;тавить</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1167" />
-      <source>Ctrl+V</source>
-      <comment>Edit|Paste</comment>
-      <translation>Ctrl+V</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1172" />
+      <source>&amp;Paste</source>
+      <translation>Вс&amp;тавить</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1173" />
+      <source>Ctrl+V</source>
+      <comment>Edit|Paste</comment>
+      <translation>Ctrl+V</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1178" />
       <source>Paste text from the clipboard</source>
       <translation>Вставить текст из буфера обмена</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1174" />
-      <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Вставить&lt;/b&gt;&lt;p&gt;Вставить текст из буфера обмена.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1180" />
+      <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Вставить&lt;/b&gt;&lt;p&gt;Вставить текст из буфера обмена.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1186" />
       <source>Undo</source>
       <translation>Отменить</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1182" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1188" />
       <source>&amp;Undo</source>
       <translation>&amp;Отменить</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1183" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1189" />
       <source>Ctrl+Z</source>
       <comment>Edit|Undo</comment>
       <translation>Ctrl+Z</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1188" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1194" />
       <source>Undo the last edit action</source>
       <translation>Отменить последнее действие редактирования</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1190" />
-      <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Отмена&lt;/b&gt;&lt;p&gt;Отмена последнего действия редактирования.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1196" />
+      <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Отмена&lt;/b&gt;&lt;p&gt;Отмена последнего действия редактирования.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1202" />
       <source>Redo</source>
       <translation>Повторить</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1198" />
-      <source>&amp;Redo</source>
-      <translation>&amp;Повторить</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1199" />
-      <source>Ctrl+Shift+Z</source>
-      <comment>Edit|Redo</comment>
-      <translation>Ctrl+Shift+Z</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1204" />
+      <source>&amp;Redo</source>
+      <translation>&amp;Повторить</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1205" />
+      <source>Ctrl+Shift+Z</source>
+      <comment>Edit|Redo</comment>
+      <translation>Ctrl+Shift+Z</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1210" />
       <source>Redo the last edit action</source>
       <translation>Возврат последнего действия редактирования</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1206" />
-      <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Возврат&lt;/b&gt;&lt;p&gt;Возврат последнего действия редактирования.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1212" />
+      <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Возврат&lt;/b&gt;&lt;p&gt;Возврат последнего действия редактирования.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1218" />
       <source>Select All</source>
       <translation>Выделить всё</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1214" />
-      <source>&amp;Select All</source>
-      <translation>Вы&amp;делить всё</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1215" />
-      <source>Ctrl+A</source>
-      <comment>Edit|Select All</comment>
-      <translation>Ctrl+A</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1220" />
+      <source>&amp;Select All</source>
+      <translation>Вы&amp;делить всё</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1221" />
+      <source>Ctrl+A</source>
+      <comment>Edit|Select All</comment>
+      <translation>Ctrl+A</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1226" />
       <source>Select all text</source>
       <translation>Выбрать весь текст</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1222" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1228" />
       <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current browser.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Выбрать все&lt;/b&gt;&lt;p&gt;Выбрать весь текст текущего браузера.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1232" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1231" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1238" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1237" />
       <source>Unselect</source>
       <translation>Снять выделение</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1233" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1239" />
       <source>Alt+Ctrl+A</source>
       <comment>Edit|Unselect</comment>
       <translation>Alt+Ctrl+A</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1238" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1244" />
       <source>Clear current selection</source>
       <translation>Очистить текущий выбор</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1240" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1246" />
       <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Снять выделение&lt;/b&gt;&lt;p&gt;Снять выделение в текущем браузере.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1249" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1255" />
       <source>Find...</source>
       <translation>Найти...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1251" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1257" />
       <source>&amp;Find...</source>
       <translation>&amp;Найти...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1252" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1258" />
       <source>Ctrl+F</source>
       <comment>Edit|Find</comment>
       <translation>Ctrl+F</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1257" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1263" />
       <source>Find text in page</source>
       <translation>Поиск текста на странице</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1259" />
-      <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Поиск&lt;/b&gt;&lt;p&gt;Поиск текста на текущей странице.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1265" />
+      <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Поиск&lt;/b&gt;&lt;p&gt;Поиск текста на текущей странице.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1271" />
       <source>Find next</source>
       <translation>Найти следующее</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1267" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1273" />
       <source>Find &amp;next</source>
       <translation>&amp;Следущее</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1268" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1274" />
       <source>F3</source>
       <comment>Edit|Find next</comment>
       <translation>F3</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1273" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1279" />
       <source>Find next occurrence of text in page</source>
       <translation>Поиск следующего вхождения текста на странице</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1275" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1281" />
       <source>&lt;b&gt;Find next&lt;/b&gt;&lt;p&gt;Find the next occurrence of text in the current page.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Поиск следующего&lt;/b&gt;&lt;p&gt;Поиск следующего вхождения текста на текущей странице.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1284" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1290" />
       <source>Find previous</source>
       <translation>Найти предыдущее</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1286" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1292" />
       <source>Find &amp;previous</source>
       <translation>&amp;Предыдущее</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1287" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1293" />
       <source>Shift+F3</source>
       <comment>Edit|Find previous</comment>
       <translation>Shift+F3</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1293" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1299" />
       <source>Find previous occurrence of text in page</source>
       <translation>Поиск предыдущего вхождения текста на странице</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1296" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1302" />
       <source>&lt;b&gt;Find previous&lt;/b&gt;&lt;p&gt;Find the previous occurrence of text in the current page.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Поиск предыдущего&lt;/b&gt;&lt;p&gt;Поиск предыдущего вхождения текста на текущей странице.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1306" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1312" />
       <source>Manage Bookmarks</source>
       <translation>Управление закладками</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1307" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1313" />
       <source>&amp;Manage Bookmarks...</source>
       <translation>&amp;Управление закладками...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1308" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1314" />
       <source>Ctrl+Shift+B</source>
       <comment>Help|Manage bookmarks</comment>
       <translation>Ctrl+Shift+B</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1314" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1320" />
       <source>Open a dialog to manage the bookmarks.</source>
       <translation>Отображение диалога управления закладками.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1317" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1323" />
       <source>&lt;b&gt;Manage Bookmarks...&lt;/b&gt;&lt;p&gt;Open a dialog to manage the bookmarks.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Управление закладками...&lt;/b&gt;&lt;p&gt;Отображение диалога управления закладками.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1326" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1332" />
       <source>Add Bookmark</source>
       <translation>Добавить закладку</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1328" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1334" />
       <source>Add &amp;Bookmark...</source>
       <translation>Добавить &amp;закладку...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1329" />
-      <source>Ctrl+D</source>
-      <comment>Help|Add bookmark</comment>
-      <translation>Ctrl+D</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1335" />
+      <source>Ctrl+D</source>
+      <comment>Help|Add bookmark</comment>
+      <translation>Ctrl+D</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1341" />
       <source>Open a dialog to add a bookmark.</source>
       <translation>Отображение диалога добавления закладки.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1337" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1343" />
       <source>&lt;b&gt;Add Bookmark&lt;/b&gt;&lt;p&gt;Open a dialog to add the current URL as a bookmark.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Добавить закладку&lt;/b&gt;&lt;p&gt;Отображение диалога добавления текущего URL в качестве закладки.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1346" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1352" />
       <source>Add Folder</source>
       <translation>Добавление папки</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1347" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1353" />
       <source>Add &amp;Folder...</source>
       <translation>Добавить &amp;папку...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1354" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1360" />
       <source>Open a dialog to add a new bookmarks folder.</source>
       <translation>Отображение диалога добавления новой папки закладок.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1357" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1363" />
       <source>&lt;b&gt;Add Folder...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Добавить папку&lt;/b&gt;&lt;p&gt;Отображение диалога добавления новой папки закладок.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1366" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1372" />
       <source>Bookmark All Tabs</source>
       <translation>Создать закладку для всех вкладок</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1367" />
-      <source>Bookmark All Tabs...</source>
-      <translation>Создать закладку для всех вкладок...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1373" />
+      <source>Bookmark All Tabs...</source>
+      <translation>Создать закладку для всех вкладок...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1379" />
       <source>Bookmark all open tabs.</source>
       <translation>Создать закладку для всех открытых вкладок.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1375" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1381" />
       <source>&lt;b&gt;Bookmark All Tabs...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder for all open tabs.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Создать закладку для всех вкладок...&lt;/b&gt;&lt;p&gt;Отображение диалога добавления новой папки закладок для всех открытых вкладок.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1385" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1391" />
       <source>What's This?</source>
       <translation>Что это?</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1387" />
-      <source>&amp;What's This?</source>
-      <translation>&amp;Что это?</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1388" />
-      <source>Shift+F1</source>
-      <comment>Help|What's This?'</comment>
-      <translation>Shift+F1</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1393" />
+      <source>&amp;What's This?</source>
+      <translation>&amp;Что это?</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1394" />
+      <source>Shift+F1</source>
+      <comment>Help|What's This?'</comment>
+      <translation>Shift+F1</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1399" />
       <source>Context sensitive help</source>
       <translation>Контекстнозависимая справка</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1395" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1401" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Показ контекстнозависимой справки&lt;/b&gt;&lt;p&gt;В режиме "What's This?"(Что это?)курсор мыши отображается как стрелка со знаком вопроса, и вы можете, кликнув по элементу интерфейса, получить краткое описание того, что он делает и как его использовать. В диалоговом окне эта функция может быть вызвана кнопкой контекстной справки в панели заголовка.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1408" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1414" />
       <source>About</source>
       <translation>О программе</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1408" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1414" />
       <source>&amp;About</source>
       <translation>&amp;О программе</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1410" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1416" />
       <source>Display information about this software</source>
       <translation>Информация о программе</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1412" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1418" />
       <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="../WebBrowser/WebBrowserWindow.py" line="1421" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1427" />
       <source>About Qt</source>
       <translation>О Qt</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1422" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1428" />
       <source>About &amp;Qt</source>
       <translation>О &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1429" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1435" />
       <source>Display information about the Qt toolkit</source>
       <translation>Информация о наборе инструментов Qt</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1432" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1438" />
       <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="../WebBrowser/WebBrowserWindow.py" line="1441" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1447" />
       <source>Zoom in</source>
       <translation>Увеличить масштаб</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1443" />
-      <source>Zoom &amp;in</source>
-      <translation>У&amp;величить масштаб</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1444" />
-      <source>Ctrl++</source>
-      <comment>View|Zoom in</comment>
-      <translation>Ctrl++</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1445" />
-      <source>Zoom In</source>
-      <comment>View|Zoom in</comment>
-      <translation>Увеличить масштаб</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1449" />
-      <source>Zoom in on the web page</source>
-      <translation>Увеличение масштаба web-страницы</translation>
+      <source>Zoom &amp;in</source>
+      <translation>У&amp;величить масштаб</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1450" />
+      <source>Ctrl++</source>
+      <comment>View|Zoom in</comment>
+      <translation>Ctrl++</translation>
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1451" />
+      <source>Zoom In</source>
+      <comment>View|Zoom in</comment>
+      <translation>Увеличить масштаб</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1455" />
+      <source>Zoom in on the web page</source>
+      <translation>Увеличение масштаба web-страницы</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1457" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the web page. This makes the web page bigger.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Увеличить масштаб&lt;/b&gt;&lt;p&gt;Увеличение масштаба web-страницы. Web-страница становится больше.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1461" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1467" />
       <source>Zoom out</source>
       <translation>Уменьшить масштаб</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1463" />
-      <source>Zoom &amp;out</source>
-      <translation>У&amp;меньшить масштаб</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1464" />
-      <source>Ctrl+-</source>
-      <comment>View|Zoom out</comment>
-      <translation>Ctrl+-</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1465" />
-      <source>Zoom Out</source>
-      <comment>View|Zoom out</comment>
-      <translation>Уменьшить масштаб</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1469" />
-      <source>Zoom out on the web page</source>
-      <translation>Уменьшение масштаба web-страницы</translation>
+      <source>Zoom &amp;out</source>
+      <translation>У&amp;меньшить масштаб</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1470" />
+      <source>Ctrl+-</source>
+      <comment>View|Zoom out</comment>
+      <translation>Ctrl+-</translation>
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1471" />
+      <source>Zoom Out</source>
+      <comment>View|Zoom out</comment>
+      <translation>Уменьшить масштаб</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1475" />
+      <source>Zoom out on the web page</source>
+      <translation>Уменьшение масштаба web-страницы</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1477" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the web page. This makes the web page smaller.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Уменьшить масштаб&lt;/b&gt;&lt;p&gt;Уменьшение масштаба web-страницы. Web-страница становится меньше.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1481" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1487" />
       <source>Zoom reset</source>
       <translation>Сбросить масштаб</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1483" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1489" />
       <source>Zoom &amp;reset</source>
       <translation>&amp;Сбросить масштаб</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1484" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1490" />
       <source>Ctrl+0</source>
       <comment>View|Zoom reset</comment>
       <translation>Ctrl+0</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1489" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1495" />
       <source>Reset the zoom of the web page</source>
       <translation>Сброс масштаба web-страницы</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1491" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1497" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the web page. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Сброс масштаба&lt;/b&gt;&lt;p&gt;Сброс масштаба web-страницы. Возврат коэффициента масштабирования к 100%.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1502" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1501" />
-      <source>Show page source</source>
-      <translation>Показать исходную страницу</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1503" />
-      <source>Ctrl+U</source>
-      <translation>Ctrl+U</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1508" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1507" />
+      <source>Show page source</source>
+      <translation>Показать исходную страницу</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1509" />
+      <source>Ctrl+U</source>
+      <translation>Ctrl+U</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1514" />
       <source>Show the page source in an editor</source>
       <translation>Показать исходную страницу в редакторе</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1510" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1516" />
       <source>&lt;b&gt;Show page source&lt;/b&gt;&lt;p&gt;Show the page source in an editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Показать исходную страницу&lt;/b&gt;&lt;p&gt;Показать исходную страницу в редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1520" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1526" />
       <source>Full Screen</source>
       <translation>Полный экран</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1522" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1528" />
       <source>&amp;Full Screen</source>
       <translation>Полный &amp;экран</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1529" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1535" />
       <source>Meta+Ctrl+F</source>
       <translation>Meta+Ctrl+F</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1531" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1537" />
       <source>F11</source>
       <translation>F11</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1538" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1537" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1544" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1543" />
       <source>Show next tab</source>
       <translation>Показать следующую вкладку</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1539" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1545" />
       <source>Ctrl+Alt+Tab</source>
       <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1550" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1549" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1556" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1555" />
       <source>Show previous tab</source>
       <translation>Показать предыдущую вкладку</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1551" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1557" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1562" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1561" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1568" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1567" />
       <source>Switch between tabs</source>
       <translation>Переключение между вкладками</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1563" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1569" />
       <source>Ctrl+1</source>
       <translation>Ctrl+1</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1573" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1579" />
       <source>Preferences</source>
       <translation>Предпочтения</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1575" />
-      <source>&amp;Preferences...</source>
-      <translation>&amp;Предпочтения...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1581" />
+      <source>&amp;Preferences...</source>
+      <translation>&amp;Предпочтения...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1587" />
       <source>Set the prefered configuration</source>
       <translation>Установите предпочтительную конфигурацию</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1583" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1589" />
       <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="../WebBrowser/WebBrowserWindow.py" line="1593" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1599" />
       <source>Languages</source>
       <translation>Языки</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1595" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1601" />
       <source>&amp;Languages...</source>
       <translation>&amp;Языки...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1602" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1608" />
       <source>Configure the accepted languages for web pages</source>
       <translation>Настройка возможных языков для web-страниц</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1605" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1611" />
       <source>&lt;b&gt;Languages&lt;/b&gt;&lt;p&gt;Configure the accepted languages for web pages.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Языки&lt;/b&gt;&lt;p&gt;Настройка возможных языков web-страниц.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1614" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1620" />
       <source>Cookies</source>
       <translation>Куки</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1616" />
-      <source>C&amp;ookies...</source>
-      <translation>К&amp;уки...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1622" />
+      <source>C&amp;ookies...</source>
+      <translation>К&amp;уки...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1628" />
       <source>Configure cookies handling</source>
       <translation>Настройка куки</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1624" />
-      <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Куки&lt;/b&gt;&lt;p&gt;Настройка куки.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1630" />
+      <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Куки&lt;/b&gt;&lt;p&gt;Настройка куки.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1636" />
       <source>Personal Information</source>
       <translation>Личная информация</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1632" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1638" />
       <source>Personal Information...</source>
       <translation>Личная информация...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1639" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1645" />
       <source>Configure personal information for completing form fields</source>
       <translation>Настройка Вашей личной информации для заполнения полей форм</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1642" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1648" />
       <source>&lt;b&gt;Personal Information...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the personal information used for completing form fields.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Личная информация...&lt;/b&gt;&lt;p&gt;Настройка Вашей личной информации для заполнения полей форм.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1652" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1658" />
       <source>GreaseMonkey Scripts</source>
       <translation>GreaseMonkey скрипты</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1654" />
-      <source>GreaseMonkey Scripts...</source>
-      <translation>GreaseMonkey скрипты...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1660" />
+      <source>GreaseMonkey Scripts...</source>
+      <translation>GreaseMonkey скрипты...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1666" />
       <source>Configure the GreaseMonkey Scripts</source>
       <translation>Конфигурация скриптов GreaseMonkey</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1662" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1668" />
       <source>&lt;b&gt;GreaseMonkey Scripts...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available GreaseMonkey Scripts.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Скрипты GreaseMonkey...&lt;/b&gt;&lt;p&gt;Конфигурация скриптов GreaseMonkey.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1672" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1678" />
       <source>Edit Message Filters</source>
       <translation>Редактировать фильтры сообщений</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1674" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1680" />
       <source>Edit Message Filters...</source>
       <translation>Редактировать фильтры сообщений...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1681" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1687" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation>Редактировать фильтры подавления нежелательных сообщений</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1684" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1690" />
       <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Редактировать фильтры сообщений&lt;/b&gt;&lt;p&gt;Отображение диалога редактирования фильтров подавления нежелательных сообщений, подобных сообщениям в окне ошибок.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1695" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1701" />
       <source>Edit HTML5 Feature Permissions</source>
       <translation>Изменение прав доступа к функциям HTML5</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1697" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1703" />
       <source>Edit HTML5 Feature Permissions...</source>
       <translation>Изменение прав доступа к функциям HTML5...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1704" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1710" />
       <source>Edit the remembered HTML5 feature permissions</source>
       <translation>Изменение сохраненных прав доступа к функциям HTML5</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1707" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1713" />
       <source>&lt;b&gt;Edit HTML5 Feature Permissions&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the remembered HTML5 feature permissions.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Изменение прав доступа к функциям HTML5&lt;/b&gt;&lt;p&gt;Открытие диалога изменения запомненных прав доступа к функциям HTML5.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1720" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1718" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1726" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1724" />
       <source>Sync with Table of Contents</source>
       <translation>Синхронизация с таблицей содержания</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1733" />
       <source>Synchronizes the table of contents with current page</source>
       <translation>Синхронизация таблицы содержания с текущей страницей</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1730" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1736" />
       <source>&lt;b&gt;Sync with Table of Contents&lt;/b&gt;&lt;p&gt;Synchronizes the table of contents with current page.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Синхронизация с таблицей содержания&lt;/b&gt;&lt;p&gt;Синхронизация таблицы содержания с текущей страницей.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1741" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1740" />
-      <source>Table of Contents</source>
-      <translation>Таблица содержания</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1747" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1746" />
+      <source>Table of Contents</source>
+      <translation>Таблица содержания</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1753" />
       <source>Shows the table of contents window</source>
       <translation>Отображение окна таблицы содержания</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1749" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1755" />
       <source>&lt;b&gt;Table of Contents&lt;/b&gt;&lt;p&gt;Shows the table of contents window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Таблица содержания&lt;/b&gt;&lt;p&gt;Показывает окно таблицы содержания.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1760" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1766" />
       <source>Shows the index window</source>
       <translation>Показать окно индекса</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1762" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1768" />
       <source>&lt;b&gt;Index&lt;/b&gt;&lt;p&gt;Shows the index window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Индекс&lt;/b&gt;&lt;p&gt;Показать окно индекса.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1781" />
       <source>Shows the search window</source>
       <translation>Показать окно поиска</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1777" />
-      <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Поиск&lt;/b&gt;&lt;p&gt;Показывает окно поиска.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1783" />
+      <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Поиск&lt;/b&gt;&lt;p&gt;Показывает окно поиска.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1789" />
       <source>Manage QtHelp Documents</source>
       <translation>Управление документацией QtHelp</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1784" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1790" />
       <source>Manage QtHelp &amp;Documents</source>
       <translation>Управление &amp;документацией QtHelp</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1791" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1797" />
       <source>Shows a dialog to manage the QtHelp documentation set</source>
       <translation>Показывает диалог управления документацией QtHelp</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1794" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1800" />
       <source>&lt;b&gt;Manage QtHelp Documents&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the QtHelp documentation set.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Управление документацией QtHelp&lt;/b&gt;&lt;p&gt;Показывает диалог управления документацией QtHelp.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1804" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1810" />
       <source>Reindex Documentation</source>
       <translation>Переиндексация документов</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1805" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1811" />
       <source>&amp;Reindex Documentation</source>
       <translation>&amp;Переиндексация документов</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1812" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1818" />
       <source>Reindexes the documentation set</source>
       <translation>Переиндексация документов</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1815" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1821" />
       <source>&lt;b&gt;Reindex Documentation&lt;/b&gt;&lt;p&gt;Reindexes the documentation set.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Переиндексация документов&lt;/b&gt;&lt;p&gt;Переиндексировать документацию.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1840" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1834" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1828" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1826" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1832" />
       <source>Clear private data</source>
       <translation>Очистить приватные данные</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1836" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1842" />
       <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like browsing history, search history or the favicons database.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Очистить приватные данные&lt;/b&gt;&lt;p&gt;Очистить приватные данные: удалить историю просмотров, историю поиска или базу иконок избранного.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1846" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1852" />
       <source>Clear icons database</source>
       <translation>Очистить базу иконок</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1847" />
-      <source>Clear &amp;icons database</source>
-      <translation>Очистить базу &amp;иконок</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1853" />
+      <source>Clear &amp;icons database</source>
+      <translation>Очистить базу &amp;иконок</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1859" />
       <source>Clear the database of favicons</source>
       <translation>Очистить базу иконок избранного</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1855" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1861" />
       <source>&lt;b&gt;Clear icons database&lt;/b&gt;&lt;p&gt;Clears the database of favicons of previously visited URLs.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Очистить базу иконок&lt;/b&gt;&lt;p&gt;Очистить базу иконок избранного из ранее посещённых web-сайтов.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1867" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1865" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1873" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1871" />
       <source>Manage Saved Favicons</source>
       <translation>Управление сохраненными иконками избранного</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1874" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1880" />
       <source>Show a dialog to manage the saved favicons</source>
       <translation>Отображение диалога управления сохраненными иконками избранного</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1877" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1883" />
       <source>&lt;b&gt;Manage Saved Favicons&lt;/b&gt;&lt;p&gt;This shows a dialog to manage the saved favicons of previously visited URLs.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Управление сохраненными иконками избранного&lt;/b&gt;&lt;p&gt;Отображение диалога управления сохраненными иконками ранее посещенных URL-адресов.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1887" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1893" />
       <source>Configure Search Engines</source>
       <translation>Настройка поисковых систем</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1888" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1894" />
       <source>Configure Search &amp;Engines...</source>
       <translation>Настройка &amp;поисковых систем...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1895" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1901" />
       <source>Configure the available search engines</source>
       <translation>Настройка доступных поисковых систем</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1898" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1904" />
       <source>&lt;b&gt;Configure Search Engines...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available search engines.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Настройка доступных поисковых систем...&lt;/b&gt;&lt;p&gt;Открытие диалога настройки поисковых систем.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1908" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1914" />
       <source>Manage Saved Passwords</source>
       <translation>Менеджер сохранённых паролей</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1910" />
-      <source>Manage Saved Passwords...</source>
-      <translation>Менеджер сохранённых паролей...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1916" />
+      <source>Manage Saved Passwords...</source>
+      <translation>Менеджер сохранённых паролей...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1922" />
       <source>Manage the saved passwords</source>
       <translation>Управление сохранёнными паролями</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1918" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1924" />
       <source>&lt;b&gt;Manage Saved Passwords...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved passwords.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Менеджер сохранения паролей...&lt;/b&gt;Открытие диалога управления сохранёнными паролями&lt;p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1927" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1933" />
       <source>Ad Block</source>
       <translation>Ad Block</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1929" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1935" />
       <source>&amp;Ad Block...</source>
       <translation>&amp;Ad Block...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1936" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1942" />
       <source>Configure AdBlock subscriptions and rules</source>
       <translation>Настройка подписки и правил AdBlock</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1939" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1945" />
       <source>&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure AdBlock subscriptions and rules.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Отображение диалога настройки подписок и правил AdBlock.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1949" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1955" />
       <source>Manage SSL Certificate Errors</source>
       <translation>Управление ошибками сертификата SSL</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1951" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1957" />
       <source>Manage SSL Certificate Errors...</source>
       <translation>Управление ошибками сертификата SSL...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1958" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1964" />
       <source>Manage the accepted SSL certificate Errors</source>
       <translation>Управление возможными ошибками сертификата SSL</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1961" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1967" />
       <source>&lt;b&gt;Manage SSL Certificate Errors...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the accepted SSL certificate errors.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Управление ошибками сертификата SSL...&lt;/b&gt;&lt;p&gt;Открытие диалога управления возможными ошибками сертификата SSL.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1971" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1977" />
       <source>Manage Safe Browsing</source>
       <translation>Управление Safe Browsing</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1973" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1979" />
       <source>Manage Safe Browsing...</source>
       <translation>Управление Safe Browsing...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1980" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1986" />
       <source>Configure Safe Browsing and manage local cache</source>
       <translation>Настройка Safe Browsing и управления локальным кэшем</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1983" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1989" />
       <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Управление Safe Browsing&lt;/b&gt;&lt;p&gt;Открытие диалогового окна настройки Safe Browsing (безопасного просмотра) и управления локальным кэшем.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1994" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1993" />
-      <source>Downloads</source>
-      <translation>Загрузки</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2000" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1999" />
+      <source>Downloads</source>
+      <translation>Загрузки</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2006" />
       <source>Shows the downloads window</source>
       <translation>Показать окно загрузки</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2002" />
-      <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Загрузки&lt;/b&gt;&lt;p&gt;Показать окно загрузки.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2008" />
+      <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Загрузки&lt;/b&gt;&lt;p&gt;Показать окно загрузки.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2014" />
       <source>RSS Feeds Dialog</source>
       <translation>Каналы RSS</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2010" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2016" />
       <source>&amp;RSS Feeds Dialog...</source>
       <translation>Каналы &amp;RSS...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2011" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2017" />
       <source>Ctrl+Shift+F</source>
       <comment>Help|RSS Feeds Dialog</comment>
       <translation>Ctrl+Shift+F</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2017" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2023" />
       <source>Open a dialog showing the configured RSS feeds.</source>
       <translation>Показать сконфигурированные каналы RSS.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2020" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2026" />
       <source>&lt;b&gt;RSS Feeds Dialog...&lt;/b&gt;&lt;p&gt;Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Каналы RSS...&lt;/b&gt;&lt;p&gt;Показывает сконфигурированные каналы RSS. Позволяет изменить их настройки.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2031" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2037" />
       <source>Siteinfo Dialog</source>
       <translation>Информация о сервере</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2033" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2039" />
       <source>&amp;Siteinfo Dialog...</source>
       <translation>&amp;Информация о сервере...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2034" />
-      <source>Ctrl+Shift+I</source>
-      <comment>Help|Siteinfo Dialog</comment>
-      <translation>Ctrl+Shift+I</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2040" />
+      <source>Ctrl+Shift+I</source>
+      <comment>Help|Siteinfo Dialog</comment>
+      <translation>Ctrl+Shift+I</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2046" />
       <source>Open a dialog showing some information about the current site.</source>
       <translation>Отображение диалога с информацией о текущем сервере.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2043" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2049" />
       <source>&lt;b&gt;Siteinfo Dialog...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the current site.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Информация о сервере...&lt;/b&gt;&lt;p&gt;Отображение диалога с информацией о текущем сервере.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2053" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2059" />
       <source>Manage User Agent Settings</source>
       <translation>Управление настройками агента пользователя</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2054" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2060" />
       <source>Manage &amp;User Agent Settings</source>
       <translation>Управление настройками &amp;агента пользователя</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2061" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2067" />
       <source>Shows a dialog to manage the User Agent settings</source>
       <translation>Показывает диалог управления настройками агента пользователя</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2064" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2070" />
       <source>&lt;b&gt;Manage User Agent Settings&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the User Agent settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Управление настройками агента пользователя&lt;/b&gt;&lt;p&gt;Отображение диалога управления настройками агента пользователя.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2073" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2079" />
       <source>Synchronize data</source>
       <translation>Синхронизация данных</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2075" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2081" />
       <source>&amp;Synchronize Data...</source>
       <translation>&amp;Синхронизация данных...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2082" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2088" />
       <source>Shows a dialog to synchronize data via the network</source>
       <translation>Отображение диалога синхронизации данных через сеть</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2085" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2091" />
       <source>&lt;b&gt;Synchronize Data...&lt;/b&gt;&lt;p&gt;This shows a dialog to synchronize data via the network.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Синхронизация данных...&lt;/b&gt;&lt;p&gt;Отображение диалога синхронизации данных через сеть.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2095" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2101" />
       <source>Manage Saved Zoom Values</source>
       <translation>Управление сохраненными значениями масштабирования</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2097" />
-      <source>Manage Saved Zoom Values...</source>
-      <translation>Управление сохраненными значениями масштабирования...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2103" />
+      <source>Manage Saved Zoom Values...</source>
+      <translation>Управление сохраненными значениями масштабирования...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2109" />
       <source>Manage the saved zoom values</source>
       <translation>Управление сохраненными значениями масштабирования</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2105" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2111" />
       <source>&lt;b&gt;Manage Saved Zoom Values...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved zoom values.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Управление сохраненными значениями масштабирования...&lt;/b&gt;&lt;p&gt;Открытие диалога для управления сохраненными значениями масштабирования.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2122" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2128" />
       <source>Toggle the JavaScript console window</source>
       <translation>Переключение окна консоли JavaScript</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2125" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2131" />
       <source>&lt;b&gt;JavaScript Console&lt;/b&gt;&lt;p&gt;This toggles the JavaScript console window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Консоль JavaScript&lt;/b&gt;&lt;p&gt;Переключение окна консоли JavaScript.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2135" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2134" />
-      <source>Tab Manager</source>
-      <translation>Менеджер вкладок</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2141" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2140" />
+      <source>Tab Manager</source>
+      <translation>Менеджер вкладок</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2147" />
       <source>Shows the tab manager window</source>
       <translation>Отображение окна менеджера вкладок</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2143" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2149" />
       <source>&lt;b&gt;Tab Manager&lt;/b&gt;&lt;p&gt;Shows the tab manager window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Менеджер вкладок&lt;/b&gt;&lt;p&gt;Отображение окна менеджера вкладок.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2151" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2157" />
       <source>Session Manager</source>
       <translation>Менеджер сессий</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2152" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2158" />
       <source>Session Manager...</source>
       <translation>Менеджер сессий...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2159" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2165" />
       <source>Shows the session manager window</source>
       <translation>Отображение окна менеджера сессий</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2162" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2168" />
       <source>&lt;b&gt;Session Manager&lt;/b&gt;&lt;p&gt;Shows the session manager window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Менеджер сессий&lt;/b&gt;&lt;p&gt;Отображение окна менеджера сессий.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2173" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2171" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2179" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2177" />
       <source>Scan current site</source>
       <translation>Проверить текущий сервер</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5180" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5170" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2187" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2185" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5185" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5175" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2193" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2191" />
       <source>IP Address Report</source>
       <translation>Отчет IP-адреса</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5194" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2199" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2197" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5199" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2205" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2203" />
       <source>Domain Report</source>
       <translation>Отчет домена</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2217" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2223" />
       <source>Keyboard Shortcuts</source>
       <translation>Горячие клавиши</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2219" />
-      <source>Keyboard &amp;Shortcuts...</source>
-      <translation>Горячие &amp;клавиши...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2225" />
+      <source>Keyboard &amp;Shortcuts...</source>
+      <translation>Горячие &amp;клавиши...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2231" />
       <source>Set the keyboard shortcuts</source>
       <translation>Определение горячих клавиш</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2227" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2233" />
       <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="../WebBrowser/WebBrowserWindow.py" line="5600" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5581" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2237" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5605" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5586" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2243" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Экспорт горячих клавиш</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2239" />
-      <source>&amp;Export Keyboard Shortcuts...</source>
-      <translation>&amp;Экспорт горячих клавиш...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2245" />
+      <source>&amp;Export Keyboard Shortcuts...</source>
+      <translation>&amp;Экспорт горячих клавиш...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2251" />
       <source>Export the keyboard shortcuts</source>
       <translation>Экспортировать горячие клавиши</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2247" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2253" />
       <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="../WebBrowser/WebBrowserWindow.py" line="5620" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2256" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5625" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2262" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Импорт горячиx клавиш</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2258" />
-      <source>&amp;Import Keyboard Shortcuts...</source>
-      <translation>&amp;Импорт горячих клавиш...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2264" />
+      <source>&amp;Import Keyboard Shortcuts...</source>
+      <translation>&amp;Импорт горячих клавиш...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2270" />
       <source>Import the keyboard shortcuts</source>
       <translation>Импортировать горячие клавиши</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2266" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2272" />
       <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="../WebBrowser/WebBrowserWindow.py" line="2275" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2281" />
       <source>Protocol Handler Manager</source>
       <translation>Менеджер обработчиков протокола</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2276" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2282" />
       <source>Protocol Handler Manager...</source>
       <translation>Менеджер обработчиков протокола...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2283" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2289" />
       <source>Shows the protocol handler manager window</source>
       <translation>Отображение окна менеджера обработчиков протокола</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2286" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2292" />
       <source>&lt;b&gt;Protocol Handler Manager&lt;/b&gt;&lt;p&gt;Shows the protocol handler manager window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Менеджер обработчиков протокола&lt;/b&gt;&lt;p&gt;Отображение окна менеджера обработчиков протокола.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2330" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2336" />
       <source>&amp;File</source>
       <translation>&amp;Файл</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2524" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2338" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2530" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2344" />
       <source>Sessions</source>
       <translation>Сессии</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2362" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2368" />
       <source>&amp;Edit</source>
       <translation>&amp;Правка</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2596" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2378" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2602" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2384" />
       <source>&amp;View</source>
       <translation>&amp;Вид</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2389" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2395" />
       <source>Text Encoding</source>
       <translation>Кодировка текста</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2398" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2404" />
       <source>H&amp;istory</source>
       <translation>И&amp;стория</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2414" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2420" />
       <source>&amp;Bookmarks</source>
       <translation>&amp;Закладки</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2430" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2436" />
       <source>&amp;Settings</source>
       <translation>&amp;Настройки</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2460" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2466" />
       <source>Global User Agent</source>
       <translation>Глобальный агент пользователя</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2627" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2472" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2633" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2478" />
       <source>&amp;Tools</source>
       <translation>&amp;Инструменты</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2634" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2479" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2640" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2485" />
       <source>&amp;VirusTotal</source>
       <translation>&amp;VirusTotal</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2598" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2485" />
-      <source>&amp;Windows</source>
-      <translation>&amp;Окна</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2604" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2491" />
+      <source>&amp;Windows</source>
+      <translation>&amp;Окна</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2610" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2497" />
       <source>QtHelp</source>
       <translation>QtHelp</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2496" />
-      <source>&amp;Toolbars</source>
-      <translation>&amp;Панели инструментов</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2502" />
+      <source>&amp;Toolbars</source>
+      <translation>&amp;Панели инструментов</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2508" />
       <source>&amp;Help</source>
       <translation>&amp;Справка</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2531" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2537" />
       <source>Save</source>
       <translation>Сохранить</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2551" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2557" />
       <source>Show All History...</source>
       <translation>Показать всю историю...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2721" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2558" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2564" />
       <source>Settings</source>
       <translation>Настройки</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2652" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2658" />
       <source>File</source>
       <translation>Файл</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2676" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2682" />
       <source>Edit</source>
       <translation>Редактировать</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2688" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2694" />
       <source>View</source>
       <translation>Вид</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2697" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2703" />
       <source>Find</source>
       <translation>Найти</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2705" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2711" />
       <source>Filter</source>
       <translation>Фильтр</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2712" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2718" />
       <source>Filtered by: </source>
       <translation>Отфильтровано по: </translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2732" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2738" />
       <source>Tools</source>
       <translation>Инструменты</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2740" />
-      <source>Help</source>
-      <translation>Справка</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2746" />
+      <source>Help</source>
+      <translation>Справка</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2752" />
       <source>VirusTotal</source>
       <translation>VirusTotal</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2890" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2896" />
       <source>&lt;p&gt;Could not start the process.&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="../WebBrowser/WebBrowserWindow.py" line="2894" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2900" />
       <source>OK</source>
       <translation>OK</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2929" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2906" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2935" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2912" />
       <source>HTML Files (*.html *.htm *.mhtml *.mht);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source>
       <translation>Файлы HTML (*.html *.htm *.mhtml *.mht);;Файлы PDF (*.pdf);;Файлы CHM (*.chm);;Все файлы (*)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2977" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2983" />
       <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chromium {2} with Security Patches {3}.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Веб-браузер eric - {0}&lt;/b&gt;&lt;p&gt;Веб-браузер eric - это комбинированный браузер для отображения файлов справки и HTML. Он является частью набора инструментов среды разработки eric.&lt;/p&gt;&lt;p&gt;Базируется на основе QtWebEngine {1} и Chrome {2} с патчами безопасности {3}.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2992" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2998" />
       <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chromium {2}.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Веб-браузер eric – {0}&lt;/b&gt;&lt;p&gt;Веб-браузер eric - это комбинированный браузер для отображения файлов справки и HTML.Он является частью набора инструментов среды разработки eric.&lt;/p&gt;&lt;p&gt;Базируется на основе QtWebEngine {1} и Chrome {2}.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3127" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3133" />
       <source>Saved Tabs</source>
       <translation>Сохраненные вкладки</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3310" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3316" />
       <source>Are you sure you want to close the web browser?</source>
       <translation>Вы действительно хотите закрыть веб-браузер?</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3311" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3317" />
       <source>Are you sure you want to close the web browser?
 You have {0} windows with {1} tabs open.</source>
       <translation>Вы действительно хотите закрыть веб-браузер?
 У вас открыты {0} окон с {1} вкладками.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3910" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3916" />
       <source>Could not find any associated content.</source>
       <translation>Невозможно найти соответствующее содержание.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3956" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3962" />
       <source>Unfiltered</source>
       <translation>Без фильтра</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4012" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4018" />
       <source>Updating search index</source>
       <translation>Обновление индекса поиска</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4088" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4094" />
       <source>Looking for Documentation...</source>
       <translation>Просмотр документации...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4121" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4127" />
       <source>Help Engine</source>
       <translation>Движок системы справки</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4717" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4722" />
       <source>System</source>
       <translation>Система</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4721" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4726" />
       <source>ISO</source>
       <translation>ISO</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4724" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4729" />
       <source>Unicode</source>
       <translation>Юникод</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4732" />
       <source>Windows</source>
       <translation>Windows</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4730" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4735" />
       <source>IBM</source>
       <translation>IBM</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4733" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4738" />
       <source>Apple</source>
       <translation>Apple</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4736" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4741" />
       <source>Other</source>
       <translation>Другое</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4763" />
-      <source>Menu Bar</source>
-      <translation>Строка меню</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="4768" />
-      <source>Bookmarks</source>
-      <translation>Закладки</translation>
+      <source>Menu Bar</source>
+      <translation>Строка меню</translation>
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="4773" />
+      <source>Bookmarks</source>
+      <translation>Закладки</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4778" />
       <source>Status Bar</source>
       <translation>Строка состояния</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4788" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4793" />
       <source>&amp;Show all</source>
       <translation>Показать &amp;всё</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4790" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4795" />
       <source>&amp;Hide all</source>
       <translation>Ск&amp;рыть всё</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5136" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5141" />
       <source>VirusTotal Scan</source>
       <translation>Проверка VirusTotal</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5137" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5142" />
       <source>&lt;p&gt;The VirusTotal scan could not be scheduled.&lt;p&gt;
 &lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно запланировать проверку VirusTotal.&lt;p&gt;
 &lt;p&gt;Причина: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5171" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5176" />
       <source>Enter a valid IPv4 address in dotted quad notation:</source>
       <translation>Введите действительный адрес IPv4 в четырехкомпонентой нотации с точками:</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5181" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5186" />
       <source>The given IP address is not in dotted quad notation.</source>
       <translation>Данный IP-адрес приведен не в четырехкомпонентой нотации с точками.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5195" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5200" />
       <source>Enter a valid domain name:</source>
       <translation>Введите действительное имя домена:</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5622" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5583" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5627" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5588" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation>Файл горячих клавиш (*.ekj)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5601" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5606" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл горячих клавиш &lt;b&gt;{0}&lt;/b&gt; уже существует. Переписать?&lt;/p&gt;</translation>
     </message>
--- a/src/eric7/i18n/eric7_tr.ts	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/i18n/eric7_tr.ts	Sun Jun 02 09:51:20 2024 +0200
@@ -1796,42 +1796,42 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="217" />
+      <location filename="../Utilities/BackgroundService.py" line="230" />
       <source>Initialization of Background Service</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="218" />
-      <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="231" />
+      <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="244" />
       <source>Restart background client?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="232" />
+      <location filename="../Utilities/BackgroundService.py" line="245" />
       <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It's used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Yes'&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Retry'&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'No'&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="261" />
+      <location filename="../Utilities/BackgroundService.py" line="274" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="502" />
+      <location filename="../Utilities/BackgroundService.py" line="515" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="511" />
+      <location filename="../Utilities/BackgroundService.py" line="524" />
       <source>Background client disconnected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="512" />
+      <location filename="../Utilities/BackgroundService.py" line="525" />
       <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
       <translation type="unfinished" />
     </message>
@@ -9324,665 +9324,665 @@
   <context>
     <name>DebugUI</name>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="210" />
+      <location filename="../Debugger/DebugUI.py" line="207" />
       <source>Notification</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2342" />
-      <location filename="../Debugger/DebugUI.py" line="237" />
+      <location filename="../Debugger/DebugUI.py" line="2339" />
+      <location filename="../Debugger/DebugUI.py" line="234" />
       <source>Run Script</source>
       <translation>Betiği Çalıştır</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="239" />
+      <location filename="../Debugger/DebugUI.py" line="236" />
       <source>&amp;Run Script...</source>
       <translation>Betiiğ Çalıştı&amp;r...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="245" />
+      <location filename="../Debugger/DebugUI.py" line="242" />
       <source>Run the current Script</source>
       <translation>Geçerli betiği çalıştır</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="247" />
+      <location filename="../Debugger/DebugUI.py" line="244" />
       <source>&lt;b&gt;Run Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Betiği Çalıştır&lt;/b&gt;&lt;p&gt; KOmut satırı argumanlarını ayarla ve hata ayıklayıcının dışında çalıştır. Eğer dosyada kaydedilmemiş değişiklikler varsa önce kaydedilmelidir.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2348" />
-      <location filename="../Debugger/DebugUI.py" line="2342" />
-      <location filename="../Debugger/DebugUI.py" line="258" />
+      <location filename="../Debugger/DebugUI.py" line="2345" />
+      <location filename="../Debugger/DebugUI.py" line="2339" />
+      <location filename="../Debugger/DebugUI.py" line="255" />
       <source>Run Project</source>
       <translation>Projeyi Çalıştır</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="260" />
+      <location filename="../Debugger/DebugUI.py" line="257" />
       <source>Run &amp;Project...</source>
       <translation>&amp;Projeyi Çalıştır...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="266" />
+      <location filename="../Debugger/DebugUI.py" line="263" />
       <source>Run the current Project</source>
       <translation>Geçerli Projeyi Çalıştır</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="268" />
+      <location filename="../Debugger/DebugUI.py" line="265" />
       <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="280" />
+      <location filename="../Debugger/DebugUI.py" line="277" />
       <source>Coverage run of Script</source>
       <translation>Betik kapsamını çalıştır</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="282" />
+      <location filename="../Debugger/DebugUI.py" line="279" />
       <source>Coverage run of Script...</source>
       <translation>Betik kapsamını çalıştır...</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="286" />
+      <source>Perform a coverage run of the current Script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="289" />
-      <source>Perform a coverage run of the current Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="292" />
       <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="303" />
+      <location filename="../Debugger/DebugUI.py" line="300" />
       <source>Coverage run of Project</source>
       <translation>Proje kapsamını çalıştır</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="305" />
+      <location filename="../Debugger/DebugUI.py" line="302" />
       <source>Coverage run of Project...</source>
       <translation>Proje kapsamını çalıştır...</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="309" />
+      <source>Perform a coverage run of the current Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="312" />
-      <source>Perform a coverage run of the current Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="315" />
       <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="327" />
+      <location filename="../Debugger/DebugUI.py" line="324" />
       <source>Profile Script</source>
       <translation>Betik Kesiti</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="329" />
+      <location filename="../Debugger/DebugUI.py" line="326" />
       <source>Profile Script...</source>
       <translation>Betik Kesiti...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="335" />
+      <location filename="../Debugger/DebugUI.py" line="332" />
       <source>Profile the current Script</source>
       <translation>Geçerli Betiğin Kesiti</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="337" />
+      <location filename="../Debugger/DebugUI.py" line="334" />
       <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Betik Kesiti&lt;/b&gt;&lt;p&gt;Komut satırından gerekli argumanları giriniz ve betiğin kesitini alınız Eğer dosyada kaydedilmemiş değişiklikler varsa önce kaydedilmelidir.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="347" />
+      <location filename="../Debugger/DebugUI.py" line="344" />
       <source>Profile Project</source>
       <translation>Proje Kesiti</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="349" />
+      <location filename="../Debugger/DebugUI.py" line="346" />
       <source>Profile Project...</source>
       <translation>Proje Kesiti...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="355" />
+      <location filename="../Debugger/DebugUI.py" line="352" />
       <source>Profile the current Project</source>
       <translation>Geçerli Projenin Kesiti</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="357" />
+      <location filename="../Debugger/DebugUI.py" line="354" />
       <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2528" />
-      <location filename="../Debugger/DebugUI.py" line="368" />
+      <location filename="../Debugger/DebugUI.py" line="2525" />
+      <location filename="../Debugger/DebugUI.py" line="365" />
       <source>Debug Script</source>
       <translation>Betik Hata Ayıklama</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="370" />
+      <location filename="../Debugger/DebugUI.py" line="367" />
       <source>&amp;Debug Script...</source>
       <translation>Be&amp;tik Hata Ayıklama...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="376" />
+      <location filename="../Debugger/DebugUI.py" line="373" />
       <source>Debug the current Script</source>
       <translation>Geçerli betikte hata ayıklama</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="378" />
+      <location filename="../Debugger/DebugUI.py" line="375" />
       <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2534" />
-      <location filename="../Debugger/DebugUI.py" line="2528" />
-      <location filename="../Debugger/DebugUI.py" line="390" />
+      <location filename="../Debugger/DebugUI.py" line="2531" />
+      <location filename="../Debugger/DebugUI.py" line="2525" />
+      <location filename="../Debugger/DebugUI.py" line="387" />
       <source>Debug Project</source>
       <translation>Proje Hata Ayıklama</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="392" />
+      <location filename="../Debugger/DebugUI.py" line="389" />
       <source>Debug &amp;Project...</source>
       <translation>&amp;Proje Hata Ayıklama...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="398" />
+      <location filename="../Debugger/DebugUI.py" line="395" />
       <source>Debug the current Project</source>
       <translation>Geçeli Projede Hata Ayıklama</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="400" />
+      <location filename="../Debugger/DebugUI.py" line="397" />
       <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="414" />
-      <location filename="../Debugger/DebugUI.py" line="412" />
+      <location filename="../Debugger/DebugUI.py" line="411" />
+      <location filename="../Debugger/DebugUI.py" line="409" />
       <source>Restart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="420" />
+      <location filename="../Debugger/DebugUI.py" line="417" />
       <source>Restart the last debugged script</source>
       <translation>En son hata ayıklama yapılan betiği yeniden çalıştır</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="422" />
+      <location filename="../Debugger/DebugUI.py" line="419" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="631" />
-      <location filename="../Debugger/DebugUI.py" line="436" />
-      <location filename="../Debugger/DebugUI.py" line="434" />
+      <location filename="../Debugger/DebugUI.py" line="628" />
+      <location filename="../Debugger/DebugUI.py" line="433" />
+      <location filename="../Debugger/DebugUI.py" line="431" />
       <source>Stop</source>
       <translation>Dur</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="442" />
+      <location filename="../Debugger/DebugUI.py" line="439" />
       <source>Stop the running script.</source>
       <translation>Çalışan betiği durdur.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="444" />
+      <location filename="../Debugger/DebugUI.py" line="441" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="455" />
+      <location filename="../Debugger/DebugUI.py" line="452" />
       <source>Continue</source>
       <translation>Devam et</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="457" />
+      <location filename="../Debugger/DebugUI.py" line="454" />
       <source>&amp;Continue</source>
       <translation>&amp;Devam et</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="463" />
+      <location filename="../Debugger/DebugUI.py" line="460" />
       <source>Continue running the program from the current line</source>
       <translation>Geçerli satırdan itibaren programı çalıştırmaya devam et</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="465" />
+      <location filename="../Debugger/DebugUI.py" line="462" />
       <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Devam Et&lt;/b&gt;&lt;p&gt;Geçerli satırdan itibaren programı çalıştırmaya devam et. Proğram sonlandırıldığında yada bir bekleme nokatsına ulaştığında durur.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="476" />
+      <location filename="../Debugger/DebugUI.py" line="473" />
       <source>Continue to Cursor</source>
       <translation>İmlece kadar devam et</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="478" />
+      <location filename="../Debugger/DebugUI.py" line="475" />
       <source>Continue &amp;To Cursor</source>
       <translation>İmlece Kadar Devam E&amp;t</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="485" />
+      <location filename="../Debugger/DebugUI.py" line="482" />
       <source>Continue running the program from the current line to the current cursor position</source>
       <translation>Geçerli satırdan geçerli imleç pozisyonuna kadar programı çalıştırmaya devam et</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="491" />
+      <location filename="../Debugger/DebugUI.py" line="488" />
       <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
       <translation>&lt;b&gt;İmlece Kadar Devam Et&lt;/b&gt;&lt;p&gt;Geçerli satırdan geçerli imleç pozisyonuna kadar programı çalıştırmaya devam et.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="501" />
+      <location filename="../Debugger/DebugUI.py" line="498" />
       <source>Continue Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="503" />
+      <location filename="../Debugger/DebugUI.py" line="500" />
       <source>Continue &amp;Until</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="510" />
+      <location filename="../Debugger/DebugUI.py" line="507" />
       <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="516" />
+      <location filename="../Debugger/DebugUI.py" line="513" />
       <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="527" />
+      <location filename="../Debugger/DebugUI.py" line="524" />
       <source>Move Instruction Pointer to Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="529" />
+      <location filename="../Debugger/DebugUI.py" line="526" />
       <source>&amp;Jump To Cursor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="536" />
+      <location filename="../Debugger/DebugUI.py" line="533" />
       <source>Skip the code from the current line to the current cursor position</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="542" />
+      <location filename="../Debugger/DebugUI.py" line="539" />
       <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="556" />
+      <location filename="../Debugger/DebugUI.py" line="553" />
       <source>Single Step</source>
       <translation>Tekli Adım</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="558" />
+      <location filename="../Debugger/DebugUI.py" line="555" />
       <source>Sin&amp;gle Step</source>
       <translation>Tek&amp;li Adım</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="564" />
+      <location filename="../Debugger/DebugUI.py" line="561" />
       <source>Execute a single Python statement</source>
       <translation>Tekbir Python ifadesini girçekleştir</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="566" />
+      <location filename="../Debugger/DebugUI.py" line="563" />
       <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="578" />
+      <location filename="../Debugger/DebugUI.py" line="575" />
       <source>Step Over</source>
       <translation>Sona Kadar Adımla</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="580" />
+      <location filename="../Debugger/DebugUI.py" line="577" />
       <source>Step &amp;Over</source>
       <translation>S&amp;ona Kadar Adımla</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="587" />
+      <location filename="../Debugger/DebugUI.py" line="584" />
       <source>Execute a single Python statement staying in the current frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="593" />
+      <location filename="../Debugger/DebugUI.py" line="590" />
       <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="606" />
+      <location filename="../Debugger/DebugUI.py" line="603" />
       <source>Step Out</source>
       <translation>Adımlamadan Çık</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="608" />
+      <location filename="../Debugger/DebugUI.py" line="605" />
       <source>Step Ou&amp;t</source>
       <translation>Adımdan Çı&amp;k</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="612" />
+      <source>Execute Python statements until leaving the current frame</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="615" />
-      <source>Execute Python statements until leaving the current frame</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="618" />
       <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="633" />
+      <location filename="../Debugger/DebugUI.py" line="630" />
       <source>&amp;Stop</source>
       <translation>D&amp;ur</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="639" />
+      <location filename="../Debugger/DebugUI.py" line="636" />
       <source>Stop debugging</source>
       <translation>Hata ayıklamayı durdur</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="641" />
+      <location filename="../Debugger/DebugUI.py" line="638" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Dur&lt;/b&gt;&lt;p&gt;Çalışan hata ayıklama oturumunu durdur.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="647" />
+      <location filename="../Debugger/DebugUI.py" line="644" />
       <source>Variables Type Filter</source>
       <translation>Değişken Tipi Süzgeçi</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="648" />
+      <location filename="../Debugger/DebugUI.py" line="645" />
       <source>Varia&amp;bles Type Filter...</source>
       <translation>Değişken Tipi Süzgeçi&amp;b...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="654" />
+      <location filename="../Debugger/DebugUI.py" line="651" />
       <source>Configure variables type filter</source>
       <translation>Değişken Tipi Süzgeçi Yapılandır</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="656" />
+      <location filename="../Debugger/DebugUI.py" line="653" />
       <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="667" />
+      <location filename="../Debugger/DebugUI.py" line="664" />
       <source>Exceptions Filter</source>
       <translation>İstisnai Süzgeç</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="668" />
+      <location filename="../Debugger/DebugUI.py" line="665" />
       <source>&amp;Exceptions Filter...</source>
       <translation>İstisnai Süz&amp;eç...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="674" />
+      <location filename="../Debugger/DebugUI.py" line="671" />
       <source>Configure exceptions filter</source>
       <translation>İstisnai Süzgeçi ayarla</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="676" />
+      <location filename="../Debugger/DebugUI.py" line="673" />
       <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="688" />
+      <location filename="../Debugger/DebugUI.py" line="685" />
       <source>Ignored Exceptions</source>
       <translation>Yoksayılan İstisnalar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="689" />
+      <location filename="../Debugger/DebugUI.py" line="686" />
       <source>&amp;Ignored Exceptions...</source>
       <translation>Yoksayılan İst&amp;isnalar...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="695" />
+      <location filename="../Debugger/DebugUI.py" line="692" />
       <source>Configure ignored exceptions</source>
       <translation>Yoksayılan istisnaları ayarla</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="697" />
+      <location filename="../Debugger/DebugUI.py" line="694" />
       <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Yoksayılan İstisnalar&lt;/b&gt;&lt;p&gt;Yoksayılan istisnaları ayarla.hata ayıklama süreci içinde vurgulanan istisnaları listeleme.&lt;/p&gt;&lt;p&gt;Lütfen dikkat, ele alınmamış istisnalar yoksayılamaz.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="719" />
-      <location filename="../Debugger/DebugUI.py" line="713" />
-      <location filename="../Debugger/DebugUI.py" line="711" />
+      <location filename="../Debugger/DebugUI.py" line="716" />
+      <location filename="../Debugger/DebugUI.py" line="710" />
+      <location filename="../Debugger/DebugUI.py" line="708" />
       <source>Toggle Breakpoint</source>
       <translation>Beklemenoktası Açkapa</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="714" />
+      <location filename="../Debugger/DebugUI.py" line="711" />
       <source>Shift+F11</source>
       <comment>Debug|Toggle Breakpoint</comment>
       <translation>Shift+F11</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="721" />
+      <location filename="../Debugger/DebugUI.py" line="718" />
       <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Açkapa Beklemenoktası&lt;/b&gt;&lt;p&gt;Geçerli düzenleyicinin geçerli satırırında bir bekleme noktasını açkapa.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="739" />
-      <location filename="../Debugger/DebugUI.py" line="731" />
+      <location filename="../Debugger/DebugUI.py" line="736" />
+      <location filename="../Debugger/DebugUI.py" line="728" />
       <source>Edit Breakpoint</source>
       <translation>Bekleme Noktasını Düzenle</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="733" />
+      <location filename="../Debugger/DebugUI.py" line="730" />
       <source>Edit Breakpoint...</source>
       <translation>Bekleme Noktasını Düzenle...</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="734" />
+      <location filename="../Debugger/DebugUI.py" line="731" />
       <source>Shift+F12</source>
       <comment>Debug|Edit Breakpoint</comment>
       <translation>Shift+F12</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="741" />
+      <location filename="../Debugger/DebugUI.py" line="738" />
       <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="759" />
-      <location filename="../Debugger/DebugUI.py" line="753" />
-      <location filename="../Debugger/DebugUI.py" line="751" />
+      <location filename="../Debugger/DebugUI.py" line="756" />
+      <location filename="../Debugger/DebugUI.py" line="750" />
+      <location filename="../Debugger/DebugUI.py" line="748" />
       <source>Next Breakpoint</source>
       <translation>Sonraki Beklemenoktası</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="754" />
+      <location filename="../Debugger/DebugUI.py" line="751" />
       <source>Ctrl+Shift+PgDown</source>
       <comment>Debug|Next Breakpoint</comment>
       <translation>Ctrl+Shift+PgDown</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="761" />
+      <location filename="../Debugger/DebugUI.py" line="758" />
       <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="778" />
-      <location filename="../Debugger/DebugUI.py" line="772" />
-      <location filename="../Debugger/DebugUI.py" line="770" />
+      <location filename="../Debugger/DebugUI.py" line="775" />
+      <location filename="../Debugger/DebugUI.py" line="769" />
+      <location filename="../Debugger/DebugUI.py" line="767" />
       <source>Previous Breakpoint</source>
       <translation>Önceki Beklemenoktası</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="773" />
+      <location filename="../Debugger/DebugUI.py" line="770" />
       <source>Ctrl+Shift+PgUp</source>
       <comment>Debug|Previous Breakpoint</comment>
       <translation>Ctrl+Shift+PgUp</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="780" />
+      <location filename="../Debugger/DebugUI.py" line="777" />
       <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="796" />
-      <location filename="../Debugger/DebugUI.py" line="790" />
-      <location filename="../Debugger/DebugUI.py" line="789" />
+      <location filename="../Debugger/DebugUI.py" line="793" />
+      <location filename="../Debugger/DebugUI.py" line="787" />
+      <location filename="../Debugger/DebugUI.py" line="786" />
       <source>Clear Breakpoints</source>
       <translation>Beklemenoktalarını Temizle</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="798" />
+      <location filename="../Debugger/DebugUI.py" line="795" />
       <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="822" />
+      <location filename="../Debugger/DebugUI.py" line="819" />
       <source>&amp;Debug</source>
       <translation>Hata Ayık&amp;lama</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="824" />
+      <location filename="../Debugger/DebugUI.py" line="821" />
       <source>Sta&amp;rt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="826" />
+      <location filename="../Debugger/DebugUI.py" line="823" />
       <source>&amp;Breakpoints</source>
       <translation>&amp;Durmanoktası</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="869" />
-      <location filename="../Debugger/DebugUI.py" line="867" />
+      <location filename="../Debugger/DebugUI.py" line="866" />
+      <location filename="../Debugger/DebugUI.py" line="864" />
       <source>Start</source>
       <translation>Başla</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="882" />
-      <location filename="../Debugger/DebugUI.py" line="880" />
+      <location filename="../Debugger/DebugUI.py" line="879" />
+      <location filename="../Debugger/DebugUI.py" line="877" />
       <source>Debug</source>
       <translation>Hata Ayıklama</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1345" />
+      <location filename="../Debugger/DebugUI.py" line="1342" />
       <source>Message: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1349" />
+      <location filename="../Debugger/DebugUI.py" line="1346" />
       <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1354" />
+      <location filename="../Debugger/DebugUI.py" line="1351" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1366" />
+      <location filename="../Debugger/DebugUI.py" line="1363" />
       <source>Program terminated</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1402" />
+      <location filename="../Debugger/DebugUI.py" line="1399" />
       <source>The program being debugged contains an unspecified syntax error.</source>
       <translation>Uygulama belirtilmemiş sözdizimi hatalarını belirlemeye başladı.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1422" />
+      <location filename="../Debugger/DebugUI.py" line="1419" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1450" />
+      <location filename="../Debugger/DebugUI.py" line="1447" />
       <source>An unhandled exception occured. See the shell window for details.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1497" />
+      <location filename="../Debugger/DebugUI.py" line="1494" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1515" />
+      <location filename="../Debugger/DebugUI.py" line="1512" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1573" />
+      <location filename="../Debugger/DebugUI.py" line="1570" />
       <source>&lt;p&gt;The program generate the signal "{0}".&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1591" />
+      <location filename="../Debugger/DebugUI.py" line="1588" />
       <source>The program being debugged has terminated unexpectedly.</source>
       <translation>Hata ayıklanmaya başlanan program beklenmeyen bir şekilde sonlandı.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1652" />
+      <location filename="../Debugger/DebugUI.py" line="1649" />
       <source>No locals available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1699" />
+      <location filename="../Debugger/DebugUI.py" line="1696" />
       <source>Breakpoint Condition Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1700" />
+      <location filename="../Debugger/DebugUI.py" line="1697" />
       <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1757" />
+      <location filename="../Debugger/DebugUI.py" line="1754" />
       <source>Watch Expression Error</source>
       <translation>Gözetleme İfade hatası</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1758" />
+      <location filename="../Debugger/DebugUI.py" line="1755" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1786" />
+      <location filename="../Debugger/DebugUI.py" line="1783" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1791" />
+      <location filename="../Debugger/DebugUI.py" line="1788" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1797" />
+      <location filename="../Debugger/DebugUI.py" line="1794" />
       <source>Watch expression already exists</source>
       <translation>Hali hazırda gözetleme ifadesi var</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1962" />
-      <location filename="../Debugger/DebugUI.py" line="1953" />
+      <location filename="../Debugger/DebugUI.py" line="1959" />
+      <location filename="../Debugger/DebugUI.py" line="1950" />
       <source>Coverage Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1955" />
+      <location filename="../Debugger/DebugUI.py" line="1952" />
       <source>Coverage Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2349" />
-      <location filename="../Debugger/DebugUI.py" line="2158" />
-      <location filename="../Debugger/DebugUI.py" line="1963" />
+      <location filename="../Debugger/DebugUI.py" line="2346" />
+      <location filename="../Debugger/DebugUI.py" line="2155" />
+      <location filename="../Debugger/DebugUI.py" line="1960" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>Bugeçerli projede tanımlanan ana betik değil. Durduruluyor</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2157" />
-      <location filename="../Debugger/DebugUI.py" line="2148" />
+      <location filename="../Debugger/DebugUI.py" line="2154" />
+      <location filename="../Debugger/DebugUI.py" line="2145" />
       <source>Profile Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2150" />
+      <location filename="../Debugger/DebugUI.py" line="2147" />
       <source>Profile Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2535" />
+      <location filename="../Debugger/DebugUI.py" line="2532" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation type="unfinished" />
     </message>
@@ -10699,12 +10699,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1451" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1458" />
       <source>Debug Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1452" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1459" />
       <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -12524,7 +12524,7 @@
   <context>
     <name>Editor</name>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3527" />
+      <location filename="../QScintilla/Editor.py" line="3525" />
       <location filename="../QScintilla/Editor.py" line="470" />
       <location filename="../QScintilla/Editor.py" line="455" />
       <source>Open File</source>
@@ -12596,7 +12596,7 @@
       <translation>Yorumlanamaz</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9939" />
+      <location filename="../QScintilla/Editor.py" line="9937" />
       <location filename="../QScintilla/Editor.py" line="969" />
       <source>Generate Docstring</source>
       <translation type="unfinished" />
@@ -12874,7 +12874,7 @@
       <translation type="unfinished">Yazım kontolü yapılıyor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9026" />
+      <location filename="../QScintilla/Editor.py" line="9024" />
       <location filename="../QScintilla/Editor.py" line="1367" />
       <source>Check spelling...</source>
       <translation>Yazım Kontrolü...</translation>
@@ -12935,7 +12935,7 @@
       <translation>Bekleme noktasını düzenle...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6498" />
+      <location filename="../QScintilla/Editor.py" line="6496" />
       <location filename="../QScintilla/Editor.py" line="1452" />
       <source>Enable breakpoint</source>
       <translation>Beklemenoktasını etkinleştir</translation>
@@ -13097,444 +13097,444 @@
       <translation>Yalnızca okunabilir bir dosyayı değiştirmeşe çalışıyorsunuz. Lütfen önce farklı bir isimde kaydediniz.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="2701" />
+      <location filename="../QScintilla/Editor.py" line="2699" />
       <source>Add Breakpoint</source>
       <translation type="unfinished">Bekleme Noktası Ekle</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="2702" />
+      <location filename="../QScintilla/Editor.py" line="2700" />
       <source>No Python byte code will be created for the selected line. No break point will be set!</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3056" />
+      <location filename="../QScintilla/Editor.py" line="3054" />
       <source>Printing...</source>
       <translation>Yazılıyor...</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="3071" />
+      <source>Printing completed</source>
+      <translation>Yazdırma tamalandı</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="3073" />
-      <source>Printing completed</source>
-      <translation>Yazdırma tamalandı</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="3075" />
       <source>Error while printing</source>
       <translation>Yazdırılırken hata</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3078" />
+      <location filename="../QScintilla/Editor.py" line="3076" />
       <source>Printing aborted</source>
       <translation>Yazdırma iptal edildi</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3460" />
+      <location filename="../QScintilla/Editor.py" line="3458" />
       <source>File Modified</source>
       <translation>Dosya Değiştirildi</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3461" />
+      <location filename="../QScintilla/Editor.py" line="3459" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt;dosyasında kaydedilmemiş değişiklikler var.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3528" />
+      <location filename="../QScintilla/Editor.py" line="3526" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Dosya &lt;b&gt;{0}&lt;/b&gt; açılamıyor.&lt;/p&gt;&lt;p&gt;Sebep: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3719" />
-      <location filename="../QScintilla/Editor.py" line="3700" />
-      <location filename="../QScintilla/Editor.py" line="3660" />
+      <location filename="../QScintilla/Editor.py" line="3717" />
+      <location filename="../QScintilla/Editor.py" line="3698" />
+      <location filename="../QScintilla/Editor.py" line="3658" />
       <source>Save File</source>
       <translation>Dosyayı Kaydet</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3661" />
+      <location filename="../QScintilla/Editor.py" line="3659" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Dosya &lt;b&gt;{0}&lt;/b&gt; kaydedilemiyor.&lt;/p&gt;&lt;p&gt;Sebep: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3720" />
+      <location filename="../QScintilla/Editor.py" line="3718" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halen mevcut. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3864" />
+      <location filename="../QScintilla/Editor.py" line="3862" />
       <source>Save File to Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3865" />
+      <location filename="../QScintilla/Editor.py" line="3863" />
       <source>Enter the complete device file path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5653" />
+      <location filename="../QScintilla/Editor.py" line="5651" />
       <source>Autocompletion</source>
       <translation>Otomatik tamamlama</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5654" />
+      <location filename="../QScintilla/Editor.py" line="5652" />
       <source>Autocompletion is not available because there is no autocompletion source set.</source>
       <translation>Otomatiktamamlama uygun değil çünkü bu otomatiktamamlama kaynağı değil.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5788" />
+      <location filename="../QScintilla/Editor.py" line="5786" />
       <source>Auto-Completion Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5789" />
+      <location filename="../QScintilla/Editor.py" line="5787" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6085" />
+      <location filename="../QScintilla/Editor.py" line="6083" />
       <source>Call-Tips Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6086" />
+      <location filename="../QScintilla/Editor.py" line="6084" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6502" />
+      <location filename="../QScintilla/Editor.py" line="6500" />
       <source>Disable breakpoint</source>
       <translation>Durmanoktasını iptal et</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6917" />
+      <location filename="../QScintilla/Editor.py" line="6915" />
       <source>Code Coverage</source>
       <translation>Kod Koruyucu</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6918" />
+      <location filename="../QScintilla/Editor.py" line="6916" />
       <source>Please select a coverage file</source>
       <translation>Lütfen bir koruyucu dosya seçiniz</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6993" />
-      <location filename="../QScintilla/Editor.py" line="6985" />
+      <location filename="../QScintilla/Editor.py" line="6991" />
+      <location filename="../QScintilla/Editor.py" line="6983" />
       <source>Show Code Coverage Annotations</source>
       <translation>Kodların Dipnotunu Göster</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6986" />
+      <location filename="../QScintilla/Editor.py" line="6984" />
       <source>All lines have been covered.</source>
       <translation>Tüm satırlar korumaya alındı.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6994" />
+      <location filename="../QScintilla/Editor.py" line="6992" />
       <source>There is no coverage file available.</source>
       <translation>Hazırda koruma dosyası yok.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7102" />
+      <location filename="../QScintilla/Editor.py" line="7100" />
       <source>Profile Data</source>
       <translation>Veri Kesiti</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7103" />
+      <location filename="../QScintilla/Editor.py" line="7101" />
       <source>Please select a profile file</source>
       <translation>Lütfen kesit dosyasını seçiniz</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7265" />
-      <location filename="../QScintilla/Editor.py" line="7259" />
+      <location filename="../QScintilla/Editor.py" line="7263" />
+      <location filename="../QScintilla/Editor.py" line="7257" />
       <source>Syntax Error</source>
       <translation>Sözdizimi Hatası</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7266" />
+      <location filename="../QScintilla/Editor.py" line="7264" />
       <source>No syntax error message available.</source>
       <translation>Uygun söz dizimi hata mesajı yok.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7513" />
-      <location filename="../QScintilla/Editor.py" line="7507" />
+      <location filename="../QScintilla/Editor.py" line="7511" />
+      <location filename="../QScintilla/Editor.py" line="7505" />
       <source>Warning</source>
       <translation type="unfinished">Dikkat</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7513" />
+      <location filename="../QScintilla/Editor.py" line="7511" />
       <source>No warning messages available.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7590" />
+      <source>Info: {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7606" />
       <location filename="../QScintilla/Editor.py" line="7592" />
-      <source>Info: {0}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7608" />
-      <location filename="../QScintilla/Editor.py" line="7594" />
       <source>Error: {0}</source>
       <translation>Hata: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7596" />
+      <location filename="../QScintilla/Editor.py" line="7594" />
       <source>Style: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7601" />
+      <location filename="../QScintilla/Editor.py" line="7599" />
       <source>Warning: {0}</source>
       <translation>Dikkat: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7729" />
       <source>Macro Name</source>
       <translation>Makro Adı</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7729" />
       <source>Select a macro name:</source>
       <translation>Bir makro ismi seç:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7757" />
+      <location filename="../QScintilla/Editor.py" line="7755" />
       <source>Load macro file</source>
       <translation>Makro dosyasını yükle</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7803" />
-      <location filename="../QScintilla/Editor.py" line="7759" />
-      <source>Macro files (*.macro)</source>
-      <translation>Makro dosyaları (*.macro)</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7781" />
-      <location filename="../QScintilla/Editor.py" line="7771" />
-      <source>Error loading macro</source>
-      <translation>Makronun yüklenmesinde hata</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7772" />
-      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Makro dosyası &lt;b&gt;{0}&lt;/b&gt; okunamıyor.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7782" />
-      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Makro dosyası &lt;b&gt;{0}&lt;/b&gt; bozuk.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="7801" />
+      <location filename="../QScintilla/Editor.py" line="7757" />
+      <source>Macro files (*.macro)</source>
+      <translation>Makro dosyaları (*.macro)</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7779" />
+      <location filename="../QScintilla/Editor.py" line="7769" />
+      <source>Error loading macro</source>
+      <translation>Makronun yüklenmesinde hata</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7770" />
+      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Makro dosyası &lt;b&gt;{0}&lt;/b&gt; okunamıyor.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7780" />
+      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Makro dosyası &lt;b&gt;{0}&lt;/b&gt; bozuk.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7799" />
       <source>Save macro file</source>
       <translation>Makro Dosyasını Kaydet</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7819" />
+      <location filename="../QScintilla/Editor.py" line="7817" />
       <source>Save macro</source>
       <translation>Makro Kaydet</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7820" />
+      <location filename="../QScintilla/Editor.py" line="7818" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Makro dosyası &lt;b&gt;{0}&lt;/b&gt; zaten var. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7835" />
+      <location filename="../QScintilla/Editor.py" line="7833" />
       <source>Error saving macro</source>
       <translation>Makronun kaydedilmesinde hata</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7836" />
+      <location filename="../QScintilla/Editor.py" line="7834" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Makro dosyası &lt;b&gt;{0}&lt;/b&gt; yazılamıyor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7849" />
+      <location filename="../QScintilla/Editor.py" line="7847" />
       <source>Start Macro Recording</source>
       <translation>Makro Kaydı Başladı</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7850" />
+      <location filename="../QScintilla/Editor.py" line="7848" />
       <source>Macro recording is already active. Start new?</source>
       <translation>Makro kaydı şuan aktif. Yeniden başlasın mı?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7876" />
+      <location filename="../QScintilla/Editor.py" line="7874" />
       <source>Macro Recording</source>
       <translation>Makro Kaydediliyor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7877" />
+      <location filename="../QScintilla/Editor.py" line="7875" />
       <source>Enter name of the macro:</source>
       <translation>Makronun ismini gir:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8060" />
+      <location filename="../QScintilla/Editor.py" line="8058" />
       <source>{0} (ro)</source>
       <translation>{0} (ro)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8245" />
+      <location filename="../QScintilla/Editor.py" line="8243" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8251" />
+      <location filename="../QScintilla/Editor.py" line="8249" />
       <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8258" />
+      <location filename="../QScintilla/Editor.py" line="8256" />
       <source>File changed</source>
       <translation>Dosya değiştirilmiş</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8351" />
+      <location filename="../QScintilla/Editor.py" line="8349" />
       <source>Reload File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8352" />
+      <location filename="../QScintilla/Editor.py" line="8350" />
       <source>&lt;p&gt;The editor contains unsaved modifications.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reloading it.&lt;/p&gt;&lt;p&gt;Shall the editor really be reloaded?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8452" />
+      <location filename="../QScintilla/Editor.py" line="8450" />
       <source>Drop Error</source>
       <translation>Düşme hatası</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8453" />
+      <location filename="../QScintilla/Editor.py" line="8451" />
       <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="../QScintilla/Editor.py" line="8472" />
+      <source>Resources</source>
+      <translation>Kaynaklar</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="8474" />
-      <source>Resources</source>
-      <translation>Kaynaklar</translation>
+      <source>Add file...</source>
+      <translation>Dosya ekle...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="8475" />
+      <source>Add files...</source>
+      <translation>Dosyaları ekle...</translation>
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="8476" />
-      <source>Add file...</source>
-      <translation>Dosya ekle...</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="8477" />
-      <source>Add files...</source>
-      <translation>Dosyaları ekle...</translation>
+      <source>Add aliased file...</source>
+      <translation>Kısaltmalar dosyasına ekle...</translation>
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="8478" />
-      <source>Add aliased file...</source>
-      <translation>Kısaltmalar dosyasına ekle...</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="8480" />
       <source>Add localized resource...</source>
       <translation>Yaral kaynak ekle...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8483" />
+      <location filename="../QScintilla/Editor.py" line="8481" />
       <source>Add resource frame</source>
       <translation>Çerçeve kaynağı ekle</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8503" />
+      <location filename="../QScintilla/Editor.py" line="8501" />
       <source>Add file resource</source>
       <translation>Dosya kaynağını ekle</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8517" />
+      <location filename="../QScintilla/Editor.py" line="8515" />
       <source>Add file resources</source>
       <translation>Dosya kaynaklarını ekle</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8541" />
-      <location filename="../QScintilla/Editor.py" line="8535" />
+      <location filename="../QScintilla/Editor.py" line="8539" />
+      <location filename="../QScintilla/Editor.py" line="8533" />
       <source>Add aliased file resource</source>
       <translation>Kısaltmalar dosyası kaynağını ekle</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8542" />
+      <location filename="../QScintilla/Editor.py" line="8540" />
       <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
       <translation>&lt;b&gt;{0} dosyası için takma ad&lt;/b&gt;:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8617" />
+      <location filename="../QScintilla/Editor.py" line="8615" />
       <source>Package Diagram</source>
       <translation>Paket Şeması</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8618" />
+      <location filename="../QScintilla/Editor.py" line="8616" />
       <source>Include class attributes?</source>
       <translation>Sınıf nitelikleri dahil edilsin mi?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8638" />
+      <location filename="../QScintilla/Editor.py" line="8636" />
       <source>Imports Diagram</source>
       <translation>Şemayı İçe Aktar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8639" />
+      <location filename="../QScintilla/Editor.py" line="8637" />
       <source>Include imports from external modules?</source>
       <translation>Harici modüllerdan içe aktarım dahil edilsin mi?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8658" />
+      <location filename="../QScintilla/Editor.py" line="8656" />
       <source>Application Diagram</source>
       <translation>Uygulama Şeması</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8659" />
+      <location filename="../QScintilla/Editor.py" line="8657" />
       <source>Include module names?</source>
       <translation>Modül isimleri dahil edilsin mi?</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="9028" />
+      <source>Add to dictionary</source>
+      <translation>Sözlüğe ekle</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="9030" />
-      <source>Add to dictionary</source>
-      <translation>Sözlüğe ekle</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="9032" />
       <source>Ignore All</source>
       <translation>Hepsini Yoksay</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9479" />
+      <location filename="../QScintilla/Editor.py" line="9477" />
       <source>Sort Lines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9480" />
+      <location filename="../QScintilla/Editor.py" line="9478" />
       <source>The selection contains illegal data for a numerical sort.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9573" />
+      <location filename="../QScintilla/Editor.py" line="9571" />
       <source>Register Mouse Click Handler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9574" />
+      <location filename="../QScintilla/Editor.py" line="9572" />
       <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9667" />
+      <location filename="../QScintilla/Editor.py" line="9665" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9673" />
+      <location filename="../QScintilla/Editor.py" line="9671" />
       <source>{0:4d}    {1}
     =&gt;  {2}</source>
       <comment>line number, source code, file name</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9742" />
+      <location filename="../QScintilla/Editor.py" line="9740" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9743" />
+      <location filename="../QScintilla/Editor.py" line="9741" />
       <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -18723,12 +18723,12 @@
   <context>
     <name>EricApplication</name>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="227" />
+      <location filename="../EricWidgets/EricApplication.py" line="226" />
       <source>Loading Style Sheet</source>
       <translation type="unfinished">Stil Görünümleri Yükleniyor</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="230" />
+      <location filename="../EricWidgets/EricApplication.py" line="229" />
       <source>&lt;p&gt;The Qt Style Sheet file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -18885,12 +18885,12 @@
   <context>
     <name>EricJsonServer</name>
     <message>
-      <location filename="../EricNetwork/EricJsonServer.py" line="185" />
+      <location filename="../EricNetwork/EricJsonServer.py" line="199" />
       <source>JSON Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricNetwork/EricJsonServer.py" line="186" />
+      <location filename="../EricNetwork/EricJsonServer.py" line="200" />
       <source>&lt;p&gt;The response received from the client could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -19361,39 +19361,39 @@
   <context>
     <name>EricPathPickerBase</name>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="178" />
-      <location filename="../EricWidgets/EricPathPicker.py" line="107" />
-      <location filename="../EricWidgets/EricPathPicker.py" line="100" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="177" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="106" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="99" />
       <source>Enter Path Name</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="175" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="174" />
       <source>Enter Path Names separated by ';'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="520" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="519" />
       <source>Choose a file to open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="522" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="521" />
       <source>Choose files to open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="524" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="523" />
       <source>Choose files and directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="530" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="529" />
       <source>Choose a file to save</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="532" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="531" />
       <source>Choose a directory</source>
       <translation type="unfinished" />
     </message>
@@ -20175,12 +20175,12 @@
   <context>
     <name>EricTldExtractor</name>
     <message>
-      <location filename="../EricNetwork/EricTldExtractor.py" line="294" />
+      <location filename="../EricNetwork/EricTldExtractor.py" line="293" />
       <source>TLD Data File not found</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricNetwork/EricTldExtractor.py" line="295" />
+      <location filename="../EricNetwork/EricTldExtractor.py" line="294" />
       <source>&lt;p&gt;The file 'effective_tld_names.dat' was not found!&lt;br/&gt;You can download it from '&lt;a href="{0}"&gt;&lt;b&gt;here&lt;/b&gt;&lt;/a&gt;' to one of the following paths:&lt;/p&gt;&lt;ul&gt;{1}&lt;/ul&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -32132,77 +32132,77 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="573" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="575" />
       <source>Backward</source>
       <translation type="unfinished">Geriye Doğru</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="578" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="580" />
       <source>Forward</source>
       <translation type="unfinished">İleriye</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="583" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="585" />
       <source>Reload</source>
       <translation type="unfinished">Yeniden Yükle</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="595" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="597" />
       <source>Copy Page URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="601" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="603" />
       <source>Bookmark Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="609" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="611" />
       <source>Zoom in</source>
       <translation type="unfinished">Büyüt</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="614" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="616" />
       <source>Zoom out</source>
       <translation type="unfinished">Küçült</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="619" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="621" />
       <source>Zoom reset</source>
       <translation type="unfinished">Büyütmeyi sıfırla</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="625" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="627" />
       <source>Copy</source>
       <translation type="unfinished">Kopyala</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="631" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="633" />
       <source>Select All</source>
       <translation type="unfinished">Hepsini Seç</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="638" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="640" />
       <source>Close</source>
       <translation type="unfinished">Kapat</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="643" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="645" />
       <source>Close Others</source>
       <translation type="unfinished">Diğerlerini Kapat</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="661" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="663" />
       <source>Open Link in New Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="668" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="670" />
       <source>Open Link in Background Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="676" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="678" />
       <source>Copy URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
@@ -32210,184 +32210,184 @@
   <context>
     <name>HelpViewerWidget</name>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="126" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="127" />
       <source>Open a local file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="132" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="133" />
       <source>Select action from menu</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="148" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="149" />
       <source>Move one page backward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="153" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="154" />
       <source>Move one page forward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="165" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="166" />
       <source>Reload the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="176" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="177" />
       <source>Zoom in on the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="182" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="183" />
       <source>Zoom out on the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="189" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="190" />
       <source>Reset the zoom level of the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="201" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="202" />
       <source>Add a new empty page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="207" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="208" />
       <source>Close the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="218" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="219" />
       <source>Show or hide the search pane</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="294" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="295" />
       <source>Show list of open pages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="297" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="298" />
       <source>Show the table of contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="300" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="301" />
       <source>Show the help document index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="303" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="304" />
       <source>Show the help search window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="306" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="307" />
       <source>Show list of bookmarks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
-      <source>eric API Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="445" />
-      <source>Python 3 Documentation</source>
+      <source>eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="446" />
-      <source>Qt5 Documentation</source>
-      <translation type="unfinished">Qt4 Belgeleri {5 ?}</translation>
+      <source>Python 3 Documentation</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="447" />
-      <source>Qt6 Documentation</source>
-      <translation type="unfinished">Qt4 Belgeleri {6 ?}</translation>
+      <source>Qt5 Documentation</source>
+      <translation type="unfinished">Qt4 Belgeleri {5 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
-      <source>PyQt5 Documentation</source>
-      <translation type="unfinished">PyQt4 Belgeleri {5 ?}</translation>
+      <source>Qt6 Documentation</source>
+      <translation type="unfinished">Qt4 Belgeleri {6 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
-      <source>PyQt6 Documentation</source>
-      <translation type="unfinished">PyQt4 Belgeleri {6 ?}</translation>
+      <source>PyQt5 Documentation</source>
+      <translation type="unfinished">PyQt4 Belgeleri {5 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
+      <source>PyQt6 Documentation</source>
+      <translation type="unfinished">PyQt4 Belgeleri {6 ?}</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
+      <source>PySide2 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="452" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="508" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="509" />
       <source>Open HTML File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="510" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="511" />
       <source>HTML Files (*.htm *.html);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="697" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="698" />
       <source>Help Engine</source>
       <translation type="unfinished">Yardım Motoru</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="721" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="722" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished">Dökümanlara bakılıyor...</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="732" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="733" />
       <source>eric Help Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="757" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="758" />
       <source>Manage QtHelp Documents</source>
       <translation type="unfinished">OtHelp Dökümanlları Yönetimi</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="760" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="761" />
       <source>Reindex Documentation</source>
       <translation type="unfinished">Belgeyi Yeniden İindexle</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="765" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="766" />
       <source>Configure Help Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="858" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="838" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="859" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="839" />
       <source>Clear History</source>
       <translation type="unfinished">Geçmişi Sil</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="961" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="962" />
       <source>Updating search index</source>
       <translation type="unfinished">Arama index yenileniyor</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1019" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1020" />
       <source>Filtered by: </source>
       <translation type="unfinished">Süzülen: </translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1055" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1050" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1056" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1051" />
       <source>Unfiltered</source>
       <translation type="unfinished">Süzülmemiş</translation>
     </message>
@@ -41941,22 +41941,22 @@
   <context>
     <name>Histedit</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="76" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="75" />
       <source>Starting histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="104" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="102" />
       <source>Continue histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="131" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="129" />
       <source>Abort histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="159" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="157" />
       <source>Edit Plan</source>
       <translation type="unfinished" />
     </message>
@@ -50081,17 +50081,17 @@
   <context>
     <name>LogViewerPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="36" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="33" />
       <source>&lt;b&gt;Message Filters for Standard Output&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stdout.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="43" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="40" />
       <source>&lt;b&gt;Message Filters for Standard Error &lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stderr.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="50" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="47" />
       <source>&lt;b&gt;Message Filters for both&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stdout or stderr.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -51649,8 +51649,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="364" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="347" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="361" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="344" />
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.ui" line="0" />
       <source>Press to show the password</source>
@@ -51934,66 +51934,66 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="56" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="53" />
       <source>Automatic</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="55" />
+      <source>Light</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="58" />
-      <source>Light</source>
+      <source>Dark</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="61" />
-      <source>Dark</source>
+      <source>Blue Cerulean</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="64" />
-      <source>Blue Cerulean</source>
+      <source>Brown Sand</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="67" />
-      <source>Brown Sand</source>
+      <source>Blue NCS</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="70" />
-      <source>Blue NCS</source>
+      <source>High Contrast</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="73" />
-      <source>High Contrast</source>
+      <source>Blue Icy</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="76" />
-      <source>Blue Icy</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="79" />
       <source>Qt</source>
       <translation type="unfinished">Qt</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="90" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="88" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="85" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="82" />
+      <source>All Files (*)</source>
+      <translation type="unfinished">Tüm Dosyalar (*)</translation>
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="93" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="91" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="88" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="85" />
-      <source>All Files (*)</source>
-      <translation type="unfinished">Tüm Dosyalar (*)</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="96" />
       <source>open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="360" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="343" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="357" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="340" />
       <source>Press to hide the password</source>
       <translation type="unfinished" />
     </message>
@@ -58236,62 +58236,62 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="44" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="42" />
       <source>Enter requirements file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="47" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="45" />
       <source>Press to select the requirements file through a file selection dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="50" />
+      <source>Text Files (*.txt);;All Files (*)</source>
+      <translation type="unfinished">Metin Dosyaları (*.txt);;Tüm Dosyalar (*)</translation>
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="52" />
-      <source>Text Files (*.txt);;All Files (*)</source>
-      <translation type="unfinished">Metin Dosyaları (*.txt);;Tüm Dosyalar (*)</translation>
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="54" />
       <source>Enter 'pyproject.toml' file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="57" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="55" />
       <source>Press to select the 'pyproject.toml' file through a file selection dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="60" />
+      <source>TOML Files (*.toml);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="62" />
-      <source>TOML Files (*.toml);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="64" />
       <source>Enter package file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="67" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="65" />
       <source>Press to select the package file through a file selection dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="73" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="71" />
       <source>Python Wheel (*.whl);;Archive Files (*.tar.gz *.zip);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="80" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="78" />
       <source>Enter file name:</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="81" />
+      <source>Press to select a file through a file selection dialog.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="83" />
-      <source>Press to select a file through a file selection dialog.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="85" />
       <source>All Files (*)</source>
       <translation type="unfinished">Tüm Dosyalar (*)</translation>
     </message>
@@ -60721,18 +60721,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1901" />
+      <location filename="../Preferences/__init__.py" line="1907" />
       <source>Export Preferences</source>
       <translation>Seçenekleri Dışa Aktar</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1930" />
-      <location filename="../Preferences/__init__.py" line="1903" />
+      <location filename="../Preferences/__init__.py" line="1936" />
+      <location filename="../Preferences/__init__.py" line="1909" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1928" />
+      <location filename="../Preferences/__init__.py" line="1934" />
       <source>Import Preferences</source>
       <translation>Seçenekleri İçe Aktar</translation>
     </message>
@@ -62408,9 +62408,9 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6752" />
-      <location filename="../Project/Project.py" line="6723" />
-      <location filename="../Project/Project.py" line="6677" />
+      <location filename="../Project/Project.py" line="6746" />
+      <location filename="../Project/Project.py" line="6717" />
+      <location filename="../Project/Project.py" line="6671" />
       <location filename="../Project/Project.py" line="4820" />
       <source>Execute Make</source>
       <translation type="unfinished" />
@@ -62431,7 +62431,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6729" />
+      <location filename="../Project/Project.py" line="6723" />
       <location filename="../Project/Project.py" line="4839" />
       <source>Test for Changes</source>
       <translation type="unfinished" />
@@ -62966,37 +62966,37 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6678" />
+      <location filename="../Project/Project.py" line="6672" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6724" />
+      <location filename="../Project/Project.py" line="6718" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6732" />
+      <location filename="../Project/Project.py" line="6726" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6737" />
+      <location filename="../Project/Project.py" line="6731" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6753" />
+      <location filename="../Project/Project.py" line="6747" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7172" />
+      <location filename="../Project/Project.py" line="7166" />
       <source>Interpreter Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7173" />
+      <location filename="../Project/Project.py" line="7167" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation type="unfinished" />
     </message>
@@ -73858,7 +73858,7 @@
       <translation type="unfinished">Kaynağı Göster</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2178" />
+      <location filename="../QScintilla/Shell.py" line="2179" />
       <location filename="../QScintilla/Shell.py" line="1907" />
       <location filename="../QScintilla/Shell.py" line="1906" />
       <location filename="../QScintilla/Shell.py" line="401" />
@@ -73988,59 +73988,59 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2329" />
+      <location filename="../QScintilla/Shell.py" line="2330" />
       <source>Drop Error</source>
       <translation>Düşme hatası</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2330" />
+      <location filename="../QScintilla/Shell.py" line="2331" />
       <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="../QScintilla/Shell.py" line="2576" />
-      <location filename="../QScintilla/Shell.py" line="2562" />
-      <location filename="../QScintilla/Shell.py" line="2541" />
-      <source>Save Shell Contents</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="2543" />
-      <source>Text Files (*.txt);;All Files (*)</source>
-      <translation type="unfinished">Metin Dosyaları (*.txt);;Tüm Dosyalar (*)</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="2563" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-      <translation type="unfinished">&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halen mevcut. Üzerine yazılsın mı?&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Shell.py" line="2577" />
+      <location filename="../QScintilla/Shell.py" line="2563" />
+      <location filename="../QScintilla/Shell.py" line="2542" />
+      <source>Save Shell Contents</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2544" />
+      <source>Text Files (*.txt);;All Files (*)</source>
+      <translation type="unfinished">Metin Dosyaları (*.txt);;Tüm Dosyalar (*)</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2564" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halen mevcut. Üzerine yazılsın mı?&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2578" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Dosya &lt;b&gt;{0}&lt;/b&gt; kaydedilemiyor.&lt;/p&gt;&lt;p&gt;Sebep: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2591" />
+      <location filename="../QScintilla/Shell.py" line="2592" />
       <source>&lt;tr&gt;&lt;td&gt;%restart&lt;/td&gt;&lt;td&gt;Kill the shell and start a new one.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%clear&lt;/td&gt;&lt;td&gt;Clear the display of the shell window.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%start [environment]&lt;/td&gt;&lt;td&gt;Start a shell for a virtual environment with the given name. If no name is given, a default shell is started.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%envs&lt;br/&gt;%environments&lt;/td&gt;&lt;td&gt;Show a list of known virtual environment names.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%which&lt;/td&gt;&lt;td&gt;Show the name of the active virtual environment.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%hist [n]&lt;br/&gt;%history [n]&lt;/td&gt;&lt;td&gt;Show the most recent 'n' entries of the history. If 'n' is not given, show all entries.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%shist&lt;br/&gt;%shistory&lt;br/&gt;%select_history&lt;/td&gt;&lt;td&gt;Select a command from the history.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%chist&lt;br/&gt;%chistory&lt;br/&gt;%clear_history&lt;/td&gt;&lt;td&gt;Clear the current history after confirmation.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%help&lt;/td&gt;&lt;td&gt;Show this help text.&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2613" />
+      <location filename="../QScintilla/Shell.py" line="2614" />
       <source>&lt;tr&gt;&lt;td&gt;%quit&lt;br/&gt;%quit()&lt;br/&gt;%exit&lt;br/&gt;%exit()&lt;/td&gt;&lt;td&gt;Exit the application.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;These commands are available through the window menus as well.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2621" />
+      <location filename="../QScintilla/Shell.py" line="2622" />
       <source>&lt;/table&gt;&lt;p&gt;These commands are available through the context menu as well.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2628" />
-      <source>Shell Special Commands</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/Shell.py" line="2629" />
+      <source>Shell Special Commands</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2630" />
       <source>The shell supports these special commands:</source>
       <translation type="unfinished" />
     </message>
@@ -89627,2544 +89627,2564 @@
   <context>
     <name>UserInterface</name>
     <message>
-      <location filename="../UI/UserInterface.py" line="308" />
+      <location filename="../UI/UserInterface.py" line="314" />
       <source>Initializing Basic Services...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="343" />
+      <location filename="../UI/UserInterface.py" line="349" />
       <source>Initializing Plugin Manager...</source>
       <translation>Eklenti Yöneticisi Hazırlanıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="350" />
+      <location filename="../UI/UserInterface.py" line="356" />
       <source>Generating Main User Interface...</source>
       <translation>Ana Kullanıcı Arayüzü Üretiliyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="408" />
+      <location filename="../UI/UserInterface.py" line="414" />
       <source>Setting up signal/slot-connections...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="602" />
+      <location filename="../UI/UserInterface.py" line="607" />
       <source>Initializing Tools...</source>
       <translation>Araçlar Hazırlanıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="613" />
+      <location filename="../UI/UserInterface.py" line="618" />
       <source>Registering Objects...</source>
       <translation>Nesneler Kaydediliyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="647" />
+      <location filename="../UI/UserInterface.py" line="652" />
       <source>Initializing Actions...</source>
       <translation>İşlemler Hazırlanıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="649" />
+      <location filename="../UI/UserInterface.py" line="654" />
       <source>Initializing Menus...</source>
       <translation>Menüler Hazırlanıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="651" />
+      <location filename="../UI/UserInterface.py" line="656" />
       <source>Initializing Toolbars...</source>
       <translation>Araççubuğu Hazırlanıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="653" />
+      <location filename="../UI/UserInterface.py" line="658" />
       <source>Initializing Statusbar...</source>
       <translation>Durumçubuğu Hazırlanıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="680" />
+      <location filename="../UI/UserInterface.py" line="685" />
       <source>Initializing Single Application Server...</source>
       <translation>Tekli Uygulama Senveri Hazırlanıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="686" />
-      <source>Initializing Plugins...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="689" />
-      <source>Activating Plugins...</source>
-      <translation>Eklentiler Aktif oluyor...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="691" />
-      <source>Generating Plugins Toolbars...</source>
+      <source>Initializing Plugins...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="694" />
+      <source>Activating Plugins...</source>
+      <translation>Eklentiler Aktif oluyor...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="696" />
+      <source>Generating Plugins Toolbars...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="699" />
       <source>Cleaning Plugins Download Area...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="704" />
+      <location filename="../UI/UserInterface.py" line="709" />
       <source>Restoring Toolbarmanager...</source>
       <translation>Araççubuğu Yöneticisi Yeniden yapılandırılıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="712" />
+      <location filename="../UI/UserInterface.py" line="717" />
       <source>Setting View Profile...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="725" />
-      <source>Reading Tasks...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="730" />
-      <source>Reading Templates...</source>
+      <source>Reading Tasks...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="735" />
+      <source>Reading Templates...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="740" />
       <source>Starting Debugger...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2195" />
-      <location filename="../UI/UserInterface.py" line="1086" />
+      <location filename="../UI/UserInterface.py" line="2200" />
+      <location filename="../UI/UserInterface.py" line="1091" />
       <source>Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2241" />
-      <location filename="../UI/UserInterface.py" line="1096" />
+      <location filename="../UI/UserInterface.py" line="2246" />
+      <location filename="../UI/UserInterface.py" line="1101" />
       <source>Horizontal Toolbox</source>
       <translation>Yatay Araçkutusu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2218" />
-      <location filename="../UI/UserInterface.py" line="1107" />
+      <location filename="../UI/UserInterface.py" line="2223" />
+      <location filename="../UI/UserInterface.py" line="1112" />
       <source>Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2037" />
-      <location filename="../UI/UserInterface.py" line="1301" />
-      <location filename="../UI/UserInterface.py" line="1117" />
+      <location filename="../UI/UserInterface.py" line="2042" />
+      <location filename="../UI/UserInterface.py" line="1306" />
+      <location filename="../UI/UserInterface.py" line="1122" />
       <source>Multiproject-Viewer</source>
       <translation>Çokluproje-Görüntüleyici</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2015" />
-      <location filename="../UI/UserInterface.py" line="1307" />
-      <location filename="../UI/UserInterface.py" line="1123" />
+      <location filename="../UI/UserInterface.py" line="2020" />
+      <location filename="../UI/UserInterface.py" line="1312" />
+      <location filename="../UI/UserInterface.py" line="1128" />
       <source>Project-Viewer</source>
       <translation>Proje-Görüntüleyici</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2577" />
-      <location filename="../UI/UserInterface.py" line="2576" />
-      <location filename="../UI/UserInterface.py" line="1314" />
-      <location filename="../UI/UserInterface.py" line="1130" />
+      <location filename="../UI/UserInterface.py" line="2582" />
+      <location filename="../UI/UserInterface.py" line="2581" />
+      <location filename="../UI/UserInterface.py" line="1319" />
+      <location filename="../UI/UserInterface.py" line="1135" />
       <source>Find/Replace In Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2600" />
-      <location filename="../UI/UserInterface.py" line="2599" />
-      <location filename="../UI/UserInterface.py" line="1321" />
-      <location filename="../UI/UserInterface.py" line="1137" />
+      <location filename="../UI/UserInterface.py" line="2605" />
+      <location filename="../UI/UserInterface.py" line="2604" />
+      <location filename="../UI/UserInterface.py" line="1326" />
+      <location filename="../UI/UserInterface.py" line="1142" />
       <source>Find File</source>
       <translation type="unfinished">Dosya Bul</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1327" />
-      <location filename="../UI/UserInterface.py" line="1143" />
+      <location filename="../UI/UserInterface.py" line="1332" />
+      <location filename="../UI/UserInterface.py" line="1148" />
       <source>VCS Status</source>
       <translation type="unfinished">VCS Durumu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2170" />
-      <location filename="../UI/UserInterface.py" line="1334" />
-      <location filename="../UI/UserInterface.py" line="1150" />
+      <location filename="../UI/UserInterface.py" line="2175" />
+      <location filename="../UI/UserInterface.py" line="1339" />
+      <location filename="../UI/UserInterface.py" line="1155" />
       <source>Template-Viewer</source>
       <translation>Şablon-Gösterici</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2103" />
-      <location filename="../UI/UserInterface.py" line="1341" />
-      <location filename="../UI/UserInterface.py" line="1157" />
+      <location filename="../UI/UserInterface.py" line="2108" />
+      <location filename="../UI/UserInterface.py" line="1346" />
+      <location filename="../UI/UserInterface.py" line="1162" />
       <source>File-Browser</source>
       <translation>Dosya-Gözatıcısı</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1348" />
-      <location filename="../UI/UserInterface.py" line="1164" />
+      <location filename="../UI/UserInterface.py" line="1353" />
+      <location filename="../UI/UserInterface.py" line="1169" />
       <source>Symbols</source>
       <translation>Semboller</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2059" />
-      <location filename="../UI/UserInterface.py" line="1370" />
-      <location filename="../UI/UserInterface.py" line="1364" />
-      <location filename="../UI/UserInterface.py" line="1174" />
+      <location filename="../UI/UserInterface.py" line="2064" />
+      <location filename="../UI/UserInterface.py" line="1375" />
+      <location filename="../UI/UserInterface.py" line="1369" />
+      <location filename="../UI/UserInterface.py" line="1179" />
       <source>Debug-Viewer</source>
       <translation>Hata Ayıklama Göstericisi</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2431" />
-      <location filename="../UI/UserInterface.py" line="2430" />
-      <location filename="../UI/UserInterface.py" line="1377" />
-      <location filename="../UI/UserInterface.py" line="1181" />
+      <location filename="../UI/UserInterface.py" line="2436" />
+      <location filename="../UI/UserInterface.py" line="2435" />
+      <location filename="../UI/UserInterface.py" line="1382" />
+      <location filename="../UI/UserInterface.py" line="1186" />
       <source>Code Documentation Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2646" />
-      <location filename="../UI/UserInterface.py" line="2645" />
-      <location filename="../UI/UserInterface.py" line="1384" />
-      <location filename="../UI/UserInterface.py" line="1188" />
+      <location filename="../UI/UserInterface.py" line="2651" />
+      <location filename="../UI/UserInterface.py" line="2650" />
+      <location filename="../UI/UserInterface.py" line="1389" />
+      <location filename="../UI/UserInterface.py" line="1193" />
       <source>Help Viewer</source>
       <translation type="unfinished">Yardım</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3550" />
-      <location filename="../UI/UserInterface.py" line="2526" />
-      <location filename="../UI/UserInterface.py" line="2525" />
-      <location filename="../UI/UserInterface.py" line="1390" />
-      <location filename="../UI/UserInterface.py" line="1194" />
+      <location filename="../UI/UserInterface.py" line="3575" />
+      <location filename="../UI/UserInterface.py" line="2531" />
+      <location filename="../UI/UserInterface.py" line="2530" />
+      <location filename="../UI/UserInterface.py" line="1395" />
+      <location filename="../UI/UserInterface.py" line="1199" />
       <source>Plugin Repository</source>
       <translation>Eklenti Havuzu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2550" />
-      <location filename="../UI/UserInterface.py" line="2549" />
-      <location filename="../UI/UserInterface.py" line="1396" />
-      <location filename="../UI/UserInterface.py" line="1200" />
-      <source>Virtual Environments</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2458" />
-      <location filename="../UI/UserInterface.py" line="2457" />
+      <location filename="../UI/UserInterface.py" line="2555" />
+      <location filename="../UI/UserInterface.py" line="2554" />
       <location filename="../UI/UserInterface.py" line="1401" />
       <location filename="../UI/UserInterface.py" line="1205" />
+      <source>Virtual Environments</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2463" />
+      <location filename="../UI/UserInterface.py" line="2462" />
+      <location filename="../UI/UserInterface.py" line="1406" />
+      <location filename="../UI/UserInterface.py" line="1210" />
       <source>PyPI</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2480" />
-      <location filename="../UI/UserInterface.py" line="2479" />
-      <location filename="../UI/UserInterface.py" line="1408" />
-      <location filename="../UI/UserInterface.py" line="1210" />
+      <location filename="../UI/UserInterface.py" line="2485" />
+      <location filename="../UI/UserInterface.py" line="2484" />
+      <location filename="../UI/UserInterface.py" line="1413" />
+      <location filename="../UI/UserInterface.py" line="1215" />
       <source>Conda</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1415" />
-      <location filename="../UI/UserInterface.py" line="1217" />
+      <location filename="../UI/UserInterface.py" line="1420" />
+      <location filename="../UI/UserInterface.py" line="1222" />
       <source>Cooperation</source>
       <translation>İşbirliği</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2358" />
-      <location filename="../UI/UserInterface.py" line="1419" />
-      <location filename="../UI/UserInterface.py" line="1222" />
+      <location filename="../UI/UserInterface.py" line="2363" />
+      <location filename="../UI/UserInterface.py" line="1424" />
+      <location filename="../UI/UserInterface.py" line="1227" />
       <source>IRC</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2502" />
-      <location filename="../UI/UserInterface.py" line="2501" />
-      <location filename="../UI/UserInterface.py" line="1425" />
-      <location filename="../UI/UserInterface.py" line="1229" />
+      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="2506" />
+      <location filename="../UI/UserInterface.py" line="1430" />
+      <location filename="../UI/UserInterface.py" line="1234" />
       <source>MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2081" />
-      <location filename="../UI/UserInterface.py" line="1433" />
-      <location filename="../UI/UserInterface.py" line="1237" />
+      <location filename="../UI/UserInterface.py" line="2086" />
+      <location filename="../UI/UserInterface.py" line="1438" />
+      <location filename="../UI/UserInterface.py" line="1242" />
       <source>Shell</source>
       <translation>Kabuk</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2147" />
-      <location filename="../UI/UserInterface.py" line="1439" />
-      <location filename="../UI/UserInterface.py" line="1241" />
+      <location filename="../UI/UserInterface.py" line="2152" />
+      <location filename="../UI/UserInterface.py" line="1444" />
+      <location filename="../UI/UserInterface.py" line="1246" />
       <source>Task-Viewer</source>
       <translation>Görev-Gösterici</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2125" />
-      <location filename="../UI/UserInterface.py" line="1445" />
-      <location filename="../UI/UserInterface.py" line="1245" />
+      <location filename="../UI/UserInterface.py" line="2130" />
+      <location filename="../UI/UserInterface.py" line="1450" />
+      <location filename="../UI/UserInterface.py" line="1250" />
       <source>Log-Viewer</source>
       <translation>Kayıt-Gösterici</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1452" />
-      <location filename="../UI/UserInterface.py" line="1252" />
+      <location filename="../UI/UserInterface.py" line="1457" />
+      <location filename="../UI/UserInterface.py" line="1257" />
       <source>Numbers</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1827" />
+      <location filename="../UI/UserInterface.py" line="1832" />
       <source>{0} - Passive Mode</source>
       <translation>{0} - Pasif Mod</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1836" />
-      <location filename="../UI/UserInterface.py" line="1830" />
+      <location filename="../UI/UserInterface.py" line="1841" />
+      <location filename="../UI/UserInterface.py" line="1835" />
       <source>{0} - {1} - Passive Mode</source>
       <translation>{0} - {1} -Pasif Mod</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1842" />
+      <location filename="../UI/UserInterface.py" line="1847" />
       <source>{0} - {1} - {2} - Passive Mode</source>
       <translation>{0} - {1} - {2} - Pasif Mod</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1868" />
+      <location filename="../UI/UserInterface.py" line="1873" />
       <source>Quit</source>
       <translation>Çık</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1870" />
+      <location filename="../UI/UserInterface.py" line="1875" />
       <source>&amp;Quit</source>
       <translation>&amp;Çıkış</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1871" />
+      <location filename="../UI/UserInterface.py" line="1876" />
       <source>Ctrl+Q</source>
       <comment>File|Quit</comment>
       <translation>Ctrl+Q</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1876" />
+      <location filename="../UI/UserInterface.py" line="1881" />
       <source>Quit the IDE</source>
       <translation>IDE den Çık</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1878" />
+      <location filename="../UI/UserInterface.py" line="1883" />
       <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1892" />
-      <location filename="../UI/UserInterface.py" line="1890" />
+      <location filename="../UI/UserInterface.py" line="1897" />
+      <location filename="../UI/UserInterface.py" line="1895" />
       <source>Restart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1893" />
-      <source>Ctrl+Shift+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1898" />
+      <source>Ctrl+Shift+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1903" />
       <source>Restart the IDE</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1900" />
+      <location filename="../UI/UserInterface.py" line="1905" />
       <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1918" />
-      <location filename="../UI/UserInterface.py" line="1911" />
+      <location filename="../UI/UserInterface.py" line="1923" />
+      <location filename="../UI/UserInterface.py" line="1916" />
       <source>Save session</source>
       <translation>Oturumu kaydet</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1912" />
+      <location filename="../UI/UserInterface.py" line="1917" />
       <source>Save session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1920" />
+      <location filename="../UI/UserInterface.py" line="1925" />
       <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7729" />
-      <location filename="../UI/UserInterface.py" line="1937" />
-      <location filename="../UI/UserInterface.py" line="1930" />
+      <location filename="../UI/UserInterface.py" line="7767" />
+      <location filename="../UI/UserInterface.py" line="1942" />
+      <location filename="../UI/UserInterface.py" line="1935" />
       <source>Load session</source>
       <translation type="unfinished">Oturum yükleniyor</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1931" />
+      <location filename="../UI/UserInterface.py" line="1936" />
       <source>Load session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1939" />
+      <location filename="../UI/UserInterface.py" line="1944" />
       <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1949" />
+      <location filename="../UI/UserInterface.py" line="1954" />
       <source>New Window</source>
       <translation type="unfinished">Yeni Pencere</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1951" />
+      <location filename="../UI/UserInterface.py" line="1956" />
       <source>New &amp;Window</source>
       <translation type="unfinished">Yeni &amp;Pencere</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1952" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1957" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1962" />
       <source>Open a new eric instance</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1959" />
+      <location filename="../UI/UserInterface.py" line="1964" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1973" />
-      <location filename="../UI/UserInterface.py" line="1971" />
+      <location filename="../UI/UserInterface.py" line="1978" />
+      <location filename="../UI/UserInterface.py" line="1976" />
       <source>Edit Profile</source>
       <translation>Düzenleme Kesiti</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1980" />
+      <location filename="../UI/UserInterface.py" line="1985" />
       <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="1982" />
+      <location filename="../UI/UserInterface.py" line="1987" />
       <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1995" />
-      <location filename="../UI/UserInterface.py" line="1993" />
+      <location filename="../UI/UserInterface.py" line="2000" />
+      <location filename="../UI/UserInterface.py" line="1998" />
       <source>Debug Profile</source>
       <translation>Hata Ayıklama Kesiti</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2002" />
+      <location filename="../UI/UserInterface.py" line="2007" />
       <source>Activate the debug view profile</source>
       <translation>Debug görüntü kesitini aktif et</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2004" />
+      <location filename="../UI/UserInterface.py" line="2009" />
       <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2016" />
+      <location filename="../UI/UserInterface.py" line="2021" />
       <source>&amp;Project-Viewer</source>
       <translation>&amp;proje-Görüntüleyici</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2017" />
+      <location filename="../UI/UserInterface.py" line="2022" />
       <source>Alt+Shift+P</source>
       <translation>Alt+Shift+P</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2023" />
+      <location filename="../UI/UserInterface.py" line="2028" />
       <source>Switch the input focus to the Project-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2026" />
+      <location filename="../UI/UserInterface.py" line="2031" />
       <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2038" />
+      <location filename="../UI/UserInterface.py" line="2043" />
       <source>&amp;Multiproject-Viewer</source>
       <translation>Çokluproje-Görü&amp;ntüleyici</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2039" />
+      <location filename="../UI/UserInterface.py" line="2044" />
       <source>Alt+Shift+M</source>
       <translation>Alt+Shift+M</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2045" />
+      <location filename="../UI/UserInterface.py" line="2050" />
       <source>Switch the input focus to the Multiproject-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2048" />
+      <location filename="../UI/UserInterface.py" line="2053" />
       <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2060" />
+      <location filename="../UI/UserInterface.py" line="2065" />
       <source>&amp;Debug-Viewer</source>
       <translation>Ha&amp;ta Ayıklama-Göstericisi</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2061" />
+      <location filename="../UI/UserInterface.py" line="2066" />
       <source>Alt+Shift+D</source>
       <translation>Alt+Shift+D</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2067" />
+      <location filename="../UI/UserInterface.py" line="2072" />
       <source>Switch the input focus to the Debug-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2070" />
+      <location filename="../UI/UserInterface.py" line="2075" />
       <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2082" />
+      <location filename="../UI/UserInterface.py" line="2087" />
       <source>&amp;Shell</source>
       <translation>&amp;Kabuk</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2083" />
+      <location filename="../UI/UserInterface.py" line="2088" />
       <source>Alt+Shift+S</source>
       <translation>Alt+Shift+S</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2089" />
+      <location filename="../UI/UserInterface.py" line="2094" />
       <source>Switch the input focus to the Shell window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2092" />
+      <location filename="../UI/UserInterface.py" line="2097" />
       <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2104" />
+      <location filename="../UI/UserInterface.py" line="2109" />
       <source>&amp;File-Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2105" />
+      <location filename="../UI/UserInterface.py" line="2110" />
       <source>Alt+Shift+F</source>
       <translation>Alt+Shift+F</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2111" />
+      <location filename="../UI/UserInterface.py" line="2116" />
       <source>Switch the input focus to the File-Browser window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2114" />
+      <location filename="../UI/UserInterface.py" line="2119" />
       <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2126" />
+      <location filename="../UI/UserInterface.py" line="2131" />
       <source>Lo&amp;g-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2127" />
+      <location filename="../UI/UserInterface.py" line="2132" />
       <source>Alt+Shift+G</source>
       <translation>Alt+Shift+G</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2133" />
+      <location filename="../UI/UserInterface.py" line="2138" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2136" />
+      <location filename="../UI/UserInterface.py" line="2141" />
       <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2148" />
+      <location filename="../UI/UserInterface.py" line="2153" />
       <source>&amp;Task-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2149" />
+      <location filename="../UI/UserInterface.py" line="2154" />
       <source>Alt+Shift+T</source>
       <translation>Alt+Shift+T</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2155" />
+      <location filename="../UI/UserInterface.py" line="2160" />
       <source>Switch the input focus to the Task-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2158" />
+      <location filename="../UI/UserInterface.py" line="2163" />
       <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2171" />
+      <location filename="../UI/UserInterface.py" line="2176" />
       <source>Templ&amp;ate-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2172" />
+      <location filename="../UI/UserInterface.py" line="2177" />
       <source>Alt+Shift+A</source>
       <translation>Alt+Shift+A</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2178" />
+      <location filename="../UI/UserInterface.py" line="2183" />
       <source>Switch the input focus to the Template-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2181" />
+      <location filename="../UI/UserInterface.py" line="2186" />
       <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2196" />
+      <location filename="../UI/UserInterface.py" line="2201" />
       <source>&amp;Left Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2203" />
+      <location filename="../UI/UserInterface.py" line="2208" />
       <source>Toggle the Left Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2205" />
+      <location filename="../UI/UserInterface.py" line="2210" />
       <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2219" />
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&amp;Right Toolbox</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2226" />
+      <location filename="../UI/UserInterface.py" line="2231" />
       <source>Toggle the Right Toolbox window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2228" />
+      <location filename="../UI/UserInterface.py" line="2233" />
       <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2242" />
+      <location filename="../UI/UserInterface.py" line="2247" />
       <source>&amp;Horizontal Toolbox</source>
       <translation>Ya&amp;tay Araçkutusu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2249" />
+      <location filename="../UI/UserInterface.py" line="2254" />
       <source>Toggle the Horizontal Toolbox window</source>
       <translation>Yatay Araçkutusu penceresini açkapa</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2251" />
+      <location filename="../UI/UserInterface.py" line="2256" />
       <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2264" />
+      <location filename="../UI/UserInterface.py" line="2269" />
       <source>Left Sidebar</source>
       <translation>Sol Durumçubuğu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2265" />
+      <location filename="../UI/UserInterface.py" line="2270" />
       <source>&amp;Left Sidebar</source>
       <translation>So&amp;l Durumçubuğu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2272" />
+      <location filename="../UI/UserInterface.py" line="2277" />
       <source>Toggle the left sidebar window</source>
       <translation>Sol Durum çubuğu penceresini açkapa</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2274" />
+      <location filename="../UI/UserInterface.py" line="2279" />
       <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="2287" />
+      <location filename="../UI/UserInterface.py" line="2292" />
       <source>Right Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2288" />
+      <location filename="../UI/UserInterface.py" line="2293" />
       <source>&amp;Right Sidebar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2295" />
+      <location filename="../UI/UserInterface.py" line="2300" />
       <source>Toggle the right sidebar window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2297" />
+      <location filename="../UI/UserInterface.py" line="2302" />
       <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2310" />
+      <location filename="../UI/UserInterface.py" line="2315" />
       <source>Bottom Sidebar</source>
       <translation>Alt Durumçubuğu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2311" />
+      <location filename="../UI/UserInterface.py" line="2316" />
       <source>&amp;Bottom Sidebar</source>
       <translation>Alt Durumçu&amp;buğu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2318" />
+      <location filename="../UI/UserInterface.py" line="2323" />
       <source>Toggle the bottom sidebar window</source>
       <translation>Alt Durum çubuğu penceresini açkapa</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2320" />
+      <location filename="../UI/UserInterface.py" line="2325" />
       <source>&lt;b&gt;Toggle the bottom sidebar window&lt;/b&gt;&lt;p&gt;If the bottom sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2333" />
+      <location filename="../UI/UserInterface.py" line="2338" />
       <source>Cooperation-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2334" />
+      <location filename="../UI/UserInterface.py" line="2339" />
       <source>Co&amp;operation-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2335" />
+      <location filename="../UI/UserInterface.py" line="2340" />
       <source>Alt+Shift+O</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2341" />
+      <location filename="../UI/UserInterface.py" line="2346" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2344" />
+      <location filename="../UI/UserInterface.py" line="2349" />
       <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2359" />
+      <location filename="../UI/UserInterface.py" line="2364" />
       <source>&amp;IRC</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2360" />
+      <location filename="../UI/UserInterface.py" line="2365" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2366" />
+      <location filename="../UI/UserInterface.py" line="2371" />
       <source>Switch the input focus to the IRC window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2369" />
+      <location filename="../UI/UserInterface.py" line="2374" />
       <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2380" />
+      <location filename="../UI/UserInterface.py" line="2385" />
       <source>Symbols-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2381" />
+      <location filename="../UI/UserInterface.py" line="2386" />
       <source>S&amp;ymbols-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2382" />
+      <location filename="../UI/UserInterface.py" line="2387" />
       <source>Alt+Shift+Y</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2388" />
+      <location filename="../UI/UserInterface.py" line="2393" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2391" />
+      <location filename="../UI/UserInterface.py" line="2396" />
       <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2405" />
+      <location filename="../UI/UserInterface.py" line="2410" />
       <source>Numbers-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2406" />
+      <location filename="../UI/UserInterface.py" line="2411" />
       <source>Num&amp;bers-Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2407" />
+      <location filename="../UI/UserInterface.py" line="2412" />
       <source>Alt+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2413" />
+      <location filename="../UI/UserInterface.py" line="2418" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2416" />
+      <location filename="../UI/UserInterface.py" line="2421" />
       <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2432" />
+      <location filename="../UI/UserInterface.py" line="2437" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2438" />
-      <source>Switch the input focus to the Code Documentation Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2443" />
+      <source>Switch the input focus to the Code Documentation Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2448" />
       <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2459" />
+      <location filename="../UI/UserInterface.py" line="2464" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2465" />
+      <location filename="../UI/UserInterface.py" line="2470" />
       <source>Switch the input focus to the PyPI window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2468" />
+      <location filename="../UI/UserInterface.py" line="2473" />
       <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2481" />
+      <location filename="../UI/UserInterface.py" line="2486" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2487" />
+      <location filename="../UI/UserInterface.py" line="2492" />
       <source>Switch the input focus to the Conda window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2490" />
+      <location filename="../UI/UserInterface.py" line="2495" />
       <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2503" />
+      <location filename="../UI/UserInterface.py" line="2508" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2509" />
+      <location filename="../UI/UserInterface.py" line="2514" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2512" />
+      <location filename="../UI/UserInterface.py" line="2517" />
       <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2527" />
+      <location filename="../UI/UserInterface.py" line="2532" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2533" />
+      <location filename="../UI/UserInterface.py" line="2538" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2536" />
+      <location filename="../UI/UserInterface.py" line="2541" />
       <source>&lt;b&gt;Plugin Repository&lt;/b&gt;&lt;p&gt;This switches the input focus to the Plugin Repository window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2551" />
+      <location filename="../UI/UserInterface.py" line="2556" />
       <source>Ctrl+Alt+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2557" />
-      <source>Switch the input focus to the Virtual Environments Manager window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2562" />
+      <source>Switch the input focus to the Virtual Environments Manager window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2567" />
       <source>&lt;b&gt;Virtual Environments&lt;/b&gt;&lt;p&gt;This switches the input focus to the Virtual Environments Manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2578" />
+      <location filename="../UI/UserInterface.py" line="2583" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2584" />
+      <location filename="../UI/UserInterface.py" line="2589" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2587" />
+      <location filename="../UI/UserInterface.py" line="2592" />
       <source>&lt;b&gt;Find/Replace In Files&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find/Replace In Files window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2601" />
+      <location filename="../UI/UserInterface.py" line="2606" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2607" />
+      <location filename="../UI/UserInterface.py" line="2612" />
       <source>Switch the input focus to the Find File window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2610" />
+      <location filename="../UI/UserInterface.py" line="2615" />
       <source>&lt;b&gt;Find File&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find File window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2624" />
-      <location filename="../UI/UserInterface.py" line="2623" />
+      <location filename="../UI/UserInterface.py" line="2629" />
+      <location filename="../UI/UserInterface.py" line="2628" />
       <source>VCS Status List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2625" />
+      <location filename="../UI/UserInterface.py" line="2630" />
       <source>Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2631" />
+      <location filename="../UI/UserInterface.py" line="2636" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2634" />
+      <location filename="../UI/UserInterface.py" line="2639" />
       <source>&lt;b&gt;VCS Status List&lt;/b&gt;&lt;p&gt;This switches the input focus to the VCS Status List window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2647" />
+      <location filename="../UI/UserInterface.py" line="2652" />
       <source>Alt+Shift+H</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2653" />
+      <location filename="../UI/UserInterface.py" line="2658" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2656" />
+      <location filename="../UI/UserInterface.py" line="2661" />
       <source>&lt;b&gt;Help Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2669" />
+      <location filename="../UI/UserInterface.py" line="2674" />
       <source>What's This?</source>
       <translation>Bu nedir?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2671" />
+      <location filename="../UI/UserInterface.py" line="2676" />
       <source>&amp;What's This?</source>
       <translation>Bu &amp;Nedir?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2672" />
-      <source>Shift+F1</source>
-      <translation>Shift+F1</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2677" />
+      <source>Shift+F1</source>
+      <translation>Shift+F1</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2682" />
       <source>Context sensitive help</source>
       <translation>Duyarlı yardım</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2679" />
+      <location filename="../UI/UserInterface.py" line="2684" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Duyarlı yardım içeriğini görüntüle&lt;/b&gt;&lt;p&gt;Bu Nedir? modunda, Fare imleci soru işeretiyle beraber bir ok şeklindedir ve bir arayüz elemanı üzerinde tıklarsanız bu elemanın nasıl kullanılacağı ve hakkında kısa bilgi verir. bu özellik diyaloglarda başlık çubuğu üzerindeyken çıkarılan açılır menülerde de bulunmaktadır.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2692" />
+      <location filename="../UI/UserInterface.py" line="2697" />
       <source>Helpviewer</source>
       <translation>Yardımgösterici</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2694" />
+      <location filename="../UI/UserInterface.py" line="2699" />
       <source>&amp;Helpviewer...</source>
       <translation>&amp;Yardım Gösterici...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2695" />
-      <source>F1</source>
-      <translation>F1</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2700" />
+      <source>F1</source>
+      <translation>F1</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2705" />
       <source>Open the helpviewer window</source>
       <translation>Yardımgösterici penceresini aç</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2702" />
+      <location filename="../UI/UserInterface.py" line="2707" />
       <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2722" />
+      <location filename="../UI/UserInterface.py" line="2727" />
       <source>Show Versions</source>
       <translation>Sürümü Göster</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2723" />
+      <location filename="../UI/UserInterface.py" line="2728" />
       <source>Show &amp;Versions</source>
       <translation>Sürümü G&amp;öster</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2729" />
+      <location filename="../UI/UserInterface.py" line="2734" />
       <source>Display version information</source>
       <translation>Sürüm bilgisini görüntüle</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2731" />
+      <location filename="../UI/UserInterface.py" line="2736" />
       <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="2744" />
-      <location filename="../UI/UserInterface.py" line="2737" />
+      <location filename="../UI/UserInterface.py" line="2742" />
+      <source>Copy Versions</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2743" />
+      <source>&amp;Copy Versions</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2750" />
+      <source>Copy version information to the clipboard</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2753" />
+      <source>&lt;b&gt;Copy Versions&lt;/b&gt;&lt;p&gt;This generates version information and copies it to the clipboard.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2769" />
+      <location filename="../UI/UserInterface.py" line="2762" />
       <source>Show Error Log</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2738" />
+      <location filename="../UI/UserInterface.py" line="2763" />
       <source>Show Error &amp;Log...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2746" />
+      <location filename="../UI/UserInterface.py" line="2771" />
       <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2755" />
+      <location filename="../UI/UserInterface.py" line="2780" />
       <source>Show Install Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2756" />
+      <location filename="../UI/UserInterface.py" line="2781" />
       <source>Show Install &amp;Info...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2762" />
+      <location filename="../UI/UserInterface.py" line="2787" />
       <source>Show Installation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2764" />
+      <location filename="../UI/UserInterface.py" line="2789" />
       <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4634" />
-      <location filename="../UI/UserInterface.py" line="2774" />
+      <location filename="../UI/UserInterface.py" line="4672" />
+      <location filename="../UI/UserInterface.py" line="2799" />
       <source>Report Bug</source>
       <translation>Hata Raporu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2774" />
+      <location filename="../UI/UserInterface.py" line="2799" />
       <source>Report &amp;Bug...</source>
       <translation>Hata &amp;Raporu...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2776" />
+      <location filename="../UI/UserInterface.py" line="2801" />
       <source>Report a bug</source>
       <translation>Bir hata rapor et</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2778" />
+      <location filename="../UI/UserInterface.py" line="2803" />
       <source>&lt;b&gt;Report Bug...&lt;/b&gt;&lt;p&gt;Opens a dialog to report a bug.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2784" />
+      <location filename="../UI/UserInterface.py" line="2809" />
       <source>Request Feature</source>
       <translation>İhtiyaç Duyulan Özellikler</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2785" />
+      <location filename="../UI/UserInterface.py" line="2810" />
       <source>Request &amp;Feature...</source>
       <translation>İhtiyaç Duyulan Özellikler &amp;F...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2791" />
+      <location filename="../UI/UserInterface.py" line="2816" />
       <source>Send a feature request</source>
       <translation>ihtiyaç duyuulan bir özelliği gönder</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2818" />
       <source>&lt;b&gt;Request Feature...&lt;/b&gt;&lt;p&gt;Opens a dialog to send a feature request.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4094" />
-      <location filename="../UI/UserInterface.py" line="2804" />
+      <location filename="../UI/UserInterface.py" line="4120" />
+      <location filename="../UI/UserInterface.py" line="2829" />
       <source>Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2806" />
+      <location filename="../UI/UserInterface.py" line="2831" />
       <source>&amp;Testing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2812" />
+      <location filename="../UI/UserInterface.py" line="2837" />
       <source>Start the testing dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2814" />
+      <location filename="../UI/UserInterface.py" line="2839" />
       <source>&lt;b&gt;Testing&lt;/b&gt;&lt;p&gt;Perform test runs. The dialog gives the ability to select and run a test suite or auto discover them.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2825" />
+      <location filename="../UI/UserInterface.py" line="2850" />
       <source>Restart Last Test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2827" />
+      <location filename="../UI/UserInterface.py" line="2852" />
       <source>&amp;Restart Last Test...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2833" />
+      <location filename="../UI/UserInterface.py" line="2858" />
       <source>Restarts the last test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2835" />
+      <location filename="../UI/UserInterface.py" line="2860" />
       <source>&lt;b&gt;Restart Last Test&lt;/b&gt;&lt;p&gt;Restarts the test performed last.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2845" />
+      <location filename="../UI/UserInterface.py" line="2870" />
       <source>Rerun Failed Tests</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2847" />
+      <location filename="../UI/UserInterface.py" line="2872" />
       <source>Rerun Failed Tests...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2854" />
+      <location filename="../UI/UserInterface.py" line="2879" />
       <source>Rerun failed tests of the last run</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2857" />
+      <location filename="../UI/UserInterface.py" line="2882" />
       <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last test run.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2867" />
-      <source>Test Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2869" />
-      <source>Test &amp;Script...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2875" />
-      <source>Run tests of the current script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2877" />
-      <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2884" />
-      <source>Test Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2886" />
-      <source>Test &amp;Project...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2892" />
-      <source>Run tests of the current project</source>
+      <source>Test Script</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2894" />
-      <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2903" />
-      <source>Qt-Designer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2905" />
-      <source>Qt-&amp;Designer...</source>
+      <source>Test &amp;Script...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2900" />
+      <source>Run tests of the current script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2902" />
+      <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2909" />
+      <source>Test Project</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2911" />
-      <source>Start Qt-Designer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2913" />
-      <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2922" />
-      <source>Qt-Linguist</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2924" />
-      <source>Qt-&amp;Linguist...</source>
+      <source>Test &amp;Project...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2917" />
+      <source>Run tests of the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2919" />
+      <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2928" />
+      <source>Qt-Designer</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2930" />
+      <source>Qt-&amp;Designer...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2936" />
+      <source>Start Qt-Designer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2938" />
+      <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2947" />
+      <source>Qt-Linguist</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2949" />
+      <source>Qt-&amp;Linguist...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2955" />
       <source>Start Qt-Linguist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2932" />
+      <location filename="../UI/UserInterface.py" line="2957" />
       <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2940" />
+      <location filename="../UI/UserInterface.py" line="2965" />
       <source>UI Previewer</source>
       <translation>UI Öngörünümü</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2942" />
+      <location filename="../UI/UserInterface.py" line="2967" />
       <source>&amp;UI Previewer...</source>
       <translation>&amp;UI Öngörünümü...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2948" />
+      <location filename="../UI/UserInterface.py" line="2973" />
       <source>Start the UI Previewer</source>
       <translation>UI Öngörünümünü Başlat</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2950" />
-      <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="2956" />
-      <source>Translations Previewer</source>
-      <translation>Çevirilerin Öngörünümleri</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2958" />
-      <source>&amp;Translations Previewer...</source>
-      <translation>Çevirilerin &amp;Öngörünümleri...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2964" />
-      <source>Start the Translations Previewer</source>
-      <translation>Çevirilerin Öngörünümlerini Başlat</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2966" />
-      <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="2975" />
+      <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="2981" />
+      <source>Translations Previewer</source>
+      <translation>Çevirilerin Öngörünümleri</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2983" />
+      <source>&amp;Translations Previewer...</source>
+      <translation>Çevirilerin &amp;Öngörünümleri...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2989" />
+      <source>Start the Translations Previewer</source>
+      <translation>Çevirilerin Öngörünümlerini Başlat</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2991" />
+      <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="3000" />
       <source>Compare Files</source>
       <translation>Dosyaları Karşılaştır</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
-      <source>&amp;Compare Files...</source>
-      <translation>D&amp;osyaları Karşılaştır...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3002" />
-      <location filename="../UI/UserInterface.py" line="2983" />
+      <source>&amp;Compare Files...</source>
+      <translation>D&amp;osyaları Karşılaştır...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3027" />
+      <location filename="../UI/UserInterface.py" line="3008" />
       <source>Compare two files</source>
       <translation>İki dosyayı karşılaştır</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2985" />
+      <location filename="../UI/UserInterface.py" line="3010" />
       <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="2994" />
+      <location filename="../UI/UserInterface.py" line="3019" />
       <source>Compare Files side by side</source>
       <translation>Dosyaları yan yana karşılaştır</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2996" />
+      <location filename="../UI/UserInterface.py" line="3021" />
       <source>Compare &amp;Files side by side...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3004" />
+      <location filename="../UI/UserInterface.py" line="3029" />
       <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="3014" />
+      <location filename="../UI/UserInterface.py" line="3039" />
       <source>SQL Browser</source>
       <translation>SQL Gözatıcısı</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3016" />
+      <location filename="../UI/UserInterface.py" line="3041" />
       <source>SQL &amp;Browser...</source>
       <translation>SQL &amp;Gözatıcısı...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3022" />
+      <location filename="../UI/UserInterface.py" line="3047" />
       <source>Browse a SQL database</source>
       <translation>Bir SQL veritabanına gözat</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3024" />
-      <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="3038" />
-      <location filename="../UI/UserInterface.py" line="3030" />
-      <source>Mini Editor</source>
-      <translation>Mini Düzenleyici</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3032" />
-      <source>Mini &amp;Editor...</source>
-      <translation>Mini &amp;Düzenleyici...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3040" />
-      <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="3049" />
-      <source>Hex Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3051" />
-      <source>&amp;Hex Editor...</source>
-      <translation type="unfinished" />
+      <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="3063" />
+      <location filename="../UI/UserInterface.py" line="3055" />
+      <source>Mini Editor</source>
+      <translation>Mini Düzenleyici</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3057" />
+      <source>Mini &amp;Editor...</source>
+      <translation>Mini &amp;Düzenleyici...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3065" />
+      <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="3074" />
+      <source>Hex Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3076" />
+      <source>&amp;Hex Editor...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3082" />
       <source>Start the eric Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3059" />
+      <location filename="../UI/UserInterface.py" line="3084" />
       <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3069" />
+      <location filename="../UI/UserInterface.py" line="3094" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3071" />
-      <source>eric &amp;Web Browser...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3077" />
-      <source>Start the eric Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3079" />
-      <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3088" />
-      <source>Icon Editor</source>
-      <translation>İkon Düzenleyici</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3090" />
-      <source>&amp;Icon Editor...</source>
-      <translation>&amp;İkon Düzenleyici...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3096" />
+      <source>eric &amp;Web Browser...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3102" />
+      <source>Start the eric Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3104" />
+      <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3113" />
+      <source>Icon Editor</source>
+      <translation>İkon Düzenleyici</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3115" />
+      <source>&amp;Icon Editor...</source>
+      <translation>&amp;İkon Düzenleyici...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3121" />
       <source>Start the eric Icon Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3098" />
+      <location filename="../UI/UserInterface.py" line="3123" />
       <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6494" />
-      <location filename="../UI/UserInterface.py" line="3110" />
+      <location filename="../UI/UserInterface.py" line="6532" />
+      <location filename="../UI/UserInterface.py" line="3135" />
       <source>Snapshot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3112" />
+      <location filename="../UI/UserInterface.py" line="3137" />
       <source>&amp;Snapshot...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3118" />
+      <location filename="../UI/UserInterface.py" line="3143" />
       <source>Take snapshots of a screen region</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3120" />
+      <location filename="../UI/UserInterface.py" line="3145" />
       <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3130" />
+      <location filename="../UI/UserInterface.py" line="3155" />
       <source>eric PDF Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3132" />
-      <source>eric PDF &amp;Viewer...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3138" />
-      <source>Start the eric PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3140" />
-      <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3149" />
-      <source>Preferences</source>
-      <translation>Seçenekler</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3151" />
-      <source>&amp;Preferences...</source>
-      <translation>&amp;Seçenekler...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3157" />
+      <source>eric PDF &amp;Viewer...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3163" />
+      <source>Start the eric PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3165" />
+      <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3174" />
+      <source>Preferences</source>
+      <translation>Seçenekler</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3176" />
+      <source>&amp;Preferences...</source>
+      <translation>&amp;Seçenekler...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3182" />
       <source>Set the prefered configuration</source>
       <translation>tercih edilen ayarları yapınız</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3159" />
+      <location filename="../UI/UserInterface.py" line="3184" />
       <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="3170" />
+      <location filename="../UI/UserInterface.py" line="3195" />
       <source>Export Preferences</source>
       <translation>Seçenekleri Dışa Aktar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3172" />
+      <location filename="../UI/UserInterface.py" line="3197" />
       <source>E&amp;xport Preferences...</source>
       <translation>Tercihleri Dı&amp;şa Aktar...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3178" />
+      <location filename="../UI/UserInterface.py" line="3203" />
       <source>Export the current configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3180" />
+      <location filename="../UI/UserInterface.py" line="3205" />
       <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3189" />
+      <location filename="../UI/UserInterface.py" line="3214" />
       <source>Import Preferences</source>
       <translation>Seçenekleri İçe Aktar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3191" />
+      <location filename="../UI/UserInterface.py" line="3216" />
       <source>I&amp;mport Preferences...</source>
       <translation>Tercihleri İ&amp;çeri Aktar...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3198" />
+      <location filename="../UI/UserInterface.py" line="3223" />
       <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="3201" />
+      <location filename="../UI/UserInterface.py" line="3226" />
       <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3210" />
+      <location filename="../UI/UserInterface.py" line="3235" />
       <source>Export Theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3212" />
-      <source>Export Theme...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3218" />
-      <source>Export the current theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3220" />
-      <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3229" />
-      <source>Import Theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3231" />
-      <source>Import Theme...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3237" />
+      <source>Export Theme...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3243" />
+      <source>Export the current theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3245" />
+      <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3254" />
+      <source>Import Theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3256" />
+      <source>Import Theme...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3262" />
       <source>Import a previously exported theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
+      <location filename="../UI/UserInterface.py" line="3264" />
       <source>&lt;b&gt;Import Theme&lt;/b&gt;&lt;p&gt;Import a previously exported theme.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3248" />
+      <location filename="../UI/UserInterface.py" line="3273" />
       <source>Reload APIs</source>
       <translation>API'leri yeniden yükle</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3248" />
+      <location filename="../UI/UserInterface.py" line="3273" />
       <source>Reload &amp;APIs</source>
       <translation>&amp;API'leri yeniden yükle</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3250" />
+      <location filename="../UI/UserInterface.py" line="3275" />
       <source>Reload the API information</source>
       <translation>API bilgisini yeniden yükle</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3252" />
+      <location filename="../UI/UserInterface.py" line="3277" />
       <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3266" />
-      <location filename="../UI/UserInterface.py" line="3258" />
+      <location filename="../UI/UserInterface.py" line="3291" />
+      <location filename="../UI/UserInterface.py" line="3283" />
       <source>Show external tools</source>
       <translation>Harici araçları göster</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3260" />
+      <location filename="../UI/UserInterface.py" line="3285" />
       <source>Show external &amp;tools</source>
       <translation>Karak&amp;ter tablosunu göster</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3268" />
+      <location filename="../UI/UserInterface.py" line="3293" />
       <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3278" />
+      <location filename="../UI/UserInterface.py" line="3303" />
       <source>View Profiles</source>
       <translation>Görünüm Kesiti</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3280" />
+      <location filename="../UI/UserInterface.py" line="3305" />
       <source>&amp;View Profiles...</source>
       <translation>&amp;Görünüm Kesiti...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3286" />
+      <location filename="../UI/UserInterface.py" line="3311" />
       <source>Configure view profiles</source>
       <translation>Görünüm kesitlerini ayarla</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3288" />
+      <location filename="../UI/UserInterface.py" line="3313" />
       <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3299" />
+      <location filename="../UI/UserInterface.py" line="3324" />
       <source>Toolbars</source>
       <translation>Araççubuğu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3301" />
+      <location filename="../UI/UserInterface.py" line="3326" />
       <source>Tool&amp;bars...</source>
       <translation>Araççu&amp;buğu...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3307" />
+      <location filename="../UI/UserInterface.py" line="3332" />
       <source>Configure toolbars</source>
       <translation>Araççubuğunu ayarla</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
+      <location filename="../UI/UserInterface.py" line="3334" />
       <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3320" />
+      <location filename="../UI/UserInterface.py" line="3345" />
       <source>Keyboard Shortcuts</source>
       <translation>Klavye Kısayolları</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3322" />
+      <location filename="../UI/UserInterface.py" line="3347" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation>Klavye Kı&amp;sayolları...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3328" />
+      <location filename="../UI/UserInterface.py" line="3353" />
       <source>Set the keyboard shortcuts</source>
       <translation>Klavye kısayollarını ayarla</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3330" />
+      <location filename="../UI/UserInterface.py" line="3355" />
       <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7453" />
-      <location filename="../UI/UserInterface.py" line="7434" />
-      <location filename="../UI/UserInterface.py" line="3340" />
+      <location filename="../UI/UserInterface.py" line="7491" />
+      <location filename="../UI/UserInterface.py" line="7472" />
+      <location filename="../UI/UserInterface.py" line="3365" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Kılavye Kısa Yollarını Dışa Aktar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3342" />
-      <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="3348" />
-      <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="3350" />
-      <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="7472" />
-      <location filename="../UI/UserInterface.py" line="3359" />
-      <source>Import Keyboard Shortcuts</source>
-      <translation>Klavye kısayollarını İçe Aktar</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3361" />
-      <source>&amp;Import Keyboard Shortcuts...</source>
-      <translation>Klavye K&amp;ısayollarını İçe Aktar...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3367" />
+      <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="3373" />
+      <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="3375" />
+      <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="7510" />
+      <location filename="../UI/UserInterface.py" line="3384" />
+      <source>Import Keyboard Shortcuts</source>
+      <translation>Klavye kısayollarını İçe Aktar</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3386" />
+      <source>&amp;Import Keyboard Shortcuts...</source>
+      <translation>Klavye K&amp;ısayollarını İçe Aktar...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3392" />
       <source>Import the keyboard shortcuts</source>
       <translation>Klavye kısayolları içeri aktarılıyor</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3369" />
+      <location filename="../UI/UserInterface.py" line="3394" />
       <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3379" />
+      <location filename="../UI/UserInterface.py" line="3404" />
       <source>Manage SSL Certificates</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3381" />
+      <location filename="../UI/UserInterface.py" line="3406" />
       <source>Manage SSL Certificates...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3388" />
-      <source>Manage the saved SSL certificates</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3391" />
-      <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3401" />
-      <source>Edit Message Filters</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3403" />
-      <source>Edit Message Filters...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3410" />
-      <source>Edit the message filters used to suppress unwanted messages</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3413" />
-      <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3432" />
+      <source>Manage the saved SSL certificates</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3416" />
+      <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../UI/UserInterface.py" line="3426" />
-      <location filename="../UI/UserInterface.py" line="3424" />
-      <source>Clear private data</source>
-      <translation type="unfinished">Özel verileri temizle</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3434" />
-      <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3445" />
-      <location filename="../UI/UserInterface.py" line="3444" />
-      <source>Activate current editor</source>
-      <translation>Geçerli düzenleyiciyi aktif yap</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3446" />
-      <source>Alt+Shift+E</source>
-      <translation>Alt+Shift+E</translation>
+      <source>Edit Message Filters</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3428" />
+      <source>Edit Message Filters...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3435" />
+      <source>Edit the message filters used to suppress unwanted messages</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3438" />
+      <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3457" />
-      <location filename="../UI/UserInterface.py" line="3456" />
-      <source>Show next</source>
-      <translation>Sonrakini göster</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3458" />
-      <source>Ctrl+Alt+Tab</source>
-      <translation>Ctrl+Alt+Tab</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3469" />
-      <location filename="../UI/UserInterface.py" line="3468" />
-      <source>Show previous</source>
-      <translation>Öncekini göster</translation>
+      <location filename="../UI/UserInterface.py" line="3451" />
+      <location filename="../UI/UserInterface.py" line="3449" />
+      <source>Clear private data</source>
+      <translation type="unfinished">Özel verileri temizle</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3459" />
+      <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3470" />
-      <source>Shift+Ctrl+Alt+Tab</source>
-      <translation>Shift+Ctrl+Alt+Tab</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3481" />
-      <location filename="../UI/UserInterface.py" line="3480" />
-      <source>Switch between tabs</source>
-      <translation>Sekmeler arasında değiştir</translation>
+      <location filename="../UI/UserInterface.py" line="3469" />
+      <source>Activate current editor</source>
+      <translation>Geçerli düzenleyiciyi aktif yap</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3471" />
+      <source>Alt+Shift+E</source>
+      <translation>Alt+Shift+E</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3482" />
-      <source>Ctrl+1</source>
-      <translation>Ctrl+1</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3492" />
-      <source>Plugin Infos</source>
-      <translation>Eklenti Bilgisi</translation>
+      <location filename="../UI/UserInterface.py" line="3481" />
+      <source>Show next</source>
+      <translation>Sonrakini göster</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3483" />
+      <source>Ctrl+Alt+Tab</source>
+      <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3494" />
+      <location filename="../UI/UserInterface.py" line="3493" />
+      <source>Show previous</source>
+      <translation>Öncekini göster</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3495" />
+      <source>Shift+Ctrl+Alt+Tab</source>
+      <translation>Shift+Ctrl+Alt+Tab</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3506" />
+      <location filename="../UI/UserInterface.py" line="3505" />
+      <source>Switch between tabs</source>
+      <translation>Sekmeler arasında değiştir</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3507" />
+      <source>Ctrl+1</source>
+      <translation>Ctrl+1</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3517" />
+      <source>Plugin Infos</source>
+      <translation>Eklenti Bilgisi</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3519" />
       <source>&amp;Plugin Infos...</source>
       <translation>Eklenti Bil&amp;gisi...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3500" />
+      <location filename="../UI/UserInterface.py" line="3525" />
       <source>Show Plugin Infos</source>
       <translation>Eklenti Bilgisini Göster</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3502" />
+      <location filename="../UI/UserInterface.py" line="3527" />
       <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="3520" />
-      <location filename="../UI/UserInterface.py" line="3512" />
+      <location filename="../UI/UserInterface.py" line="3545" />
+      <location filename="../UI/UserInterface.py" line="3537" />
       <source>Install Plugins</source>
       <translation>Eklenti Kur</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3514" />
-      <source>&amp;Install Plugins...</source>
-      <translation>Ekle&amp;nti Kur...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3522" />
-      <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="3539" />
-      <location filename="../UI/UserInterface.py" line="3531" />
+      <source>&amp;Install Plugins...</source>
+      <translation>Ekle&amp;nti Kur...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3547" />
+      <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="3564" />
+      <location filename="../UI/UserInterface.py" line="3556" />
       <source>Uninstall Plugin</source>
       <translation>Eklenti Kaldır</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3533" />
-      <source>&amp;Uninstall Plugin...</source>
-      <translation>Ekle&amp;nti Kaldır...</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3541" />
-      <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="3552" />
-      <source>Plugin &amp;Repository...</source>
-      <translation>Eklenti Hav&amp;uzu...</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3558" />
+      <source>&amp;Uninstall Plugin...</source>
+      <translation>Ekle&amp;nti Kaldır...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3566" />
+      <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="3577" />
+      <source>Plugin &amp;Repository...</source>
+      <translation>Eklenti Hav&amp;uzu...</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3583" />
       <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="3560" />
+      <location filename="../UI/UserInterface.py" line="3585" />
       <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Eklenti Kaynak Havuzu...&lt;/b&gt;&lt;p&gt;Bu internette hazır olan eklentilerin listelendiği bir diyalog açar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3587" />
-      <location filename="../UI/UserInterface.py" line="3586" />
+      <location filename="../UI/UserInterface.py" line="3612" />
+      <location filename="../UI/UserInterface.py" line="3611" />
       <source>Qt5 Documentation</source>
       <translation type="unfinished">Qt4 Belgeleri {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3593" />
+      <location filename="../UI/UserInterface.py" line="3618" />
       <source>Open Qt5 Documentation</source>
       <translation type="unfinished">QT4 Belgelerini Aç {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3595" />
+      <location filename="../UI/UserInterface.py" line="3620" />
       <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3608" />
-      <location filename="../UI/UserInterface.py" line="3607" />
+      <location filename="../UI/UserInterface.py" line="3633" />
+      <location filename="../UI/UserInterface.py" line="3632" />
       <source>Qt6 Documentation</source>
       <translation type="unfinished">Qt4 Belgeleri {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3614" />
+      <location filename="../UI/UserInterface.py" line="3639" />
       <source>Open Qt6 Documentation</source>
       <translation type="unfinished">QT4 Belgelerini Aç {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3616" />
+      <location filename="../UI/UserInterface.py" line="3641" />
       <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3629" />
-      <location filename="../UI/UserInterface.py" line="3628" />
+      <location filename="../UI/UserInterface.py" line="3654" />
+      <location filename="../UI/UserInterface.py" line="3653" />
       <source>PyQt5 Documentation</source>
       <translation type="unfinished">PyQt4 Belgeleri {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3635" />
+      <location filename="../UI/UserInterface.py" line="3660" />
       <source>Open PyQt5 Documentation</source>
       <translation type="unfinished">PyQt4 Begelerini aç {5 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3637" />
+      <location filename="../UI/UserInterface.py" line="3662" />
       <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3650" />
-      <location filename="../UI/UserInterface.py" line="3649" />
+      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3674" />
       <source>PyQt6 Documentation</source>
       <translation type="unfinished">PyQt4 Belgeleri {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3656" />
+      <location filename="../UI/UserInterface.py" line="3681" />
       <source>Open PyQt6 Documentation</source>
       <translation type="unfinished">PyQt4 Begelerini aç {6 ?}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3658" />
+      <location filename="../UI/UserInterface.py" line="3683" />
       <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3676" />
-      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3701" />
+      <location filename="../UI/UserInterface.py" line="3700" />
       <source>Python 3 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3682" />
+      <location filename="../UI/UserInterface.py" line="3707" />
       <source>Open Python 3 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3684" />
-      <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3703" />
-      <location filename="../UI/UserInterface.py" line="3702" />
-      <source>eric API Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3709" />
+      <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3728" />
+      <location filename="../UI/UserInterface.py" line="3727" />
+      <source>eric API Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3734" />
       <source>Open eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3711" />
+      <location filename="../UI/UserInterface.py" line="3736" />
       <source>&lt;b&gt;eric API Documentation&lt;/b&gt;&lt;p&gt;Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3729" />
-      <location filename="../UI/UserInterface.py" line="3728" />
+      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3753" />
       <source>PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3735" />
+      <location filename="../UI/UserInterface.py" line="3760" />
       <source>Open PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3737" />
+      <location filename="../UI/UserInterface.py" line="3762" />
       <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3755" />
-      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3780" />
+      <location filename="../UI/UserInterface.py" line="3779" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3761" />
+      <location filename="../UI/UserInterface.py" line="3786" />
       <source>Open PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3763" />
+      <location filename="../UI/UserInterface.py" line="3788" />
       <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3865" />
+      <location filename="../UI/UserInterface.py" line="3890" />
       <source>E&amp;xtras</source>
       <translation>İla&amp;veler</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3875" />
+      <location filename="../UI/UserInterface.py" line="3900" />
       <source>Wi&amp;zards</source>
       <translation>Sihirba&amp;z</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3893" />
+      <location filename="../UI/UserInterface.py" line="3918" />
       <source>P&amp;lugins</source>
       <translation>Ek&amp;lentiler</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3902" />
+      <location filename="../UI/UserInterface.py" line="3927" />
       <source>Configure...</source>
       <translation>Ayarlanıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3911" />
+      <location filename="../UI/UserInterface.py" line="3936" />
       <source>&amp;Testing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3928" />
+      <location filename="../UI/UserInterface.py" line="3953" />
       <source>Select Tool Group</source>
       <translation>Araç Grubunu Seç</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3939" />
+      <location filename="../UI/UserInterface.py" line="3964" />
       <source>Se&amp;ttings</source>
       <translation>Ayar&amp;lar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3972" />
+      <location filename="../UI/UserInterface.py" line="3997" />
       <source>&amp;Window</source>
       <translation>&amp;Pencere</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3981" />
+      <location filename="../UI/UserInterface.py" line="4006" />
       <source>&amp;Windows</source>
       <translation type="unfinished">&amp;Pencereler</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3985" />
+      <location filename="../UI/UserInterface.py" line="4010" />
       <source>Central Park</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3989" />
+      <location filename="../UI/UserInterface.py" line="4014" />
       <source>Left Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4008" />
+      <location filename="../UI/UserInterface.py" line="4033" />
       <source>Right Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4027" />
+      <location filename="../UI/UserInterface.py" line="4052" />
       <source>Bottom Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4035" />
+      <location filename="../UI/UserInterface.py" line="4060" />
       <source>Plug-ins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4041" />
+      <location filename="../UI/UserInterface.py" line="4066" />
       <source>&amp;Toolbars</source>
       <translation>&amp;Araççubuğu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4054" />
+      <location filename="../UI/UserInterface.py" line="4079" />
       <source>&amp;Help</source>
       <translation>&amp;Yardım</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4109" />
-      <location filename="../UI/UserInterface.py" line="4093" />
+      <location filename="../UI/UserInterface.py" line="4135" />
+      <location filename="../UI/UserInterface.py" line="4119" />
       <source>Tools</source>
       <translation>Araçlar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4111" />
-      <location filename="../UI/UserInterface.py" line="4097" />
+      <location filename="../UI/UserInterface.py" line="4137" />
+      <location filename="../UI/UserInterface.py" line="4123" />
       <source>Settings</source>
       <translation>Ayarlar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6222" />
-      <location filename="../UI/UserInterface.py" line="4112" />
-      <location filename="../UI/UserInterface.py" line="4098" />
+      <location filename="../UI/UserInterface.py" line="6260" />
+      <location filename="../UI/UserInterface.py" line="4138" />
+      <location filename="../UI/UserInterface.py" line="4124" />
       <source>Help</source>
       <translation>Yardım</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4113" />
-      <location filename="../UI/UserInterface.py" line="4099" />
+      <location filename="../UI/UserInterface.py" line="4139" />
+      <location filename="../UI/UserInterface.py" line="4125" />
       <source>Profiles</source>
       <translation>Kesitler</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
-      <location filename="../UI/UserInterface.py" line="4100" />
+      <location filename="../UI/UserInterface.py" line="4140" />
+      <location filename="../UI/UserInterface.py" line="4126" />
       <source>Plugins</source>
       <translation>Eklentiler</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4110" />
+      <location filename="../UI/UserInterface.py" line="4136" />
       <source>Unittest</source>
       <translation>Birimtest</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4284" />
+      <location filename="../UI/UserInterface.py" line="4310" />
       <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4293" />
+      <location filename="../UI/UserInterface.py" line="4319" />
       <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4302" />
+      <location filename="../UI/UserInterface.py" line="4328" />
       <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4311" />
+      <location filename="../UI/UserInterface.py" line="4337" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4320" />
+      <location filename="../UI/UserInterface.py" line="4346" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4329" />
+      <location filename="../UI/UserInterface.py" line="4355" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4343" />
+      <location filename="../UI/UserInterface.py" line="4369" />
       <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4414" />
-      <location filename="../UI/UserInterface.py" line="4373" />
+      <location filename="../UI/UserInterface.py" line="4440" />
+      <location filename="../UI/UserInterface.py" line="4399" />
       <source>External Tools/{0}</source>
       <translation>Harici Araçlar/{0}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4522" />
+      <location filename="../UI/UserInterface.py" line="4548" />
       <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="4571" />
+      <location filename="../UI/UserInterface.py" line="4597" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Security)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4588" />
+      <location filename="../UI/UserInterface.py" line="4614" />
       <source>Desktop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4592" />
+      <location filename="../UI/UserInterface.py" line="4618" />
       <source>Session Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4595" />
+      <location filename="../UI/UserInterface.py" line="4621" />
       <source>&lt;/table&gt;</source>
       <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4635" />
+      <location filename="../UI/UserInterface.py" line="4673" />
       <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="4970" />
+      <location filename="../UI/UserInterface.py" line="5008" />
       <source>Restart application</source>
       <translation>Uygulmayı yeniden başlat</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4971" />
+      <location filename="../UI/UserInterface.py" line="5009" />
       <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="4995" />
+      <location filename="../UI/UserInterface.py" line="5033" />
       <source>Upgrade PyQt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4996" />
+      <location filename="../UI/UserInterface.py" line="5034" />
       <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5046" />
-      <location filename="../UI/UserInterface.py" line="5020" />
+      <location filename="../UI/UserInterface.py" line="5084" />
+      <location filename="../UI/UserInterface.py" line="5058" />
       <source>Upgrade Eric</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5021" />
+      <location filename="../UI/UserInterface.py" line="5059" />
       <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5047" />
+      <location filename="../UI/UserInterface.py" line="5085" />
       <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
  Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5105" />
+      <location filename="../UI/UserInterface.py" line="5143" />
       <source>&amp;Builtin Tools</source>
       <translation>Ya&amp;pılandırma Araçları</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5124" />
+      <location filename="../UI/UserInterface.py" line="5162" />
       <source>&amp;Plugin Tools</source>
       <translation>Eklen&amp;ti Araçları</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5127" />
+      <location filename="../UI/UserInterface.py" line="5165" />
       <source>&amp;User Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5153" />
+      <location filename="../UI/UserInterface.py" line="5191" />
       <source>Configure Tool Groups ...</source>
       <translation>Alet Grupları Ayarlanıyor...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5157" />
+      <location filename="../UI/UserInterface.py" line="5195" />
       <source>Configure current Tool Group ...</source>
       <translation>Geçerli alet grubunu ayarla...</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5196" />
-      <location filename="../UI/UserInterface.py" line="5176" />
+      <location filename="../UI/UserInterface.py" line="5234" />
+      <location filename="../UI/UserInterface.py" line="5214" />
       <source>No User Tools Configured</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5272" />
+      <location filename="../UI/UserInterface.py" line="5310" />
       <source>&amp;Show all</source>
       <translation>Hepsini Gö&amp;ster</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5274" />
+      <location filename="../UI/UserInterface.py" line="5312" />
       <source>&amp;Hide all</source>
       <translation>&amp;Hepsini gizle</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6359" />
-      <location filename="../UI/UserInterface.py" line="6348" />
-      <location filename="../UI/UserInterface.py" line="6300" />
-      <location filename="../UI/UserInterface.py" line="6290" />
-      <location filename="../UI/UserInterface.py" line="6121" />
-      <location filename="../UI/UserInterface.py" line="6111" />
-      <location filename="../UI/UserInterface.py" line="6053" />
-      <location filename="../UI/UserInterface.py" line="6043" />
+      <location filename="../UI/UserInterface.py" line="6397" />
+      <location filename="../UI/UserInterface.py" line="6386" />
+      <location filename="../UI/UserInterface.py" line="6338" />
+      <location filename="../UI/UserInterface.py" line="6328" />
+      <location filename="../UI/UserInterface.py" line="6159" />
+      <location filename="../UI/UserInterface.py" line="6149" />
+      <location filename="../UI/UserInterface.py" line="6091" />
+      <location filename="../UI/UserInterface.py" line="6081" />
       <source>Problem</source>
       <translation>Problem</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6360" />
-      <location filename="../UI/UserInterface.py" line="6349" />
-      <location filename="../UI/UserInterface.py" line="6301" />
-      <location filename="../UI/UserInterface.py" line="6291" />
-      <location filename="../UI/UserInterface.py" line="6122" />
-      <location filename="../UI/UserInterface.py" line="6112" />
-      <location filename="../UI/UserInterface.py" line="6054" />
-      <location filename="../UI/UserInterface.py" line="6044" />
+      <location filename="../UI/UserInterface.py" line="6398" />
+      <location filename="../UI/UserInterface.py" line="6387" />
+      <location filename="../UI/UserInterface.py" line="6339" />
+      <location filename="../UI/UserInterface.py" line="6329" />
+      <location filename="../UI/UserInterface.py" line="6160" />
+      <location filename="../UI/UserInterface.py" line="6150" />
+      <location filename="../UI/UserInterface.py" line="6092" />
+      <location filename="../UI/UserInterface.py" line="6082" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6603" />
-      <location filename="../UI/UserInterface.py" line="6514" />
-      <location filename="../UI/UserInterface.py" line="6395" />
-      <location filename="../UI/UserInterface.py" line="6372" />
-      <location filename="../UI/UserInterface.py" line="6313" />
-      <location filename="../UI/UserInterface.py" line="6260" />
-      <location filename="../UI/UserInterface.py" line="6238" />
-      <location filename="../UI/UserInterface.py" line="6197" />
-      <location filename="../UI/UserInterface.py" line="6188" />
-      <location filename="../UI/UserInterface.py" line="6153" />
-      <location filename="../UI/UserInterface.py" line="6144" />
-      <location filename="../UI/UserInterface.py" line="6085" />
-      <location filename="../UI/UserInterface.py" line="6076" />
+      <location filename="../UI/UserInterface.py" line="6641" />
+      <location filename="../UI/UserInterface.py" line="6552" />
+      <location filename="../UI/UserInterface.py" line="6433" />
+      <location filename="../UI/UserInterface.py" line="6410" />
+      <location filename="../UI/UserInterface.py" line="6351" />
+      <location filename="../UI/UserInterface.py" line="6298" />
+      <location filename="../UI/UserInterface.py" line="6276" />
+      <location filename="../UI/UserInterface.py" line="6235" />
+      <location filename="../UI/UserInterface.py" line="6226" />
+      <location filename="../UI/UserInterface.py" line="6191" />
+      <location filename="../UI/UserInterface.py" line="6182" />
+      <location filename="../UI/UserInterface.py" line="6123" />
+      <location filename="../UI/UserInterface.py" line="6114" />
       <source>Process Generation Error</source>
       <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6077" />
+      <location filename="../UI/UserInterface.py" line="6115" />
       <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6086" />
+      <location filename="../UI/UserInterface.py" line="6124" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6145" />
+      <location filename="../UI/UserInterface.py" line="6183" />
       <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6154" />
+      <location filename="../UI/UserInterface.py" line="6192" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6189" />
+      <location filename="../UI/UserInterface.py" line="6227" />
       <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6198" />
+      <location filename="../UI/UserInterface.py" line="6236" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6223" />
-      <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="6239" />
-      <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="6261" />
+      <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="6277" />
+      <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6299" />
       <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6314" />
+      <location filename="../UI/UserInterface.py" line="6352" />
       <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6373" />
+      <location filename="../UI/UserInterface.py" line="6411" />
       <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6396" />
+      <location filename="../UI/UserInterface.py" line="6434" />
       <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6495" />
+      <location filename="../UI/UserInterface.py" line="6533" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6515" />
+      <location filename="../UI/UserInterface.py" line="6553" />
       <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6548" />
-      <location filename="../UI/UserInterface.py" line="6538" />
-      <source>External Tools</source>
-      <translation>Harici Araçlar</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6539" />
-      <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6549" />
-      <source>No toolgroup entry '{0}' found.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="6586" />
+      <location filename="../UI/UserInterface.py" line="6576" />
+      <source>External Tools</source>
+      <translation>Harici Araçlar</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6577" />
+      <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6587" />
+      <source>No toolgroup entry '{0}' found.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6624" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6604" />
+      <location filename="../UI/UserInterface.py" line="6642" />
       <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6683" />
+      <location filename="../UI/UserInterface.py" line="6721" />
       <source>Process '{0}' has exited.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6970" />
-      <location filename="../UI/UserInterface.py" line="6908" />
-      <location filename="../UI/UserInterface.py" line="6864" />
-      <location filename="../UI/UserInterface.py" line="6790" />
-      <location filename="../UI/UserInterface.py" line="6726" />
+      <location filename="../UI/UserInterface.py" line="7008" />
+      <location filename="../UI/UserInterface.py" line="6946" />
+      <location filename="../UI/UserInterface.py" line="6902" />
+      <location filename="../UI/UserInterface.py" line="6828" />
+      <location filename="../UI/UserInterface.py" line="6764" />
       <source>Documentation Missing</source>
       <translation>Eksik Belgeleme</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6971" />
-      <location filename="../UI/UserInterface.py" line="6909" />
-      <location filename="../UI/UserInterface.py" line="6865" />
-      <location filename="../UI/UserInterface.py" line="6791" />
-      <location filename="../UI/UserInterface.py" line="6727" />
+      <location filename="../UI/UserInterface.py" line="7009" />
+      <location filename="../UI/UserInterface.py" line="6947" />
+      <location filename="../UI/UserInterface.py" line="6903" />
+      <location filename="../UI/UserInterface.py" line="6829" />
+      <location filename="../UI/UserInterface.py" line="6765" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6952" />
-      <location filename="../UI/UserInterface.py" line="6834" />
+      <location filename="../UI/UserInterface.py" line="6990" />
+      <location filename="../UI/UserInterface.py" line="6872" />
       <source>Documentation</source>
       <translation>Belgeleme</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6835" />
+      <location filename="../UI/UserInterface.py" line="6873" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6953" />
+      <location filename="../UI/UserInterface.py" line="6991" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7132" />
-      <location filename="../UI/UserInterface.py" line="7068" />
+      <location filename="../UI/UserInterface.py" line="7170" />
+      <location filename="../UI/UserInterface.py" line="7106" />
       <source>Start Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7069" />
+      <location filename="../UI/UserInterface.py" line="7107" />
       <source>The eric web browser could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7133" />
+      <location filename="../UI/UserInterface.py" line="7171" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7179" />
+      <location filename="../UI/UserInterface.py" line="7217" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7179" />
+      <location filename="../UI/UserInterface.py" line="7217" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7512" />
       <location filename="../UI/UserInterface.py" line="7474" />
-      <location filename="../UI/UserInterface.py" line="7436" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7454" />
+      <location filename="../UI/UserInterface.py" line="7492" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7682" />
+      <location filename="../UI/UserInterface.py" line="7720" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7683" />
+      <location filename="../UI/UserInterface.py" line="7721" />
       <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7706" />
+      <location filename="../UI/UserInterface.py" line="7744" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7731" />
-      <location filename="../UI/UserInterface.py" line="7708" />
+      <location filename="../UI/UserInterface.py" line="7769" />
+      <location filename="../UI/UserInterface.py" line="7746" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7776" />
+      <location filename="../UI/UserInterface.py" line="7814" />
       <source>Crash Session found!</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7777" />
+      <location filename="../UI/UserInterface.py" line="7815" />
       <source>A session file of a crashed session was found. Shall this session be restored?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8154" />
+      <location filename="../UI/UserInterface.py" line="8192" />
       <source>Drop Error</source>
       <translation>Düşme hatası</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8155" />
+      <location filename="../UI/UserInterface.py" line="8193" />
       <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="8341" />
+      <location filename="../UI/UserInterface.py" line="8379" />
       <source>Upgrade available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8342" />
+      <location filename="../UI/UserInterface.py" line="8380" />
       <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8387" />
+      <location filename="../UI/UserInterface.py" line="8425" />
       <source>First time usage</source>
       <translation>İlk kullanım</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8388" />
+      <location filename="../UI/UserInterface.py" line="8426" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8410" />
+      <location filename="../UI/UserInterface.py" line="8448" />
       <source>Select Workspace Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8575" />
+      <location filename="../UI/UserInterface.py" line="8616" />
       <source>Unsaved Data Detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8576" />
+      <location filename="../UI/UserInterface.py" line="8617" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -92601,40 +92621,40 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1055" />
+      <location filename="../Debugger/VariablesViewer.py" line="1056" />
       <source>Show Details...</source>
       <translation>Detayları Göster...</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1057" />
-      <source>Expand</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1058" />
-      <source>Collapse</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Debugger/VariablesViewer.py" line="1059" />
+      <source>Expand Subitems</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/VariablesViewer.py" line="1062" />
+      <source>Collapse Subitems</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/VariablesViewer.py" line="1064" />
       <source>Collapse All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1067" />
-      <location filename="../Debugger/VariablesViewer.py" line="1061" />
+      <location filename="../Debugger/VariablesViewer.py" line="1072" />
+      <location filename="../Debugger/VariablesViewer.py" line="1066" />
       <source>Refresh</source>
       <translation type="unfinished">Tazele</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1069" />
-      <location filename="../Debugger/VariablesViewer.py" line="1063" />
+      <location filename="../Debugger/VariablesViewer.py" line="1074" />
+      <location filename="../Debugger/VariablesViewer.py" line="1068" />
       <source>Configure...</source>
       <translation>Ayarlanıyor...</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1071" />
-      <location filename="../Debugger/VariablesViewer.py" line="1064" />
+      <location filename="../Debugger/VariablesViewer.py" line="1076" />
+      <location filename="../Debugger/VariablesViewer.py" line="1069" />
       <source>Variables Type Filter...</source>
       <translation type="unfinished" />
     </message>
@@ -97225,91 +97245,91 @@
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt;dosyasında kaydedilmemiş değişiklikler var.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5972" />
+      <location filename="../ViewManager/ViewManager.py" line="5969" />
       <source>Line: {0:5}</source>
       <translation>Satır: {0:5}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5978" />
+      <location filename="../ViewManager/ViewManager.py" line="5975" />
       <source>Pos: {0:5}</source>
       <translation>Pos: {0:5}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5998" />
+      <location filename="../ViewManager/ViewManager.py" line="5995" />
       <source>Language: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6007" />
+      <location filename="../ViewManager/ViewManager.py" line="6004" />
       <source>EOL Mode: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6503" />
-      <location filename="../ViewManager/ViewManager.py" line="6460" />
+      <location filename="../ViewManager/ViewManager.py" line="6500" />
+      <location filename="../ViewManager/ViewManager.py" line="6457" />
       <source>&amp;Clear</source>
       <translation>T&amp;emizle</translation>
     </message>
     <message>
+      <location filename="../ViewManager/ViewManager.py" line="6494" />
+      <source>&amp;Add</source>
+      <translation>&amp;Ekle</translation>
+    </message>
+    <message>
       <location filename="../ViewManager/ViewManager.py" line="6497" />
-      <source>&amp;Add</source>
-      <translation>&amp;Ekle</translation>
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="6500" />
       <source>&amp;Edit...</source>
       <translation>Düz&amp;en...</translation>
     </message>
     <message>
+      <location filename="../ViewManager/ViewManager.py" line="7567" />
+      <location filename="../ViewManager/ViewManager.py" line="7553" />
+      <location filename="../ViewManager/ViewManager.py" line="7521" />
+      <source>Edit Spelling Dictionary</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7524" />
+      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7540" />
+      <source>Editing {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7556" />
+      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../ViewManager/ViewManager.py" line="7570" />
-      <location filename="../ViewManager/ViewManager.py" line="7556" />
-      <location filename="../ViewManager/ViewManager.py" line="7524" />
-      <source>Edit Spelling Dictionary</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7527" />
-      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7543" />
-      <source>Editing {0}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7559" />
-      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7573" />
       <source>The spelling dictionary was saved successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6682" />
+      <location filename="../ViewManager/ViewManager.py" line="6679" />
       <source>Clear Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6683" />
+      <location filename="../ViewManager/ViewManager.py" line="6680" />
       <source>Do you really want to delete all text of the current editor?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="8103" />
-      <location filename="../ViewManager/ViewManager.py" line="8086" />
+      <location filename="../ViewManager/ViewManager.py" line="8100" />
+      <location filename="../ViewManager/ViewManager.py" line="8083" />
       <source>File System Watcher Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="8087" />
+      <location filename="../ViewManager/ViewManager.py" line="8084" />
       <source>&lt;p&gt;The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should &lt;ul&gt;&lt;li&gt;sudo nano /etc/sysctl.conf&lt;/li&gt;&lt;li&gt;add to the bottom "fs.inotify.max_user_instances = 1024"&lt;/li&gt;&lt;li&gt;save and close the editor&lt;/li&gt;&lt;li&gt;sudo sysctl -p&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Error Message: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="8104" />
+      <location filename="../ViewManager/ViewManager.py" line="8101" />
       <source>The file system watcher reported an error with code &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -99165,16 +99185,6 @@
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
-      <source>Select to delete all web databases</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
-      <source>Web &amp;Databases</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
       <source>Select to delete all remembered zoom settings</source>
       <translation type="unfinished" />
     </message>
@@ -99436,6 +99446,16 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
+      <source>Select to render all web contents using a dark theme.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
+      <source>Force Dark Mode</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
       <source>Startup</source>
       <translation type="unfinished">Başlanğıç</translation>
     </message>
@@ -100372,355 +100392,355 @@
   <context>
     <name>WebBrowserView</name>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="366" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="353" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="341" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="329" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="367" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="354" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="342" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="330" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="330" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="331" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası yok.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="367" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="342" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="368" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="343" />
       <source>&lt;p&gt;Could not start a viewer for file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt;dosyası için görüntüleyici çalışmıyor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="354" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="355" />
       <source>&lt;p&gt;Could not start an application for URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt; URL &lt;b&gt;{0}&lt;/b&gt;adresindeki uygulama başlatılamıyor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="608" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="609" />
       <source>Match {0} of {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="634" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="635" />
       <source>Inspect Element...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="666" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="667" />
       <source>No suggestions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="723" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="724" />
       <source>Open Link in New Tab	Ctrl+LMB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="728" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="729" />
       <source>Open Link in New Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="734" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="735" />
       <source>Open Link in New Private Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="741" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="742" />
       <source>Save Lin&amp;k</source>
       <translation type="unfinished">Bağlantıyı &amp;Kaydet</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="745" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="746" />
       <source>Bookmark this Link</source>
       <translation type="unfinished">Bu linki yerimine ekle</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="751" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="752" />
       <source>Copy URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="755" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="756" />
       <source>Send URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="764" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="765" />
       <source>Scan Link with VirusTotal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="782" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="783" />
       <source>Open Image in New Tab</source>
       <translation type="unfinished">Görüntüyü yeni sekmede aç</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="789" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="790" />
       <source>Save Image</source>
       <translation type="unfinished">Görüntüyü Kaydet</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="792" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="793" />
       <source>Copy Image to Clipboard</source>
       <translation type="unfinished">Görüntüyü Panoya kopyala</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="794" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="795" />
       <source>Copy Image URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="799" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="800" />
       <source>Send Image URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="818" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="810" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="819" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="811" />
       <source>Search image in {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="814" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="815" />
       <source>Search image with...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="825" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="826" />
       <source>Block Image</source>
       <translation type="unfinished">Görüntüleri Engelle</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="835" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="836" />
       <source>Scan Image with VirusTotal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="855" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="856" />
       <source>Play</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="861" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="862" />
       <source>Pause</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="867" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="868" />
       <source>Unmute</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="873" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="874" />
       <source>Mute</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="878" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="879" />
       <source>Copy Media URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="883" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="884" />
       <source>Send Media URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="889" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="890" />
       <source>Save Media</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="910" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="911" />
       <source>Send Text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="917" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="918" />
       <source>Search with '{0}'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="921" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="922" />
       <source>Search with...</source>
       <translation type="unfinished">Bununla Ara...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1078" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="947" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1079" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="948" />
       <source>Google Translate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="957" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="958" />
       <source>Dictionary</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="965" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="966" />
       <source>Go to web address</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="994" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="995" />
       <source>Add New Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="999" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1000" />
       <source>Configure Speed Dial</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1005" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1006" />
       <source>Reload All Dials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1009" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1010" />
       <source>Reset to Default Dials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1014" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1015" />
       <source>Bookmark this Page</source>
       <translation type="unfinished">Bu sayfayı yerimine ekle</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1018" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1019" />
       <source>Copy Page URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1023" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1024" />
       <source>Send Page URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1029" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1030" />
       <source>User Agent</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1057" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1058" />
       <source>Validate Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1120" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1121" />
       <source>Add to web search toolbar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1804" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1805" />
       <source>Empty Page</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="1869" />
       <location filename="../WebBrowser/WebBrowserView.py" line="1868" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="1867" />
       <source>Render Process terminated abnormally</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1873" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1874" />
       <source>The render process crashed while loading this page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1878" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1879" />
       <source>The render process was killed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1880" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1881" />
       <source>The render process terminated while loading this page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1884" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1885" />
       <source>Try reloading the page or closing some tabs to make more memory available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2012" />
-      <source>Web Archive (*.mhtml *.mht)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2013" />
-      <source>HTML File (*.html *.htm)</source>
+      <source>Web Archive (*.mhtml *.mht)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2014" />
+      <source>HTML File (*.html *.htm)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2015" />
       <source>HTML File with all resources (*.html *.htm)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2036" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2037" />
       <source>Save Web Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2428" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2429" />
       <source>eric7 {0} ({1})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2439" />
-      <source>Print Page</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2440" />
+      <source>Print Page</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2441" />
       <source>There is already a print job in progress. Printing is temporarily disabled until the current job is finished.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2555" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="2485" />
-      <source>Print to PDF</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2486" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2556" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2486" />
+      <source>Print to PDF</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2487" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2557" />
       <source>&lt;p&gt;The PDF file &lt;b&gt;{0}&lt;/b&gt; could not be generated.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2590" />
-      <source>Quota Request</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2591" />
+      <source>Quota Request</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2592" />
       <source>&lt;p&gt; Allow the website at &lt;b&gt;{0}&lt;/b&gt; to use &lt;b&gt;{1}&lt;/b&gt; of persistent storage?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2634" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2635" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Read&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2642" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2643" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Write&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2647" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2648" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Read and Write&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2654" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2655" />
       <source>File System Access Request</source>
       <translation type="unfinished" />
     </message>
@@ -100834,10 +100854,10 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4099" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3007" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2991" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2976" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4105" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3013" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2997" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2982" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="207" />
       <source>eric Web Browser</source>
       <translation type="unfinished" />
@@ -100848,2074 +100868,2074 @@
       <translation type="unfinished">İçerik</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1758" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1758" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1764" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1764" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="306" />
       <source>Index</source>
       <translation type="unfinished">Dizin</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1769" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1768" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1774" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="318" />
       <source>Search</source>
       <translation type="unfinished">Ara</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2115" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2114" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2121" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2120" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="325" />
       <source>JavaScript Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="737" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="743" />
       <source>New Tab</source>
       <translation type="unfinished">Yeni Sekme</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="739" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="745" />
       <source>&amp;New Tab</source>
       <translation type="unfinished">Ye&amp;ni Sekme</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="740" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="746" />
       <source>Ctrl+T</source>
       <comment>File|New Tab</comment>
       <translation type="unfinished">Ctrl+T</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="745" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="751" />
       <source>Open a new web browser tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="747" />
-      <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="753" />
+      <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="759" />
       <source>New Window</source>
       <translation type="unfinished">Yeni Pencere</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="755" />
-      <source>New &amp;Window</source>
-      <translation type="unfinished">Yeni &amp;Pencere</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="756" />
-      <source>Ctrl+N</source>
-      <comment>File|New Window</comment>
-      <translation type="unfinished">Ctrl+N</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="761" />
+      <source>New &amp;Window</source>
+      <translation type="unfinished">Yeni &amp;Pencere</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="762" />
+      <source>Ctrl+N</source>
+      <comment>File|New Window</comment>
+      <translation type="unfinished">Ctrl+N</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="767" />
       <source>Open a new web browser window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="763" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="769" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new web browser window in the current privacy mode.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2889" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="773" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2895" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="779" />
       <source>New Private Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="781" />
       <source>New &amp;Private Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="776" />
-      <source>Ctrl+Shift+P</source>
-      <comment>File|New Private Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="782" />
+      <source>Ctrl+Shift+P</source>
+      <comment>File|New Private Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="788" />
       <source>Open a new private web browser window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="785" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="791" />
       <source>&lt;b&gt;New Private Window&lt;/b&gt;&lt;p&gt;This opens a new private web browser window by starting a new web browser instance in private mode.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2927" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2904" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="795" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2933" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2910" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="801" />
       <source>Open File</source>
       <translation type="unfinished">Dosya Aç</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="797" />
-      <source>&amp;Open File</source>
-      <translation type="unfinished">D&amp;osya Aç</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="798" />
-      <source>Ctrl+O</source>
-      <comment>File|Open</comment>
-      <translation type="unfinished">Ctrl+O</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="803" />
+      <source>&amp;Open File</source>
+      <translation type="unfinished">D&amp;osya Aç</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="804" />
+      <source>Ctrl+O</source>
+      <comment>File|Open</comment>
+      <translation type="unfinished">Ctrl+O</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="809" />
       <source>Open a file for display</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="805" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="811" />
       <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new file for display. It pops up a file selection dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="815" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="821" />
       <source>Open File in New Tab</source>
       <translation type="unfinished">Yeni Sekmede Dosya Aç</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="817" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="823" />
       <source>Open File in New &amp;Tab</source>
       <translation type="unfinished">Yeni Sek&amp;mede Dosya Aç</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="818" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="824" />
       <source>Shift+Ctrl+O</source>
       <comment>File|Open in new tab</comment>
       <translation type="unfinished">Shift+Ctrl+O</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="823" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="829" />
       <source>Open a file for display in a new tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="825" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="831" />
       <source>&lt;b&gt;Open File in New Tab&lt;/b&gt;&lt;p&gt;This opens a new file for display in a new tab. It pops up a file selection dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="836" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="842" />
       <source>Save As</source>
       <translation type="unfinished">Farklı Kaydet</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="838" />
-      <source>&amp;Save As...</source>
-      <translation type="unfinished">Farklı K&amp;aydet...</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="839" />
-      <source>Shift+Ctrl+S</source>
-      <comment>File|Save As</comment>
-      <translation type="unfinished">Shift+Ctrl+S</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="844" />
+      <source>&amp;Save As...</source>
+      <translation type="unfinished">Farklı K&amp;aydet...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="845" />
+      <source>Shift+Ctrl+S</source>
+      <comment>File|Save As</comment>
+      <translation type="unfinished">Shift+Ctrl+S</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="850" />
       <source>Save the current page to disk</source>
       <translation type="unfinished">Geçerli sayfayı harddiske kaydet</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="846" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="852" />
       <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current page to disk.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Farklı Kaydet...&lt;/b&gt;&lt;p&gt;Geçerli sayfayı harddiske kaydet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="854" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="860" />
       <source>Save Page Screen</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="856" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="862" />
       <source>Save Page Screen...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="863" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="869" />
       <source>Save the visible part of the current page as a screen shot</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="866" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="872" />
       <source>&lt;b&gt;Save Page Screen...&lt;/b&gt;&lt;p&gt;Saves the visible part of the current page as a screen shot.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="877" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="883" />
       <source>Import Bookmarks</source>
       <translation type="unfinished">Yerimlerini İçeaktar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="878" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="884" />
       <source>&amp;Import Bookmarks...</source>
       <translation type="unfinished">Yerimlerini &amp;İçeaktar...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="885" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="891" />
       <source>Import bookmarks from other browsers</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="888" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="894" />
       <source>&lt;b&gt;Import Bookmarks&lt;/b&gt;&lt;p&gt;Import bookmarks from other browsers.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="897" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="903" />
       <source>Export Bookmarks</source>
       <translation type="unfinished">Yerimlerini Dışaaktar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="898" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="904" />
       <source>&amp;Export Bookmarks...</source>
       <translation type="unfinished">Y&amp;erimlerini Dışaaktar...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="905" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="911" />
       <source>Export the bookmarks into a file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="908" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="914" />
       <source>&lt;b&gt;Export Bookmarks&lt;/b&gt;&lt;p&gt;Export the bookmarks into a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2537" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="917" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2543" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="923" />
       <source>Print</source>
       <translation type="unfinished">Yazdır</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="919" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="925" />
       <source>&amp;Print</source>
       <translation type="unfinished">&amp;Yazdır</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="920" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="926" />
       <source>Ctrl+P</source>
       <comment>File|Print</comment>
       <translation type="unfinished">Ctrl+P</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="925" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="931" />
       <source>Print the displayed help</source>
       <translation type="unfinished">Görüntülenen yardımı yazdır</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="927" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="933" />
       <source>&lt;b&gt;Print&lt;/b&gt;&lt;p&gt;Print the displayed help text.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Yazdır&lt;/b&gt;&lt;p&gt;Görüntülenen yardım metnini yazdır.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="935" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="933" />
-      <source>Print as PDF</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="941" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="939" />
+      <source>Print as PDF</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="947" />
       <source>Print the displayed help as PDF</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="943" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="949" />
       <source>&lt;b&gt;Print as PDF&lt;/b&gt;&lt;p&gt;Print the displayed help text as a PDF file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="954" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="952" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="960" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="958" />
       <source>Print Preview</source>
       <translation type="unfinished">Baskı Öngörünümü</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="961" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="967" />
       <source>Print preview of the displayed help</source>
       <translation type="unfinished">İlk yardım sayfasına taşı</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="964" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="970" />
       <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the displayed help text.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Yazıcı Öngörünümü&lt;/b&gt;&lt;p&gt;Görüntülenen yardım metninin yazıcı öngörünümü.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="975" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="973" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="981" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="979" />
       <source>Send Page Link</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="982" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="988" />
       <source>Send the link of the current page via email</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="985" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="991" />
       <source>&lt;b&gt;Send Page Link&lt;/b&gt;&lt;p&gt;Send the link of the current page via email.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="994" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1000" />
       <source>Close</source>
       <translation type="unfinished">Kapat</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="996" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1002" />
       <source>&amp;Close</source>
       <translation type="unfinished">&amp;Kapat</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="997" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1003" />
       <source>Ctrl+W</source>
       <comment>File|Close</comment>
       <translation type="unfinished">Ctrl+W</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1002" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1008" />
       <source>Close the current help window</source>
       <translation type="unfinished">Geçerli yardım penceresini kapat</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1004" />
-      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1010" />
+      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1016" />
       <source>Close All</source>
       <translation type="unfinished">Hepsini Kapat</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1011" />
-      <source>Close &amp;All</source>
-      <translation type="unfinished">Hepsini K&amp;apat</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1017" />
+      <source>Close &amp;All</source>
+      <translation type="unfinished">Hepsini K&amp;apat</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1023" />
       <source>Close all help windows</source>
       <translation type="unfinished">Tüm yardım pencerelerini kapat</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1019" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1025" />
       <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all web browser windows except the first one.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1028" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1034" />
       <source>Quit</source>
       <translation type="unfinished">Çık</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3319" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1030" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3325" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1036" />
       <source>&amp;Quit</source>
       <translation type="unfinished">&amp;Çıkış</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1031" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1037" />
       <source>Ctrl+Q</source>
       <comment>File|Quit</comment>
       <translation type="unfinished">Ctrl+Q</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1036" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1042" />
       <source>Quit the eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1038" />
-      <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1044" />
+      <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1050" />
       <source>Backward</source>
       <translation type="unfinished">Geriye Doğru</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1046" />
-      <source>&amp;Backward</source>
-      <translation type="unfinished">Geriye &amp;Doğru</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1047" />
-      <source>Alt+Left</source>
-      <comment>Go|Backward</comment>
-      <translation type="unfinished">Alt+Left</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1052" />
+      <source>&amp;Backward</source>
+      <translation type="unfinished">Geriye &amp;Doğru</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1053" />
+      <source>Alt+Left</source>
+      <comment>Go|Backward</comment>
+      <translation type="unfinished">Alt+Left</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1058" />
       <source>Move one screen backward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1054" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1060" />
       <source>&lt;b&gt;Backward&lt;/b&gt;&lt;p&gt;Moves one screen backward. If none is available, this action is disabled.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1064" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1070" />
       <source>Forward</source>
       <translation type="unfinished">İleriye</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1066" />
-      <source>&amp;Forward</source>
-      <translation type="unfinished">İleri&amp;ye</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1067" />
-      <source>Alt+Right</source>
-      <comment>Go|Forward</comment>
-      <translation type="unfinished">Alt+Right</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1072" />
+      <source>&amp;Forward</source>
+      <translation type="unfinished">İleri&amp;ye</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1073" />
+      <source>Alt+Right</source>
+      <comment>Go|Forward</comment>
+      <translation type="unfinished">Alt+Right</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1078" />
       <source>Move one screen forward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1074" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1080" />
       <source>&lt;b&gt;Forward&lt;/b&gt;&lt;p&gt;Moves one screen forward. If none is available, this action is disabled.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1084" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1090" />
       <source>Home</source>
       <translation type="unfinished">Home</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1086" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1092" />
       <source>&amp;Home</source>
       <translation type="unfinished">&amp;Ev</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1087" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1093" />
       <source>Ctrl+Home</source>
       <comment>Go|Home</comment>
       <translation type="unfinished">Ctrl+Home</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1092" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1098" />
       <source>Move to the initial screen</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1094" />
-      <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1100" />
+      <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1106" />
       <source>Reload</source>
       <translation type="unfinished">Yeniden Yükle</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1102" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1108" />
       <source>&amp;Reload</source>
       <translation type="unfinished">&amp;Yeniden Yükle</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1103" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1109" />
       <source>Ctrl+R</source>
       <comment>Go|Reload</comment>
       <translation type="unfinished">Ctrl+R</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1104" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1110" />
       <source>F5</source>
       <comment>Go|Reload</comment>
       <translation type="unfinished">F5</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1108" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1114" />
       <source>Reload the current screen</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1110" />
-      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1116" />
+      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1122" />
       <source>Stop</source>
       <translation type="unfinished">Dur</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1118" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1124" />
       <source>&amp;Stop</source>
       <translation type="unfinished">D&amp;ur</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1119" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1125" />
       <source>Ctrl+.</source>
       <comment>Go|Stop</comment>
       <translation type="unfinished">Ctrl+.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1120" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1126" />
       <source>Esc</source>
       <comment>Go|Stop</comment>
       <translation type="unfinished">Esc</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1124" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1130" />
       <source>Stop loading</source>
       <translation type="unfinished">Yüklemeyi durdur</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1126" />
-      <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1132" />
+      <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1138" />
       <source>Copy</source>
       <translation type="unfinished">Kopyala</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1134" />
-      <source>&amp;Copy</source>
-      <translation type="unfinished">&amp;Kopyala</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1135" />
-      <source>Ctrl+C</source>
-      <comment>Edit|Copy</comment>
-      <translation type="unfinished">Ctrl+C</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1140" />
+      <source>&amp;Copy</source>
+      <translation type="unfinished">&amp;Kopyala</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1141" />
+      <source>Ctrl+C</source>
+      <comment>Edit|Copy</comment>
+      <translation type="unfinished">Ctrl+C</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1146" />
       <source>Copy the selected text</source>
       <translation type="unfinished">Seçilen metni kopyala</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1142" />
-      <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="../WebBrowser/WebBrowserWindow.py" line="1148" />
+      <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="../WebBrowser/WebBrowserWindow.py" line="1154" />
       <source>Cut</source>
       <translation type="unfinished">Kes</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1150" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1156" />
       <source>Cu&amp;t</source>
       <translation type="unfinished">Ke&amp;s</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1151" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1157" />
       <source>Ctrl+X</source>
       <comment>Edit|Cut</comment>
       <translation type="unfinished">Ctrl+X</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1156" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1162" />
       <source>Cut the selected text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1158" />
-      <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" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1164" />
+      <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" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1170" />
       <source>Paste</source>
       <translation type="unfinished">Yapıştır</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1166" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1172" />
       <source>&amp;Paste</source>
       <translation type="unfinished">Ya&amp;pıştır</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1167" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1173" />
       <source>Ctrl+V</source>
       <comment>Edit|Paste</comment>
       <translation type="unfinished">Ctrl+V</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1172" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1178" />
       <source>Paste text from the clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1174" />
-      <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1180" />
+      <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1186" />
       <source>Undo</source>
       <translation type="unfinished">Geri Al</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1182" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1188" />
       <source>&amp;Undo</source>
       <translation type="unfinished">&amp;Geri al</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1183" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1189" />
       <source>Ctrl+Z</source>
       <comment>Edit|Undo</comment>
       <translation type="unfinished">Ctrl+Z</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1188" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1194" />
       <source>Undo the last edit action</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1190" />
-      <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1196" />
+      <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1202" />
       <source>Redo</source>
       <translation type="unfinished">İleri al</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1198" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1204" />
       <source>&amp;Redo</source>
       <translation type="unfinished">&amp;İleri al</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1199" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1205" />
       <source>Ctrl+Shift+Z</source>
       <comment>Edit|Redo</comment>
       <translation type="unfinished">Ctrl+Shift+Z</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1204" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1210" />
       <source>Redo the last edit action</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1206" />
-      <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1212" />
+      <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1218" />
       <source>Select All</source>
       <translation type="unfinished">Hepsini Seç</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1214" />
-      <source>&amp;Select All</source>
-      <translation type="unfinished">Hep&amp;sini Seç</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1215" />
-      <source>Ctrl+A</source>
-      <comment>Edit|Select All</comment>
-      <translation type="unfinished">Ctrl+A</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1220" />
+      <source>&amp;Select All</source>
+      <translation type="unfinished">Hep&amp;sini Seç</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1221" />
+      <source>Ctrl+A</source>
+      <comment>Edit|Select All</comment>
+      <translation type="unfinished">Ctrl+A</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1226" />
       <source>Select all text</source>
       <translation type="unfinished">Tüm metni seç</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1222" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1228" />
       <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current browser.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1232" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1231" />
-      <source>Unselect</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1233" />
-      <source>Alt+Ctrl+A</source>
-      <comment>Edit|Unselect</comment>
-      <translation type="unfinished">Alt+Ctrl+A</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1238" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1237" />
+      <source>Unselect</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1239" />
+      <source>Alt+Ctrl+A</source>
+      <comment>Edit|Unselect</comment>
+      <translation type="unfinished">Alt+Ctrl+A</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1244" />
       <source>Clear current selection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1240" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1246" />
       <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1249" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1255" />
       <source>Find...</source>
       <translation type="unfinished">Bul...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1251" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1257" />
       <source>&amp;Find...</source>
       <translation type="unfinished">&amp;Bul...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1252" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1258" />
       <source>Ctrl+F</source>
       <comment>Edit|Find</comment>
       <translation type="unfinished">Ctrl+F</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1257" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1263" />
       <source>Find text in page</source>
       <translation type="unfinished">Metni sayfa içinde bul</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1259" />
-      <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
-      <translation type="unfinished">&lt;b&gt;BUl&lt;/b&gt;&lt;p&gt;Metni geçerli sayfada bul.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1265" />
+      <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;b&gt;BUl&lt;/b&gt;&lt;p&gt;Metni geçerli sayfada bul.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1271" />
       <source>Find next</source>
       <translation type="unfinished">Sonrakini bul</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1267" />
-      <source>Find &amp;next</source>
-      <translation type="unfinished">So&amp;nrakini Bul</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1268" />
-      <source>F3</source>
-      <comment>Edit|Find next</comment>
-      <translation type="unfinished">F3</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1273" />
+      <source>Find &amp;next</source>
+      <translation type="unfinished">So&amp;nrakini Bul</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1274" />
+      <source>F3</source>
+      <comment>Edit|Find next</comment>
+      <translation type="unfinished">F3</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1279" />
       <source>Find next occurrence of text in page</source>
       <translation type="unfinished">Geçerli sayfadaki metinde bir sonrakini bul</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1275" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1281" />
       <source>&lt;b&gt;Find next&lt;/b&gt;&lt;p&gt;Find the next occurrence of text in the current page.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Bir sonrakini bul&lt;/b&gt;&lt;p&gt;Geçerli sayfadaki metinde bir sonrakini bul.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1284" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1290" />
       <source>Find previous</source>
       <translation type="unfinished">Öncekini bul</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1286" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1292" />
       <source>Find &amp;previous</source>
       <translation type="unfinished">Öncekini b&amp;ul</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1287" />
-      <source>Shift+F3</source>
-      <comment>Edit|Find previous</comment>
-      <translation type="unfinished">Shift+F3</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1293" />
+      <source>Shift+F3</source>
+      <comment>Edit|Find previous</comment>
+      <translation type="unfinished">Shift+F3</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1299" />
       <source>Find previous occurrence of text in page</source>
       <translation type="unfinished">Geçerli sayfadaki metinde bir öncekini bul</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1296" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1302" />
       <source>&lt;b&gt;Find previous&lt;/b&gt;&lt;p&gt;Find the previous occurrence of text in the current page.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Bir öncekini bul&lt;/b&gt;&lt;p&gt;Geçerli sayfadaki metinde bir öncekini bul.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1306" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1312" />
       <source>Manage Bookmarks</source>
       <translation type="unfinished">Yerimleri Yönetimi</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1307" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1313" />
       <source>&amp;Manage Bookmarks...</source>
       <translation type="unfinished">Yerimleri Yöneti&amp;mi...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1308" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1314" />
       <source>Ctrl+Shift+B</source>
       <comment>Help|Manage bookmarks</comment>
       <translation type="unfinished">Ctrl+Shift+B</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1314" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1320" />
       <source>Open a dialog to manage the bookmarks.</source>
       <translation type="unfinished">Yerimlerini yönetmek için diyalog aç.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1317" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1323" />
       <source>&lt;b&gt;Manage Bookmarks...&lt;/b&gt;&lt;p&gt;Open a dialog to manage the bookmarks.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Yerimlerini Yönet...&lt;/b&gt;&lt;p&gt;Yerimlerini düzenlemek için bir diyalog açılır.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1326" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1332" />
       <source>Add Bookmark</source>
       <translation type="unfinished">Yerimi Ekle</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1328" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1334" />
       <source>Add &amp;Bookmark...</source>
       <translation type="unfinished">&amp;Yerimi Ekle...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1329" />
-      <source>Ctrl+D</source>
-      <comment>Help|Add bookmark</comment>
-      <translation type="unfinished">Ctrl+D</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1335" />
+      <source>Ctrl+D</source>
+      <comment>Help|Add bookmark</comment>
+      <translation type="unfinished">Ctrl+D</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1341" />
       <source>Open a dialog to add a bookmark.</source>
       <translation type="unfinished">Yerimlerine eklemek için bir diyalog aç.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1337" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1343" />
       <source>&lt;b&gt;Add Bookmark&lt;/b&gt;&lt;p&gt;Open a dialog to add the current URL as a bookmark.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Yerimi Ekle&lt;/b&gt;&lt;p&gt;Geçerli URL yi yerimi olarak eklemek için bir diyalog açar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1346" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1352" />
       <source>Add Folder</source>
       <translation type="unfinished">,Dizin Ekle</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1347" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1353" />
       <source>Add &amp;Folder...</source>
       <translation type="unfinished">Dizin &amp;Ekle...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1354" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1360" />
       <source>Open a dialog to add a new bookmarks folder.</source>
       <translation type="unfinished">Yeni yerimi dizini eklemek için bir diyalog açar.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1357" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1363" />
       <source>&lt;b&gt;Add Folder...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Kalsör Ekle...&lt;/b&gt;&lt;p&gt;Yeni yerimi klasörü eklemek için bir diyalog açar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1366" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1372" />
       <source>Bookmark All Tabs</source>
       <translation type="unfinished">Tüm Sekmeleri Yerimi yap</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1367" />
-      <source>Bookmark All Tabs...</source>
-      <translation type="unfinished">Tüm Sekmeleri Yerimi yap...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1373" />
+      <source>Bookmark All Tabs...</source>
+      <translation type="unfinished">Tüm Sekmeleri Yerimi yap...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1379" />
       <source>Bookmark all open tabs.</source>
       <translation type="unfinished">Tüm Açık Sekmeleri Yerimi yap.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1375" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1381" />
       <source>&lt;b&gt;Bookmark All Tabs...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder for all open tabs.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1385" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1391" />
       <source>What's This?</source>
       <translation type="unfinished">Bu nedir?</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1387" />
-      <source>&amp;What's This?</source>
-      <translation type="unfinished">Bu &amp;Nedir?</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1388" />
-      <source>Shift+F1</source>
-      <comment>Help|What's This?'</comment>
-      <translation type="unfinished">Shift+F1</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1393" />
+      <source>&amp;What's This?</source>
+      <translation type="unfinished">Bu &amp;Nedir?</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1394" />
+      <source>Shift+F1</source>
+      <comment>Help|What's This?'</comment>
+      <translation type="unfinished">Shift+F1</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1399" />
       <source>Context sensitive help</source>
       <translation type="unfinished">Duyarlı yardım</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1395" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1401" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;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="../WebBrowser/WebBrowserWindow.py" line="1408" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1414" />
       <source>About</source>
       <translation type="unfinished">Hakkında</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1408" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1414" />
       <source>&amp;About</source>
       <translation type="unfinished">H&amp;akkında</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1410" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1416" />
       <source>Display information about this software</source>
       <translation type="unfinished">Bu yazılım hakkında bilgi göster</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1412" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1418" />
       <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="../WebBrowser/WebBrowserWindow.py" line="1421" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1427" />
       <source>About Qt</source>
       <translation type="unfinished">Qt Hakkında</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1422" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1428" />
       <source>About &amp;Qt</source>
       <translation type="unfinished">&amp;Qt Hakkında</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1429" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1435" />
       <source>Display information about the Qt toolkit</source>
       <translation type="unfinished">Qt araçkiti hakkında bilgi göster</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1432" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1438" />
       <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="../WebBrowser/WebBrowserWindow.py" line="1441" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1447" />
       <source>Zoom in</source>
       <translation type="unfinished">Büyüt</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1443" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1449" />
       <source>Zoom &amp;in</source>
       <translation type="unfinished">Bü&amp;yült</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1444" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1450" />
       <source>Ctrl++</source>
       <comment>View|Zoom in</comment>
       <translation type="unfinished">Ctrl++</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1445" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1451" />
       <source>Zoom In</source>
       <comment>View|Zoom in</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1449" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1455" />
       <source>Zoom in on the web page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1451" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1457" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the web page. This makes the web page bigger.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1461" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1467" />
       <source>Zoom out</source>
       <translation type="unfinished">Küçült</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1463" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1469" />
       <source>Zoom &amp;out</source>
       <translation type="unfinished">Küçü&amp;lt</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1464" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1470" />
       <source>Ctrl+-</source>
       <comment>View|Zoom out</comment>
       <translation type="unfinished">Ctrl+-</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1465" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1471" />
       <source>Zoom Out</source>
       <comment>View|Zoom out</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1469" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1475" />
       <source>Zoom out on the web page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1471" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1477" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the web page. This makes the web page smaller.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1481" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1487" />
       <source>Zoom reset</source>
       <translation type="unfinished">Büyütmeyi sıfırla</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1483" />
-      <source>Zoom &amp;reset</source>
-      <translation type="unfinished">Büyütmeyi sıfı&amp;rla</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1484" />
-      <source>Ctrl+0</source>
-      <comment>View|Zoom reset</comment>
-      <translation type="unfinished">Ctrl+0</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1489" />
+      <source>Zoom &amp;reset</source>
+      <translation type="unfinished">Büyütmeyi sıfı&amp;rla</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1490" />
+      <source>Ctrl+0</source>
+      <comment>View|Zoom reset</comment>
+      <translation type="unfinished">Ctrl+0</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1495" />
       <source>Reset the zoom of the web page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1491" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1497" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the web page. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1502" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1501" />
-      <source>Show page source</source>
-      <translation type="unfinished">Sayfa kaynağını göster</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1503" />
-      <source>Ctrl+U</source>
-      <translation type="unfinished">Ctrl+U</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1508" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1507" />
+      <source>Show page source</source>
+      <translation type="unfinished">Sayfa kaynağını göster</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1509" />
+      <source>Ctrl+U</source>
+      <translation type="unfinished">Ctrl+U</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1514" />
       <source>Show the page source in an editor</source>
       <translation type="unfinished">Sayfa kaynağını bir düzenleyici sayfasinda göster</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1510" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1516" />
       <source>&lt;b&gt;Show page source&lt;/b&gt;&lt;p&gt;Show the page source in an editor.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Sayfa kaynağını göster&lt;/b&gt;&lt;p&gt;Sayfa kaynağını bir düzenleyicide göster.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1520" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1526" />
       <source>Full Screen</source>
       <translation type="unfinished">Tam Ekran</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1522" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1528" />
       <source>&amp;Full Screen</source>
       <translation type="unfinished">&amp;Tam Ekran</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1529" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1535" />
       <source>Meta+Ctrl+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1531" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1537" />
       <source>F11</source>
       <translation type="unfinished">F11</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1538" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1537" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1544" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1543" />
       <source>Show next tab</source>
       <translation type="unfinished">Sonraki sekmeyi göster</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1539" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1545" />
       <source>Ctrl+Alt+Tab</source>
       <translation type="unfinished">Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1550" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1549" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1556" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1555" />
       <source>Show previous tab</source>
       <translation type="unfinished">Önceki sekmeyi göster</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1551" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1557" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation type="unfinished">Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1562" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1561" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1568" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1567" />
       <source>Switch between tabs</source>
       <translation type="unfinished">Sekmeler arasında değiştir</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1563" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1569" />
       <source>Ctrl+1</source>
       <translation type="unfinished">Ctrl+1</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1573" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1579" />
       <source>Preferences</source>
       <translation type="unfinished">Seçenekler</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1575" />
-      <source>&amp;Preferences...</source>
-      <translation type="unfinished">&amp;Seçenekler...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1581" />
+      <source>&amp;Preferences...</source>
+      <translation type="unfinished">&amp;Seçenekler...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1587" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished">tercih edilen ayarları yapınız</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1583" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1589" />
       <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">&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="../WebBrowser/WebBrowserWindow.py" line="1593" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1599" />
       <source>Languages</source>
       <translation type="unfinished">Diller</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1595" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1601" />
       <source>&amp;Languages...</source>
       <translation type="unfinished">Di&amp;ller...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1602" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1608" />
       <source>Configure the accepted languages for web pages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1605" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1611" />
       <source>&lt;b&gt;Languages&lt;/b&gt;&lt;p&gt;Configure the accepted languages for web pages.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1614" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1620" />
       <source>Cookies</source>
       <translation type="unfinished">Çerezler</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1616" />
-      <source>C&amp;ookies...</source>
-      <translation type="unfinished">&amp;Çerezler...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1622" />
+      <source>C&amp;ookies...</source>
+      <translation type="unfinished">&amp;Çerezler...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1628" />
       <source>Configure cookies handling</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1624" />
-      <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1630" />
+      <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1636" />
       <source>Personal Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1632" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1638" />
       <source>Personal Information...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1639" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1645" />
       <source>Configure personal information for completing form fields</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1642" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1648" />
       <source>&lt;b&gt;Personal Information...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the personal information used for completing form fields.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1652" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1658" />
       <source>GreaseMonkey Scripts</source>
       <translation type="unfinished">&amp;Özel verileri temizle</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1654" />
-      <source>GreaseMonkey Scripts...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1660" />
+      <source>GreaseMonkey Scripts...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1666" />
       <source>Configure the GreaseMonkey Scripts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1662" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1668" />
       <source>&lt;b&gt;GreaseMonkey Scripts...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available GreaseMonkey Scripts.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1672" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1678" />
       <source>Edit Message Filters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1674" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1680" />
       <source>Edit Message Filters...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1681" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1687" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1684" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1690" />
       <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1695" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1701" />
       <source>Edit HTML5 Feature Permissions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1697" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1703" />
       <source>Edit HTML5 Feature Permissions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1704" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1710" />
       <source>Edit the remembered HTML5 feature permissions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1707" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1713" />
       <source>&lt;b&gt;Edit HTML5 Feature Permissions&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the remembered HTML5 feature permissions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1720" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1718" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1726" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1724" />
       <source>Sync with Table of Contents</source>
       <translation type="unfinished">İçindekiler Tablosu ile senkronize et</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1733" />
       <source>Synchronizes the table of contents with current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1730" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1736" />
       <source>&lt;b&gt;Sync with Table of Contents&lt;/b&gt;&lt;p&gt;Synchronizes the table of contents with current page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1741" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1740" />
-      <source>Table of Contents</source>
-      <translation type="unfinished">İçindekiler Tablosu</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1747" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1746" />
+      <source>Table of Contents</source>
+      <translation type="unfinished">İçindekiler Tablosu</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1753" />
       <source>Shows the table of contents window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1749" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1755" />
       <source>&lt;b&gt;Table of Contents&lt;/b&gt;&lt;p&gt;Shows the table of contents window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1760" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1766" />
       <source>Shows the index window</source>
       <translation type="unfinished">Dizin penceresini göster</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1762" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1768" />
       <source>&lt;b&gt;Index&lt;/b&gt;&lt;p&gt;Shows the index window.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Dizin&lt;/b&gt;&lt;p&gt;Dizin penceresini gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1781" />
       <source>Shows the search window</source>
       <translation type="unfinished">Arama pencerelerini göster</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1777" />
-      <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
-      <translation type="unfinished">&lt;b&gt;Arama&lt;/b&gt;&lt;p&gt;Arama penceresini gösterir.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1783" />
+      <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;b&gt;Arama&lt;/b&gt;&lt;p&gt;Arama penceresini gösterir.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1789" />
       <source>Manage QtHelp Documents</source>
       <translation type="unfinished">OtHelp Dökümanlları Yönetimi</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1784" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1790" />
       <source>Manage QtHelp &amp;Documents</source>
       <translation type="unfinished">OtHelp &amp;Dökümanlları Yönetimi</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1791" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1797" />
       <source>Shows a dialog to manage the QtHelp documentation set</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1794" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1800" />
       <source>&lt;b&gt;Manage QtHelp Documents&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the QtHelp documentation set.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1804" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1810" />
       <source>Reindex Documentation</source>
       <translation type="unfinished">Belgeyi Yeniden İindexle</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1805" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1811" />
       <source>&amp;Reindex Documentation</source>
       <translation type="unfinished">&amp;Belgeyi Yeniden İindexle</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1812" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1818" />
       <source>Reindexes the documentation set</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1815" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1821" />
       <source>&lt;b&gt;Reindex Documentation&lt;/b&gt;&lt;p&gt;Reindexes the documentation set.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1840" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1834" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1828" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1826" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1832" />
       <source>Clear private data</source>
       <translation type="unfinished">Özel verileri temizle</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1836" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1842" />
       <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like browsing history, search history or the favicons database.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1846" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1852" />
       <source>Clear icons database</source>
       <translation type="unfinished">İkon veritabanını temizle</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1847" />
-      <source>Clear &amp;icons database</source>
-      <translation type="unfinished">İkon ver&amp;itabanını temizle</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1853" />
+      <source>Clear &amp;icons database</source>
+      <translation type="unfinished">İkon ver&amp;itabanını temizle</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1859" />
       <source>Clear the database of favicons</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1855" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1861" />
       <source>&lt;b&gt;Clear icons database&lt;/b&gt;&lt;p&gt;Clears the database of favicons of previously visited URLs.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1867" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1865" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1873" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1871" />
       <source>Manage Saved Favicons</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1874" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1880" />
       <source>Show a dialog to manage the saved favicons</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1877" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1883" />
       <source>&lt;b&gt;Manage Saved Favicons&lt;/b&gt;&lt;p&gt;This shows a dialog to manage the saved favicons of previously visited URLs.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1887" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1893" />
       <source>Configure Search Engines</source>
       <translation type="unfinished">Arama Motoru Ayarları</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1888" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1894" />
       <source>Configure Search &amp;Engines...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1895" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1901" />
       <source>Configure the available search engines</source>
       <translation type="unfinished">Ulaşılabilen Arama motorunu ayarla</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1898" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1904" />
       <source>&lt;b&gt;Configure Search Engines...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available search engines.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Arama Motoru Ayarlanıyor...&lt;/b&gt;&lt;p&gt;Ulaşılabilen arama motorunu ayarlamak için bir diyalog açılır.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1908" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1914" />
       <source>Manage Saved Passwords</source>
       <translation type="unfinished">Kaydedilmiş Parolaları Yönet</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1910" />
-      <source>Manage Saved Passwords...</source>
-      <translation type="unfinished">Kaydedilmiş Parolaları Yönet...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1916" />
+      <source>Manage Saved Passwords...</source>
+      <translation type="unfinished">Kaydedilmiş Parolaları Yönet...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1922" />
       <source>Manage the saved passwords</source>
       <translation type="unfinished">Kaydedilmiş parolaları yönet</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1918" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1924" />
       <source>&lt;b&gt;Manage Saved Passwords...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved passwords.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Kaydadilmiş Parolaların Yönetimi...&lt;/b&gt;&lt;p&gt;Kaydedilmiş parolalları yönetmek için bir diyalog açılır.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1927" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1933" />
       <source>Ad Block</source>
       <translation type="unfinished">Engel ekle</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1929" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1935" />
       <source>&amp;Ad Block...</source>
       <translation type="unfinished">&amp;Engel Ekle...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1936" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1942" />
       <source>Configure AdBlock subscriptions and rules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1939" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1945" />
       <source>&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure AdBlock subscriptions and rules.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1949" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1955" />
       <source>Manage SSL Certificate Errors</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1951" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1957" />
       <source>Manage SSL Certificate Errors...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1958" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1964" />
       <source>Manage the accepted SSL certificate Errors</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1961" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1967" />
       <source>&lt;b&gt;Manage SSL Certificate Errors...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the accepted SSL certificate errors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1971" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1977" />
       <source>Manage Safe Browsing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1973" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1979" />
       <source>Manage Safe Browsing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1980" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1986" />
       <source>Configure Safe Browsing and manage local cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1983" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1989" />
       <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1994" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1993" />
-      <source>Downloads</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2000" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1999" />
+      <source>Downloads</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2006" />
       <source>Shows the downloads window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2002" />
-      <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2008" />
+      <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2014" />
       <source>RSS Feeds Dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2010" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2016" />
       <source>&amp;RSS Feeds Dialog...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2011" />
-      <source>Ctrl+Shift+F</source>
-      <comment>Help|RSS Feeds Dialog</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2017" />
+      <source>Ctrl+Shift+F</source>
+      <comment>Help|RSS Feeds Dialog</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2023" />
       <source>Open a dialog showing the configured RSS feeds.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2020" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2026" />
       <source>&lt;b&gt;RSS Feeds Dialog...&lt;/b&gt;&lt;p&gt;Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2031" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2037" />
       <source>Siteinfo Dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2033" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2039" />
       <source>&amp;Siteinfo Dialog...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2034" />
-      <source>Ctrl+Shift+I</source>
-      <comment>Help|Siteinfo Dialog</comment>
-      <translation type="unfinished">Ctrl+Shift+I</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2040" />
+      <source>Ctrl+Shift+I</source>
+      <comment>Help|Siteinfo Dialog</comment>
+      <translation type="unfinished">Ctrl+Shift+I</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2046" />
       <source>Open a dialog showing some information about the current site.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2043" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2049" />
       <source>&lt;b&gt;Siteinfo Dialog...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the current site.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2053" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2059" />
       <source>Manage User Agent Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2054" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2060" />
       <source>Manage &amp;User Agent Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2061" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2067" />
       <source>Shows a dialog to manage the User Agent settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2064" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2070" />
       <source>&lt;b&gt;Manage User Agent Settings&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the User Agent settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2073" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2079" />
       <source>Synchronize data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2075" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2081" />
       <source>&amp;Synchronize Data...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2082" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2088" />
       <source>Shows a dialog to synchronize data via the network</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2085" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2091" />
       <source>&lt;b&gt;Synchronize Data...&lt;/b&gt;&lt;p&gt;This shows a dialog to synchronize data via the network.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2095" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2101" />
       <source>Manage Saved Zoom Values</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2097" />
-      <source>Manage Saved Zoom Values...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2103" />
+      <source>Manage Saved Zoom Values...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2109" />
       <source>Manage the saved zoom values</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2105" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2111" />
       <source>&lt;b&gt;Manage Saved Zoom Values...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved zoom values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2122" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2128" />
       <source>Toggle the JavaScript console window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2125" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2131" />
       <source>&lt;b&gt;JavaScript Console&lt;/b&gt;&lt;p&gt;This toggles the JavaScript console window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2135" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2134" />
-      <source>Tab Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2141" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2140" />
+      <source>Tab Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2147" />
       <source>Shows the tab manager window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2143" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2149" />
       <source>&lt;b&gt;Tab Manager&lt;/b&gt;&lt;p&gt;Shows the tab manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2151" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2157" />
       <source>Session Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2152" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2158" />
       <source>Session Manager...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2159" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2165" />
       <source>Shows the session manager window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2162" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2168" />
       <source>&lt;b&gt;Session Manager&lt;/b&gt;&lt;p&gt;Shows the session manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2173" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2171" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2179" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2177" />
       <source>Scan current site</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5180" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5170" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2187" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2185" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5185" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5175" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2193" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2191" />
       <source>IP Address Report</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5194" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2199" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2197" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5199" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2205" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2203" />
       <source>Domain Report</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2217" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2223" />
       <source>Keyboard Shortcuts</source>
       <translation type="unfinished">Klavye Kısayolları</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2219" />
-      <source>Keyboard &amp;Shortcuts...</source>
-      <translation type="unfinished">Klavye Kı&amp;sayolları...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2225" />
+      <source>Keyboard &amp;Shortcuts...</source>
+      <translation type="unfinished">Klavye Kı&amp;sayolları...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2231" />
       <source>Set the keyboard shortcuts</source>
       <translation type="unfinished">Klavye kısayollarını ayarla</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2227" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2233" />
       <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5600" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5581" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2237" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5605" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5586" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2243" />
       <source>Export Keyboard Shortcuts</source>
       <translation type="unfinished">Kılavye Kısa Yollarını Dışa Aktar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2239" />
-      <source>&amp;Export Keyboard Shortcuts...</source>
-      <translation type="unfinished">Kılavye Kısa Yo&amp;llarını Dışa Aktar...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2245" />
+      <source>&amp;Export Keyboard Shortcuts...</source>
+      <translation type="unfinished">Kılavye Kısa Yo&amp;llarını Dışa Aktar...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2251" />
       <source>Export the keyboard shortcuts</source>
       <translation type="unfinished">Kılavye kısa yollarını dışa aktar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2247" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2253" />
       <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5620" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2256" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5625" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2262" />
       <source>Import Keyboard Shortcuts</source>
       <translation type="unfinished">Klavye kısayollarını İçe Aktar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2258" />
-      <source>&amp;Import Keyboard Shortcuts...</source>
-      <translation type="unfinished">Klavye K&amp;ısayollarını İçe Aktar...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2264" />
+      <source>&amp;Import Keyboard Shortcuts...</source>
+      <translation type="unfinished">Klavye K&amp;ısayollarını İçe Aktar...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2270" />
       <source>Import the keyboard shortcuts</source>
       <translation type="unfinished">Klavye kısayolları içeri aktarılıyor</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2266" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2272" />
       <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2275" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2281" />
       <source>Protocol Handler Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2276" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2282" />
       <source>Protocol Handler Manager...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2283" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2289" />
       <source>Shows the protocol handler manager window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2286" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2292" />
       <source>&lt;b&gt;Protocol Handler Manager&lt;/b&gt;&lt;p&gt;Shows the protocol handler manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2330" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2336" />
       <source>&amp;File</source>
       <translation type="unfinished">&amp;Dosya</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2524" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2338" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2530" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2344" />
       <source>Sessions</source>
       <translation type="unfinished">Oturumlar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2362" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2368" />
       <source>&amp;Edit</source>
       <translation type="unfinished">Düz&amp;en</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2596" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2378" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2602" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2384" />
       <source>&amp;View</source>
       <translation type="unfinished">&amp;Görünüm</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2389" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2395" />
       <source>Text Encoding</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2398" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2404" />
       <source>H&amp;istory</source>
       <translation type="unfinished">Geçmi&amp;ş</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2414" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2420" />
       <source>&amp;Bookmarks</source>
       <translation type="unfinished">&amp;Yerimleri</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2430" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2436" />
       <source>&amp;Settings</source>
       <translation type="unfinished">Ayar&amp;lar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2460" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2466" />
       <source>Global User Agent</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2627" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2472" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2633" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2478" />
       <source>&amp;Tools</source>
       <translation type="unfinished">&amp;Araçlar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2634" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2479" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2640" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2485" />
       <source>&amp;VirusTotal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2598" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2485" />
-      <source>&amp;Windows</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2604" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2491" />
+      <source>&amp;Windows</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2610" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2497" />
       <source>QtHelp</source>
       <translation type="unfinished">QtYardım</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2496" />
-      <source>&amp;Toolbars</source>
-      <translation type="unfinished">&amp;Araççubuğu</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2502" />
+      <source>&amp;Toolbars</source>
+      <translation type="unfinished">&amp;Araççubuğu</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2508" />
       <source>&amp;Help</source>
       <translation type="unfinished">&amp;Yardım</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2531" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2537" />
       <source>Save</source>
       <translation type="unfinished">Kaydet</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2551" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2557" />
       <source>Show All History...</source>
       <translation type="unfinished">Tüm Geçmişi Göster...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2721" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2558" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2564" />
       <source>Settings</source>
       <translation type="unfinished">Ayarlar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2652" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2658" />
       <source>File</source>
       <translation type="unfinished">Dosya</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2676" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2682" />
       <source>Edit</source>
       <translation type="unfinished">Düzen</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2688" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2694" />
       <source>View</source>
       <translation type="unfinished">Görünüm</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2697" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2703" />
       <source>Find</source>
       <translation type="unfinished">Bul</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2705" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2711" />
       <source>Filter</source>
       <translation type="unfinished">Süzgeç</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2712" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2718" />
       <source>Filtered by: </source>
       <translation type="unfinished">Süzülen: </translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2732" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2738" />
       <source>Tools</source>
       <translation type="unfinished">Araçlar</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2740" />
-      <source>Help</source>
-      <translation type="unfinished">Yardım</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2746" />
+      <source>Help</source>
+      <translation type="unfinished">Yardım</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2752" />
       <source>VirusTotal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2890" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2896" />
       <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;İşlem başlatılamıyor.&lt;br&gt;Bu durum büyük olasılıkla şundan kaynaklanıyto &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2894" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2900" />
       <source>OK</source>
       <translation type="unfinished">TAMAM</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2929" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2906" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2935" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2912" />
       <source>HTML Files (*.html *.htm *.mhtml *.mht);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2977" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2983" />
       <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chromium {2} with Security Patches {3}.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2992" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2998" />
       <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chromium {2}.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3127" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3133" />
       <source>Saved Tabs</source>
       <translation type="unfinished">Sekmeleri Kaydet</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3310" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3316" />
       <source>Are you sure you want to close the web browser?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3311" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3317" />
       <source>Are you sure you want to close the web browser?
 You have {0} windows with {1} tabs open.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3910" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3916" />
       <source>Could not find any associated content.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3956" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3962" />
       <source>Unfiltered</source>
       <translation type="unfinished">Süzülmemiş</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4012" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4018" />
       <source>Updating search index</source>
       <translation type="unfinished">Arama index yenileniyor</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4088" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4094" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished">Dökümanlara bakılıyor...</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4121" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4127" />
       <source>Help Engine</source>
       <translation type="unfinished">Yardım Motoru</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4717" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4722" />
       <source>System</source>
       <translation type="unfinished">Sistem</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4721" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4726" />
       <source>ISO</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4724" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4729" />
       <source>Unicode</source>
       <translation type="unfinished">Evrensel kod</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4732" />
       <source>Windows</source>
       <translation type="unfinished">Windows</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4730" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4735" />
       <source>IBM</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4733" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4738" />
       <source>Apple</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4736" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4741" />
       <source>Other</source>
       <translation type="unfinished">Diğer</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4763" />
-      <source>Menu Bar</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="4768" />
-      <source>Bookmarks</source>
-      <translation type="unfinished">Yerimleri</translation>
+      <source>Menu Bar</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="4773" />
+      <source>Bookmarks</source>
+      <translation type="unfinished">Yerimleri</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4778" />
       <source>Status Bar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4788" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4793" />
       <source>&amp;Show all</source>
       <translation type="unfinished">Hepsini Gö&amp;ster</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4790" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4795" />
       <source>&amp;Hide all</source>
       <translation type="unfinished">&amp;Hepsini gizle</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5136" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5141" />
       <source>VirusTotal Scan</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5137" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5142" />
       <source>&lt;p&gt;The VirusTotal scan could not be scheduled.&lt;p&gt;
 &lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5171" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5176" />
       <source>Enter a valid IPv4 address in dotted quad notation:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5181" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5186" />
       <source>The given IP address is not in dotted quad notation.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5195" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5200" />
       <source>Enter a valid domain name:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5622" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5583" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5627" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5588" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5601" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5606" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
--- a/src/eric7/i18n/eric7_zh_CN.ts	Wed Apr 24 10:14:44 2024 +0200
+++ b/src/eric7/i18n/eric7_zh_CN.ts	Sun Jun 02 09:51:20 2024 +0200
@@ -1824,42 +1824,42 @@
       <translation>{0} 未被配置。</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="217" />
+      <location filename="../Utilities/BackgroundService.py" line="230" />
       <source>Initialization of Background Service</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="218" />
-      <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Utilities/BackgroundService.py" line="231" />
+      <source>&lt;p&gt;Initialization of Background Service &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Utilities/BackgroundService.py" line="244" />
       <source>Restart background client?</source>
       <translation>重启后台客户端?</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="232" />
+      <location filename="../Utilities/BackgroundService.py" line="245" />
       <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It's used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;'Yes'&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'Retry'&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;'No'&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
       <translation>&lt;p&gt; &lt;b&gt;{0}&lt;/b&gt; 的背景客户端因意外终止。它被多种插件(如区别检查器)使用。&lt;/p&gt;&lt;p&gt; 选择 &lt;ul&gt;&lt;li&gt;&lt;b&gt;“是”&lt;/b&gt; 放弃最后任务,重启客户端 &lt;/li&gt;&lt;li&gt;&lt;b&gt;“重试”&lt;/b&gt; 重启客户端和最后任务&lt;/li&gt;&lt;li&gt;&lt;b&gt;“否”&lt;/b&gt; 关闭客户端。&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;注意:通过打开和接受首选项对话框,或重新加载、改变工程亦可重启客户端。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="261" />
+      <location filename="../Utilities/BackgroundService.py" line="274" />
       <source>An error in Eric's background client stopped the service.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="502" />
+      <location filename="../Utilities/BackgroundService.py" line="515" />
       <source>Eric's background client disconnected because of an unknown reason.</source>
       <translation>Erics 后台客户端因未知原因断开连接。</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="511" />
+      <location filename="../Utilities/BackgroundService.py" line="524" />
       <source>Background client disconnected.</source>
       <translation>后台客户端已断开连接。</translation>
     </message>
     <message>
-      <location filename="../Utilities/BackgroundService.py" line="512" />
+      <location filename="../Utilities/BackgroundService.py" line="525" />
       <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
       <translation>&lt;b&gt;{0}&lt;/b&gt; 的后台客户端因未知原因中断了连接。&lt;br&gt;是否对其重新启动?</translation>
     </message>
@@ -9391,665 +9391,665 @@
   <context>
     <name>DebugUI</name>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="210" />
+      <location filename="../Debugger/DebugUI.py" line="207" />
       <source>Notification</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2342" />
-      <location filename="../Debugger/DebugUI.py" line="237" />
+      <location filename="../Debugger/DebugUI.py" line="2339" />
+      <location filename="../Debugger/DebugUI.py" line="234" />
       <source>Run Script</source>
       <translation>运行脚本</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="239" />
+      <location filename="../Debugger/DebugUI.py" line="236" />
       <source>&amp;Run Script...</source>
       <translation>运行脚本(&amp;R)…</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="245" />
+      <location filename="../Debugger/DebugUI.py" line="242" />
       <source>Run the current Script</source>
       <translation>运行当前脚本</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="247" />
+      <location filename="../Debugger/DebugUI.py" line="244" />
       <source>&lt;b&gt;Run Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;运行脚本&lt;/b&gt;&lt;p&gt;设置命令行参数,并在调试器之外运行脚本。如果文件未对更改进行保存,则可能会先行保存。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2348" />
-      <location filename="../Debugger/DebugUI.py" line="2342" />
-      <location filename="../Debugger/DebugUI.py" line="258" />
+      <location filename="../Debugger/DebugUI.py" line="2345" />
+      <location filename="../Debugger/DebugUI.py" line="2339" />
+      <location filename="../Debugger/DebugUI.py" line="255" />
       <source>Run Project</source>
       <translation>运行项目</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="260" />
+      <location filename="../Debugger/DebugUI.py" line="257" />
       <source>Run &amp;Project...</source>
       <translation>运行项目(&amp;P)…</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="266" />
+      <location filename="../Debugger/DebugUI.py" line="263" />
       <source>Run the current Project</source>
       <translation>运行当前项目</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="268" />
+      <location filename="../Debugger/DebugUI.py" line="265" />
       <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;运行项目&lt;/b&gt;&lt;p&gt;设置命令行参数,并在调试器之外运行当前项目。如果当前项目未对更改进行保存,则可能会先行保存。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="280" />
+      <location filename="../Debugger/DebugUI.py" line="277" />
       <source>Coverage run of Script</source>
       <translation>脚本覆盖率测试</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="282" />
+      <location filename="../Debugger/DebugUI.py" line="279" />
       <source>Coverage run of Script...</source>
       <translation>脚本覆盖率测试…</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="286" />
+      <source>Perform a coverage run of the current Script</source>
+      <translation>对当前脚本进行覆盖率测试运行</translation>
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="289" />
-      <source>Perform a coverage run of the current Script</source>
-      <translation>对当前脚本进行覆盖率测试运行</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="292" />
       <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;脚本覆盖率测试&lt;/b&gt;&lt;p&gt;设置命令行参数,并在覆盖率分析工具的控制下运行脚本。如果文件未保存则会先行保存。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="303" />
+      <location filename="../Debugger/DebugUI.py" line="300" />
       <source>Coverage run of Project</source>
       <translation>项目覆盖率测试</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="305" />
+      <location filename="../Debugger/DebugUI.py" line="302" />
       <source>Coverage run of Project...</source>
       <translation>项目覆盖率测试…</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="309" />
+      <source>Perform a coverage run of the current Project</source>
+      <translation>对当前项目进行覆盖率测试运行</translation>
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="312" />
-      <source>Perform a coverage run of the current Project</source>
-      <translation>对当前项目进行覆盖率测试运行</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="315" />
       <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;项目覆盖率测试&lt;/b&gt;&lt;p&gt;设置命令行参数,并在覆盖率分析工具的控制下运行项目。如果当前项目的文件未保存则会先行保存。&lt;/P&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="327" />
+      <location filename="../Debugger/DebugUI.py" line="324" />
       <source>Profile Script</source>
       <translation>剖析脚本</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="329" />
+      <location filename="../Debugger/DebugUI.py" line="326" />
       <source>Profile Script...</source>
       <translation>剖析脚本…</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="335" />
+      <location filename="../Debugger/DebugUI.py" line="332" />
       <source>Profile the current Script</source>
       <translation>剖析当前脚本</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="337" />
+      <location filename="../Debugger/DebugUI.py" line="334" />
       <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;剖析脚本&lt;/b&gt;&lt;p&gt;设置命令行参数,并剖析脚本。如果文件未保存则会先行保存。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="347" />
+      <location filename="../Debugger/DebugUI.py" line="344" />
       <source>Profile Project</source>
       <translation>剖析项目</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="349" />
+      <location filename="../Debugger/DebugUI.py" line="346" />
       <source>Profile Project...</source>
       <translation>剖析项目…</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="355" />
+      <location filename="../Debugger/DebugUI.py" line="352" />
       <source>Profile the current Project</source>
       <translation>剖析当前项目</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="357" />
+      <location filename="../Debugger/DebugUI.py" line="354" />
       <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;剖析项目&lt;/b&gt;&lt;p&gt;设置命令行参数,并剖析当前项目。如果当前项目的文件未保存则会先行保存。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2528" />
-      <location filename="../Debugger/DebugUI.py" line="368" />
+      <location filename="../Debugger/DebugUI.py" line="2525" />
+      <location filename="../Debugger/DebugUI.py" line="365" />
       <source>Debug Script</source>
       <translation>调试脚本</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="370" />
+      <location filename="../Debugger/DebugUI.py" line="367" />
       <source>&amp;Debug Script...</source>
       <translation>调试脚本(&amp;D)…</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="376" />
+      <location filename="../Debugger/DebugUI.py" line="373" />
       <source>Debug the current Script</source>
       <translation>调试当前脚本</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="378" />
+      <location filename="../Debugger/DebugUI.py" line="375" />
       <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;调试脚本&lt;/b&gt;&lt;p&gt;设置命令行参数,并将当前行设为当前编辑窗口首先执行的 Python 声明。如果文件未保存则会先行保存。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2534" />
-      <location filename="../Debugger/DebugUI.py" line="2528" />
-      <location filename="../Debugger/DebugUI.py" line="390" />
+      <location filename="../Debugger/DebugUI.py" line="2531" />
+      <location filename="../Debugger/DebugUI.py" line="2525" />
+      <location filename="../Debugger/DebugUI.py" line="387" />
       <source>Debug Project</source>
       <translation>调试项目</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="392" />
+      <location filename="../Debugger/DebugUI.py" line="389" />
       <source>Debug &amp;Project...</source>
       <translation>调试项目(&amp;P)…</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="398" />
+      <location filename="../Debugger/DebugUI.py" line="395" />
       <source>Debug the current Project</source>
       <translation>调试当前项目</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="400" />
+      <location filename="../Debugger/DebugUI.py" line="397" />
       <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;调试当前项目&lt;/b&gt;&lt;p&gt;设置命令行参数,并将当前行设为当前项目主脚本首先执行的 Python 声明。如果当前项目的文件未保存则会先行保存。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="414" />
-      <location filename="../Debugger/DebugUI.py" line="412" />
+      <location filename="../Debugger/DebugUI.py" line="411" />
+      <location filename="../Debugger/DebugUI.py" line="409" />
       <source>Restart</source>
       <translation type="unfinished">重启</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="420" />
+      <location filename="../Debugger/DebugUI.py" line="417" />
       <source>Restart the last debugged script</source>
       <translation>重新启动最后调试的脚本</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="422" />
+      <location filename="../Debugger/DebugUI.py" line="419" />
       <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="631" />
-      <location filename="../Debugger/DebugUI.py" line="436" />
-      <location filename="../Debugger/DebugUI.py" line="434" />
+      <location filename="../Debugger/DebugUI.py" line="628" />
+      <location filename="../Debugger/DebugUI.py" line="433" />
+      <location filename="../Debugger/DebugUI.py" line="431" />
       <source>Stop</source>
       <translation>中止</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="442" />
+      <location filename="../Debugger/DebugUI.py" line="439" />
       <source>Stop the running script.</source>
       <translation>中止正在运行的脚本。</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="444" />
+      <location filename="../Debugger/DebugUI.py" line="441" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="455" />
+      <location filename="../Debugger/DebugUI.py" line="452" />
       <source>Continue</source>
       <translation>继续</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="457" />
+      <location filename="../Debugger/DebugUI.py" line="454" />
       <source>&amp;Continue</source>
       <translation>继续(&amp;C)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="463" />
+      <location filename="../Debugger/DebugUI.py" line="460" />
       <source>Continue running the program from the current line</source>
       <translation>从当前行继续运行程序</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="465" />
+      <location filename="../Debugger/DebugUI.py" line="462" />
       <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
       <translation>&lt;b&gt;继续&lt;/b&gt;&lt;p&gt;从当前行继续运行程序。当程序终止或到达断点的时候,程序也将中止。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="476" />
+      <location filename="../Debugger/DebugUI.py" line="473" />
       <source>Continue to Cursor</source>
       <translation>继续到光标</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="478" />
+      <location filename="../Debugger/DebugUI.py" line="475" />
       <source>Continue &amp;To Cursor</source>
       <translation>继续到光标(&amp;T)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="485" />
+      <location filename="../Debugger/DebugUI.py" line="482" />
       <source>Continue running the program from the current line to the current cursor position</source>
       <translation>继续运行程序从当前行到当前光标所在位置</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="491" />
+      <location filename="../Debugger/DebugUI.py" line="488" />
       <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
       <translation>&lt;b&gt;继续到光标&lt;/b&gt;&lt;p&gt;继续运行程序从当前行到当前光标所在位置。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="501" />
+      <location filename="../Debugger/DebugUI.py" line="498" />
       <source>Continue Until</source>
       <translation type="unfinished">继续直到</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="503" />
+      <location filename="../Debugger/DebugUI.py" line="500" />
       <source>Continue &amp;Until</source>
       <translation type="unfinished">继续&amp;直到</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="510" />
+      <location filename="../Debugger/DebugUI.py" line="507" />
       <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="516" />
+      <location filename="../Debugger/DebugUI.py" line="513" />
       <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="527" />
+      <location filename="../Debugger/DebugUI.py" line="524" />
       <source>Move Instruction Pointer to Cursor</source>
       <translation type="unfinished">将指令指针移动到光标上</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="529" />
+      <location filename="../Debugger/DebugUI.py" line="526" />
       <source>&amp;Jump To Cursor</source>
       <translation>&amp;跳转到光标处</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="536" />
+      <location filename="../Debugger/DebugUI.py" line="533" />
       <source>Skip the code from the current line to the current cursor position</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="542" />
+      <location filename="../Debugger/DebugUI.py" line="539" />
       <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It's not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="556" />
+      <location filename="../Debugger/DebugUI.py" line="553" />
       <source>Single Step</source>
       <translation>单步执行</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="558" />
+      <location filename="../Debugger/DebugUI.py" line="555" />
       <source>Sin&amp;gle Step</source>
       <translation>单步执行(&amp;Q)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="564" />
+      <location filename="../Debugger/DebugUI.py" line="561" />
       <source>Execute a single Python statement</source>
       <translation>执行单条 Python 语句</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="566" />
+      <location filename="../Debugger/DebugUI.py" line="563" />
       <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
       <translation>&lt;b&gt;单步执行&lt;/b&gt;&lt;p&gt;执行单条 Python 语句。如果该语句是 &lt;tt&gt;import&lt;/tt&gt; 语句、类构造函数或者函数调用的方法,则由调试器 控制下一行语句。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="578" />
+      <location filename="../Debugger/DebugUI.py" line="575" />
       <source>Step Over</source>
       <translation>跳过</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="580" />
+      <location filename="../Debugger/DebugUI.py" line="577" />
       <source>Step &amp;Over</source>
       <translation>跳过(&amp;O)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="587" />
+      <location filename="../Debugger/DebugUI.py" line="584" />
       <source>Execute a single Python statement staying in the current frame</source>
       <translation>保持在当前框架中执行单条 Python 语句</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="593" />
+      <location filename="../Debugger/DebugUI.py" line="590" />
       <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
       <translation>&lt;b&gt;跳过&lt;/b&gt;&lt;p&gt;保持在相同框架中执行单条 Python 语句。如果该语句是 &lt;tt&gt;import&lt;/tt&gt; 语句、类构造函数或者函数调用的方法,则则由调试器控制下一行语句。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="606" />
+      <location filename="../Debugger/DebugUI.py" line="603" />
       <source>Step Out</source>
       <translation>跳出</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="608" />
+      <location filename="../Debugger/DebugUI.py" line="605" />
       <source>Step Ou&amp;t</source>
       <translation>跳出(&amp;T)</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="612" />
+      <source>Execute Python statements until leaving the current frame</source>
+      <translation>执行 Python 语句直到离开当前框架</translation>
+    </message>
+    <message>
       <location filename="../Debugger/DebugUI.py" line="615" />
-      <source>Execute Python statements until leaving the current frame</source>
-      <translation>执行 Python 语句直到离开当前框架</translation>
-    </message>
-    <message>
-      <location filename="../Debugger/DebugUI.py" line="618" />
       <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
       <translation>&lt;b&gt;跳出&lt;/b&gt;&lt;p&gt;执行 Python 语句直到离开当前框架。如果该语句处于 &lt;tt&gt;import&lt;/tt&gt; 声明、类构造函数或函数调用的方法中,在离开当前框架后将由调试器进行控制。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="633" />
+      <location filename="../Debugger/DebugUI.py" line="630" />
       <source>&amp;Stop</source>
       <translation>中止(&amp;S)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="639" />
+      <location filename="../Debugger/DebugUI.py" line="636" />
       <source>Stop debugging</source>
       <translation>中止调试</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="641" />
+      <location filename="../Debugger/DebugUI.py" line="638" />
       <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;中止&lt;/b&gt;&lt;p&gt;中止正在运行中的调试会话。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="647" />
+      <location filename="../Debugger/DebugUI.py" line="644" />
       <source>Variables Type Filter</source>
       <translation>变量类型过滤器</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="648" />
+      <location filename="../Debugger/DebugUI.py" line="645" />
       <source>Varia&amp;bles Type Filter...</source>
       <translation>变量类型过滤器(&amp;B)…</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="654" />
+      <location filename="../Debugger/DebugUI.py" line="651" />
       <source>Configure variables type filter</source>
       <translation>配置变量类型过滤器</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="656" />
+      <location filename="../Debugger/DebugUI.py" line="653" />
       <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
       <translation>&lt;b&gt;变量类型过滤器&lt;/b&gt;&lt;p&gt;配置变量类型过滤器。在调试会话期间,只有未被选择的变量类型会被显示在全局或局部变量窗口中。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="667" />
+      <location filename="../Debugger/DebugUI.py" line="664" />
       <source>Exceptions Filter</source>
       <translation>异常过滤器</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="668" />
+      <location filename="../Debugger/DebugUI.py" line="665" />
       <source>&amp;Exceptions Filter...</source>
       <translation>异常过滤器(&amp;E)…</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="674" />
+      <location filename="../Debugger/DebugUI.py" line="671" />
       <source>Configure exceptions filter</source>
       <translation>配置异常过滤器</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="676" />
+      <location filename="../Debugger/DebugUI.py" line="673" />
       <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
       <translation>&lt;b&gt;异常过滤器&lt;/b&gt;&lt;p&gt;配置异常过滤器。在调试会话期间,只有已列出的异常类型会被加亮显示。&lt;/p&gt;&lt;p&gt;注意:所有未处理的异常在过滤器列表中将被取消加亮。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="688" />
+      <location filename="../Debugger/DebugUI.py" line="685" />
       <source>Ignored Exceptions</source>
       <translation>忽略的异常</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="689" />
+      <location filename="../Debugger/DebugUI.py" line="686" />
       <source>&amp;Ignored Exceptions...</source>
       <translation>忽略的异常(&amp;I)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="695" />
+      <location filename="../Debugger/DebugUI.py" line="692" />
       <source>Configure ignored exceptions</source>
       <translation>配置忽略的异常</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="697" />
+      <location filename="../Debugger/DebugUI.py" line="694" />
       <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
       <translation>&lt;b&gt;忽略的异常&lt;/b&gt;&lt;p&gt;配置忽略的异常。在调试会话期间,只有已列出的异常类型会被加亮显示。&lt;/p&gt;&lt;p&gt;注意:未处理的异常不能被忽略。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="719" />
-      <location filename="../Debugger/DebugUI.py" line="713" />
-      <location filename="../Debugger/DebugUI.py" line="711" />
+      <location filename="../Debugger/DebugUI.py" line="716" />
+      <location filename="../Debugger/DebugUI.py" line="710" />
+      <location filename="../Debugger/DebugUI.py" line="708" />
       <source>Toggle Breakpoint</source>
       <translation>切换断点</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="714" />
+      <location filename="../Debugger/DebugUI.py" line="711" />
       <source>Shift+F11</source>
       <comment>Debug|Toggle Breakpoint</comment>
       <translation>Shift+F11</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="721" />
+      <location filename="../Debugger/DebugUI.py" line="718" />
       <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;切换断点&lt;/b&gt;&lt;p&gt;在当前编辑器的当前行切换断点。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="739" />
-      <location filename="../Debugger/DebugUI.py" line="731" />
+      <location filename="../Debugger/DebugUI.py" line="736" />
+      <location filename="../Debugger/DebugUI.py" line="728" />
       <source>Edit Breakpoint</source>
       <translation>编辑断点</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="733" />
+      <location filename="../Debugger/DebugUI.py" line="730" />
       <source>Edit Breakpoint...</source>
       <translation>编辑断点…</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="734" />
+      <location filename="../Debugger/DebugUI.py" line="731" />
       <source>Shift+F12</source>
       <comment>Debug|Edit Breakpoint</comment>
       <translation>Shift+F12</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="741" />
+      <location filename="../Debugger/DebugUI.py" line="738" />
       <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;编辑断点&lt;/b&gt;&lt;p&gt;打开一个对话框编辑断点属性。对当前编辑器的当前行起作用。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="759" />
-      <location filename="../Debugger/DebugUI.py" line="753" />
-      <location filename="../Debugger/DebugUI.py" line="751" />
+      <location filename="../Debugger/DebugUI.py" line="756" />
+      <location filename="../Debugger/DebugUI.py" line="750" />
+      <location filename="../Debugger/DebugUI.py" line="748" />
       <source>Next Breakpoint</source>
       <translation>下一个断点</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="754" />
+      <location filename="../Debugger/DebugUI.py" line="751" />
       <source>Ctrl+Shift+PgDown</source>
       <comment>Debug|Next Breakpoint</comment>
       <translation>Ctrl+Shift+PgDown</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="761" />
+      <location filename="../Debugger/DebugUI.py" line="758" />
       <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;下一个断点&lt;/b&gt;&lt;p&gt;跳转到当前编辑器的下一个断点。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="778" />
-      <location filename="../Debugger/DebugUI.py" line="772" />
-      <location filename="../Debugger/DebugUI.py" line="770" />
+      <location filename="../Debugger/DebugUI.py" line="775" />
+      <location filename="../Debugger/DebugUI.py" line="769" />
+      <location filename="../Debugger/DebugUI.py" line="767" />
       <source>Previous Breakpoint</source>
       <translation>前一个断点</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="773" />
+      <location filename="../Debugger/DebugUI.py" line="770" />
       <source>Ctrl+Shift+PgUp</source>
       <comment>Debug|Previous Breakpoint</comment>
       <translation>Ctrl+Shift+PgUp</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="780" />
+      <location filename="../Debugger/DebugUI.py" line="777" />
       <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;前一个断点&lt;/b&gt;&lt;p&gt;跳转到当前编辑器的前一个断点。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="796" />
-      <location filename="../Debugger/DebugUI.py" line="790" />
-      <location filename="../Debugger/DebugUI.py" line="789" />
+      <location filename="../Debugger/DebugUI.py" line="793" />
+      <location filename="../Debugger/DebugUI.py" line="787" />
+      <location filename="../Debugger/DebugUI.py" line="786" />
       <source>Clear Breakpoints</source>
       <translation>清除断点</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="798" />
+      <location filename="../Debugger/DebugUI.py" line="795" />
       <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
       <translation>&lt;b&gt;清除断点&lt;/b&gt;&lt;p&gt;清除所有编辑器的断点。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="822" />
+      <location filename="../Debugger/DebugUI.py" line="819" />
       <source>&amp;Debug</source>
       <translation>调试(&amp;D)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="824" />
+      <location filename="../Debugger/DebugUI.py" line="821" />
       <source>Sta&amp;rt</source>
       <translation>开始</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="826" />
+      <location filename="../Debugger/DebugUI.py" line="823" />
       <source>&amp;Breakpoints</source>
       <translation>断点(&amp;B)</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="869" />
-      <location filename="../Debugger/DebugUI.py" line="867" />
+      <location filename="../Debugger/DebugUI.py" line="866" />
+      <location filename="../Debugger/DebugUI.py" line="864" />
       <source>Start</source>
       <translation>开始</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="882" />
-      <location filename="../Debugger/DebugUI.py" line="880" />
+      <location filename="../Debugger/DebugUI.py" line="879" />
+      <location filename="../Debugger/DebugUI.py" line="877" />
       <source>Debug</source>
       <translation>调试</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1345" />
+      <location filename="../Debugger/DebugUI.py" line="1342" />
       <source>Message: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1349" />
+      <location filename="../Debugger/DebugUI.py" line="1346" />
       <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1354" />
+      <location filename="../Debugger/DebugUI.py" line="1351" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1366" />
+      <location filename="../Debugger/DebugUI.py" line="1363" />
       <source>Program terminated</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1402" />
+      <location filename="../Debugger/DebugUI.py" line="1399" />
       <source>The program being debugged contains an unspecified syntax error.</source>
       <translation>被调试的程序包含一个未指定的语法错误。</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1422" />
+      <location filename="../Debugger/DebugUI.py" line="1419" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1450" />
+      <location filename="../Debugger/DebugUI.py" line="1447" />
       <source>An unhandled exception occured. See the shell window for details.</source>
       <translation>产生了一个未处理的异常。详细信息参见命令行窗口。</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1497" />
+      <location filename="../Debugger/DebugUI.py" line="1494" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1515" />
+      <location filename="../Debugger/DebugUI.py" line="1512" />
       <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;"&lt;b&gt;{1}&lt;/b&gt;"&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1573" />
+      <location filename="../Debugger/DebugUI.py" line="1570" />
       <source>&lt;p&gt;The program generate the signal "{0}".&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1591" />
+      <location filename="../Debugger/DebugUI.py" line="1588" />
       <source>The program being debugged has terminated unexpectedly.</source>
       <translation>被调试的程序意外终止。</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1652" />
+      <location filename="../Debugger/DebugUI.py" line="1649" />
       <source>No locals available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1699" />
+      <location filename="../Debugger/DebugUI.py" line="1696" />
       <source>Breakpoint Condition Error</source>
       <translation>断点条件错误</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1700" />
+      <location filename="../Debugger/DebugUI.py" line="1697" />
       <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1757" />
+      <location filename="../Debugger/DebugUI.py" line="1754" />
       <source>Watch Expression Error</source>
       <translation>监视表达式出错</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1758" />
+      <location filename="../Debugger/DebugUI.py" line="1755" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1786" />
+      <location filename="../Debugger/DebugUI.py" line="1783" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1791" />
+      <location filename="../Debugger/DebugUI.py" line="1788" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1797" />
+      <location filename="../Debugger/DebugUI.py" line="1794" />
       <source>Watch expression already exists</source>
       <translation>监视表达式已存在</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1962" />
-      <location filename="../Debugger/DebugUI.py" line="1953" />
+      <location filename="../Debugger/DebugUI.py" line="1959" />
+      <location filename="../Debugger/DebugUI.py" line="1950" />
       <source>Coverage Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1955" />
+      <location filename="../Debugger/DebugUI.py" line="1952" />
       <source>Coverage Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2349" />
-      <location filename="../Debugger/DebugUI.py" line="2158" />
-      <location filename="../Debugger/DebugUI.py" line="1963" />
+      <location filename="../Debugger/DebugUI.py" line="2346" />
+      <location filename="../Debugger/DebugUI.py" line="2155" />
+      <location filename="../Debugger/DebugUI.py" line="1960" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>当前项目未定义主脚本。终止</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2157" />
-      <location filename="../Debugger/DebugUI.py" line="2148" />
+      <location filename="../Debugger/DebugUI.py" line="2154" />
+      <location filename="../Debugger/DebugUI.py" line="2145" />
       <source>Profile Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2150" />
+      <location filename="../Debugger/DebugUI.py" line="2147" />
       <source>Profile Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2535" />
+      <location filename="../Debugger/DebugUI.py" line="2532" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation>当前项目未定义主脚本。不能进行调试。</translation>
     </message>
@@ -10768,12 +10768,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1451" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1458" />
       <source>Debug Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1452" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1459" />
       <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -12591,7 +12591,7 @@
   <context>
     <name>Editor</name>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3527" />
+      <location filename="../QScintilla/Editor.py" line="3525" />
       <location filename="../QScintilla/Editor.py" line="470" />
       <location filename="../QScintilla/Editor.py" line="455" />
       <source>Open File</source>
@@ -12663,7 +12663,7 @@
       <translation>取消注释</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9939" />
+      <location filename="../QScintilla/Editor.py" line="9937" />
       <location filename="../QScintilla/Editor.py" line="969" />
       <source>Generate Docstring</source>
       <translation>生成文档字符串</translation>
@@ -12941,7 +12941,7 @@
       <translation type="unfinished">拼写法</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9026" />
+      <location filename="../QScintilla/Editor.py" line="9024" />
       <location filename="../QScintilla/Editor.py" line="1367" />
       <source>Check spelling...</source>
       <translation>正在进行拼写检查…</translation>
@@ -13002,7 +13002,7 @@
       <translation>编辑断点…</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6498" />
+      <location filename="../QScintilla/Editor.py" line="6496" />
       <location filename="../QScintilla/Editor.py" line="1452" />
       <source>Enable breakpoint</source>
       <translation>允许断点</translation>
@@ -13164,444 +13164,444 @@
       <translation>试图改变只读文件。请先保存到另一个文件中。</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="2701" />
+      <location filename="../QScintilla/Editor.py" line="2699" />
       <source>Add Breakpoint</source>
       <translation type="unfinished">添加断点</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="2702" />
+      <location filename="../QScintilla/Editor.py" line="2700" />
       <source>No Python byte code will be created for the selected line. No break point will be set!</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3056" />
+      <location filename="../QScintilla/Editor.py" line="3054" />
       <source>Printing...</source>
       <translation>打印中…</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="3071" />
+      <source>Printing completed</source>
+      <translation>打印已完成</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="3073" />
-      <source>Printing completed</source>
-      <translation>打印已完成</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="3075" />
       <source>Error while printing</source>
       <translation>打印时出错</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3078" />
+      <location filename="../QScintilla/Editor.py" line="3076" />
       <source>Printing aborted</source>
       <translation>打印失败</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3460" />
+      <location filename="../QScintilla/Editor.py" line="3458" />
       <source>File Modified</source>
       <translation>文件已改变</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3461" />
+      <location filename="../QScintilla/Editor.py" line="3459" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
       <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 有未保存的更改。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3528" />
+      <location filename="../QScintilla/Editor.py" line="3526" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 无法打开。&lt;/p&gt;&lt;p&gt;原因:{1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3719" />
-      <location filename="../QScintilla/Editor.py" line="3700" />
-      <location filename="../QScintilla/Editor.py" line="3660" />
+      <location filename="../QScintilla/Editor.py" line="3717" />
+      <location filename="../QScintilla/Editor.py" line="3698" />
+      <location filename="../QScintilla/Editor.py" line="3658" />
       <source>Save File</source>
       <translation>保存文件</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3661" />
+      <location filename="../QScintilla/Editor.py" line="3659" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 无法保存。&lt;br /&gt;原因:{1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3720" />
+      <location filename="../QScintilla/Editor.py" line="3718" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3864" />
+      <location filename="../QScintilla/Editor.py" line="3862" />
       <source>Save File to Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="3865" />
+      <location filename="../QScintilla/Editor.py" line="3863" />
       <source>Enter the complete device file path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5653" />
+      <location filename="../QScintilla/Editor.py" line="5651" />
       <source>Autocompletion</source>
       <translation>自动完成</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5654" />
+      <location filename="../QScintilla/Editor.py" line="5652" />
       <source>Autocompletion is not available because there is no autocompletion source set.</source>
       <translation>自动完成无效,没有设定自动完成源。</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5788" />
+      <location filename="../QScintilla/Editor.py" line="5786" />
       <source>Auto-Completion Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5789" />
+      <location filename="../QScintilla/Editor.py" line="5787" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6085" />
+      <location filename="../QScintilla/Editor.py" line="6083" />
       <source>Call-Tips Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6086" />
+      <location filename="../QScintilla/Editor.py" line="6084" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6502" />
+      <location filename="../QScintilla/Editor.py" line="6500" />
       <source>Disable breakpoint</source>
       <translation>去除断点</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6917" />
+      <location filename="../QScintilla/Editor.py" line="6915" />
       <source>Code Coverage</source>
       <translation>代码覆盖率</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6918" />
+      <location filename="../QScintilla/Editor.py" line="6916" />
       <source>Please select a coverage file</source>
       <translation>请选择一个覆盖率文件</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6993" />
-      <location filename="../QScintilla/Editor.py" line="6985" />
+      <location filename="../QScintilla/Editor.py" line="6991" />
+      <location filename="../QScintilla/Editor.py" line="6983" />
       <source>Show Code Coverage Annotations</source>
       <translation>显示代码覆盖率注解</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6986" />
+      <location filename="../QScintilla/Editor.py" line="6984" />
       <source>All lines have been covered.</source>
       <translation>所有行均被已覆盖。</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6994" />
+      <location filename="../QScintilla/Editor.py" line="6992" />
       <source>There is no coverage file available.</source>
       <translation>没有有效的覆盖率文件。</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7102" />
+      <location filename="../QScintilla/Editor.py" line="7100" />
       <source>Profile Data</source>
       <translation>剖析数据</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7103" />
+      <location filename="../QScintilla/Editor.py" line="7101" />
       <source>Please select a profile file</source>
       <translation>请选择一个剖析文件</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7265" />
-      <location filename="../QScintilla/Editor.py" line="7259" />
+      <location filename="../QScintilla/Editor.py" line="7263" />
+      <location filename="../QScintilla/Editor.py" line="7257" />
       <source>Syntax Error</source>
       <translation>语法错误</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7266" />
+      <location filename="../QScintilla/Editor.py" line="7264" />
       <source>No syntax error message available.</source>
       <translation>语法错误消息无效。</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7513" />
-      <location filename="../QScintilla/Editor.py" line="7507" />
+      <location filename="../QScintilla/Editor.py" line="7511" />
+      <location filename="../QScintilla/Editor.py" line="7505" />
       <source>Warning</source>
       <translation>警告</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7513" />
+      <location filename="../QScintilla/Editor.py" line="7511" />
       <source>No warning messages available.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="7590" />
+      <source>Info: {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7606" />
       <location filename="../QScintilla/Editor.py" line="7592" />
-      <source>Info: {0}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7608" />
-      <location filename="../QScintilla/Editor.py" line="7594" />
       <source>Error: {0}</source>
       <translation>错误:{0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7596" />
+      <location filename="../QScintilla/Editor.py" line="7594" />
       <source>Style: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7601" />
+      <location filename="../QScintilla/Editor.py" line="7599" />
       <source>Warning: {0}</source>
       <translation>警告:{0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7729" />
       <source>Macro Name</source>
       <translation>宏名称</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7729" />
       <source>Select a macro name:</source>
       <translation>选择一个宏名称:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7757" />
+      <location filename="../QScintilla/Editor.py" line="7755" />
       <source>Load macro file</source>
       <translation>输入宏文件</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7803" />
-      <location filename="../QScintilla/Editor.py" line="7759" />
-      <source>Macro files (*.macro)</source>
-      <translation>宏文件 (*.macro)</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7781" />
-      <location filename="../QScintilla/Editor.py" line="7771" />
-      <source>Error loading macro</source>
-      <translation>载入宏文件出错</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7772" />
-      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="7782" />
-      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="7801" />
+      <location filename="../QScintilla/Editor.py" line="7757" />
+      <source>Macro files (*.macro)</source>
+      <translation>宏文件 (*.macro)</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7779" />
+      <location filename="../QScintilla/Editor.py" line="7769" />
+      <source>Error loading macro</source>
+      <translation>载入宏文件出错</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7770" />
+      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7780" />
+      <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="7799" />
       <source>Save macro file</source>
       <translation>保存宏文件</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7819" />
+      <location filename="../QScintilla/Editor.py" line="7817" />
       <source>Save macro</source>
       <translation>保存宏</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7820" />
+      <location filename="../QScintilla/Editor.py" line="7818" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;宏文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7835" />
+      <location filename="../QScintilla/Editor.py" line="7833" />
       <source>Error saving macro</source>
       <translation>保存宏出错</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7836" />
+      <location filename="../QScintilla/Editor.py" line="7834" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7849" />
+      <location filename="../QScintilla/Editor.py" line="7847" />
       <source>Start Macro Recording</source>
       <translation>开始宏录制</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7850" />
+      <location filename="../QScintilla/Editor.py" line="7848" />
       <source>Macro recording is already active. Start new?</source>
       <translation>宏录制已激活。开始录制新宏?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7876" />
+      <location filename="../QScintilla/Editor.py" line="7874" />
       <source>Macro Recording</source>
       <translation>宏录制</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7877" />
+      <location filename="../QScintilla/Editor.py" line="7875" />
       <source>Enter name of the macro:</source>
       <translation>输入宏名称:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8060" />
+      <location filename="../QScintilla/Editor.py" line="8058" />
       <source>{0} (ro)</source>
       <translation>{0}(只读)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8245" />
+      <location filename="../QScintilla/Editor.py" line="8243" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8251" />
+      <location filename="../QScintilla/Editor.py" line="8249" />
       <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
       <translation>&lt;br&gt;&lt;b&gt;警告:&lt;/b&gt;您在重新打开时将丢失所有更改。</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8258" />
+      <location filename="../QScintilla/Editor.py" line="8256" />
       <source>File changed</source>
       <translation>文件已改变</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8351" />
+      <location filename="../QScintilla/Editor.py" line="8349" />
       <source>Reload File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8352" />
+      <location filename="../QScintilla/Editor.py" line="8350" />
       <source>&lt;p&gt;The editor contains unsaved modifications.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reloading it.&lt;/p&gt;&lt;p&gt;Shall the editor really be reloaded?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8452" />
+      <location filename="../QScintilla/Editor.py" line="8450" />
       <source>Drop Error</source>
       <translation>降落误差</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8453" />
+      <location filename="../QScintilla/Editor.py" line="8451" />
       <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="../QScintilla/Editor.py" line="8472" />
+      <source>Resources</source>
+      <translation>资源</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="8474" />
-      <source>Resources</source>
-      <translation>资源</translation>
+      <source>Add file...</source>
+      <translation>添加文件…</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="8475" />
+      <source>Add files...</source>
+      <translation>添加文件…</translation>
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="8476" />
-      <source>Add file...</source>
-      <translation>添加文件…</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="8477" />
-      <source>Add files...</source>
-      <translation>添加文件…</translation>
+      <source>Add aliased file...</source>
+      <translation>添加别名文件…</translation>
     </message>
     <message>
       <location filename="../QScintilla/Editor.py" line="8478" />
-      <source>Add aliased file...</source>
-      <translation>添加别名文件…</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="8480" />
       <source>Add localized resource...</source>
       <translation>添加本地资源…</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8483" />
+      <location filename="../QScintilla/Editor.py" line="8481" />
       <source>Add resource frame</source>
       <translation>添加资源结构</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8503" />
+      <location filename="../QScintilla/Editor.py" line="8501" />
       <source>Add file resource</source>
       <translation>添加文件资源</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8517" />
+      <location filename="../QScintilla/Editor.py" line="8515" />
       <source>Add file resources</source>
       <translation>添加多个文件资源</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8541" />
-      <location filename="../QScintilla/Editor.py" line="8535" />
+      <location filename="../QScintilla/Editor.py" line="8539" />
+      <location filename="../QScintilla/Editor.py" line="8533" />
       <source>Add aliased file resource</source>
       <translation>添加别名文件资源</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8542" />
+      <location filename="../QScintilla/Editor.py" line="8540" />
       <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8617" />
+      <location filename="../QScintilla/Editor.py" line="8615" />
       <source>Package Diagram</source>
       <translation>程序包图</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8618" />
+      <location filename="../QScintilla/Editor.py" line="8616" />
       <source>Include class attributes?</source>
       <translation>包含类属性?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8638" />
+      <location filename="../QScintilla/Editor.py" line="8636" />
       <source>Imports Diagram</source>
       <translation>引用图</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8639" />
+      <location filename="../QScintilla/Editor.py" line="8637" />
       <source>Include imports from external modules?</source>
       <translation>从外部模块包含引用?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8658" />
+      <location filename="../QScintilla/Editor.py" line="8656" />
       <source>Application Diagram</source>
       <translation>应用程序图</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8659" />
+      <location filename="../QScintilla/Editor.py" line="8657" />
       <source>Include module names?</source>
       <translation>包含模块名?</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="9028" />
+      <source>Add to dictionary</source>
+      <translation>添加到文件夹</translation>
+    </message>
+    <message>
       <location filename="../QScintilla/Editor.py" line="9030" />
-      <source>Add to dictionary</source>
-      <translation>添加到文件夹</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Editor.py" line="9032" />
       <source>Ignore All</source>
       <translation>全部忽略</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9479" />
+      <location filename="../QScintilla/Editor.py" line="9477" />
       <source>Sort Lines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9480" />
+      <location filename="../QScintilla/Editor.py" line="9478" />
       <source>The selection contains illegal data for a numerical sort.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9573" />
+      <location filename="../QScintilla/Editor.py" line="9571" />
       <source>Register Mouse Click Handler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9574" />
+      <location filename="../QScintilla/Editor.py" line="9572" />
       <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9667" />
+      <location filename="../QScintilla/Editor.py" line="9665" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9673" />
+      <location filename="../QScintilla/Editor.py" line="9671" />
       <source>{0:4d}    {1}
     =&gt;  {2}</source>
       <comment>line number, source code, file name</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9742" />
+      <location filename="../QScintilla/Editor.py" line="9740" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9743" />
+      <location filename="../QScintilla/Editor.py" line="9741" />
       <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -18808,12 +18808,12 @@
   <context>
     <name>EricApplication</name>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="227" />
+      <location filename="../EricWidgets/EricApplication.py" line="226" />
       <source>Loading Style Sheet</source>
       <translation type="unfinished">样式表载入中</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="230" />
+      <location filename="../EricWidgets/EricApplication.py" line="229" />
       <source>&lt;p&gt;The Qt Style Sheet file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -18959,12 +18959,12 @@
   <context>
     <name>EricJsonServer</name>
     <message>
-      <location filename="../EricNetwork/EricJsonServer.py" line="185" />
+      <location filename="../EricNetwork/EricJsonServer.py" line="199" />
       <source>JSON Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricNetwork/EricJsonServer.py" line="186" />
+      <location filename="../EricNetwork/EricJsonServer.py" line="200" />
       <source>&lt;p&gt;The response received from the client could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -19435,39 +19435,39 @@
   <context>
     <name>EricPathPickerBase</name>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="178" />
-      <location filename="../EricWidgets/EricPathPicker.py" line="107" />
-      <location filename="../EricWidgets/EricPathPicker.py" line="100" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="177" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="106" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="99" />
       <source>Enter Path Name</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="175" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="174" />
       <source>Enter Path Names separated by ';'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="520" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="519" />
       <source>Choose a file to open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="522" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="521" />
       <source>Choose files to open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="524" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="523" />
       <source>Choose files and directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="530" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="529" />
       <source>Choose a file to save</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricPathPicker.py" line="532" />
+      <location filename="../EricWidgets/EricPathPicker.py" line="531" />
       <source>Choose a directory</source>
       <translation type="unfinished" />
     </message>
@@ -20249,12 +20249,12 @@
   <context>
     <name>EricTldExtractor</name>
     <message>
-      <location filename="../EricNetwork/EricTldExtractor.py" line="294" />
+      <location filename="../EricNetwork/EricTldExtractor.py" line="293" />
       <source>TLD Data File not found</source>
       <translation type="unfinished">TLD 数据文件未找到</translation>
     </message>
     <message>
-      <location filename="../EricNetwork/EricTldExtractor.py" line="295" />
+      <location filename="../EricNetwork/EricTldExtractor.py" line="294" />
       <source>&lt;p&gt;The file 'effective_tld_names.dat' was not found!&lt;br/&gt;You can download it from '&lt;a href="{0}"&gt;&lt;b&gt;here&lt;/b&gt;&lt;/a&gt;' to one of the following paths:&lt;/p&gt;&lt;ul&gt;{1}&lt;/ul&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -32216,77 +32216,77 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="573" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="575" />
       <source>Backward</source>
       <translation type="unfinished">后退</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="578" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="580" />
       <source>Forward</source>
       <translation type="unfinished">前移</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="583" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="585" />
       <source>Reload</source>
       <translation type="unfinished">重新载入</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="595" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="597" />
       <source>Copy Page URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="601" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="603" />
       <source>Bookmark Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="609" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="611" />
       <source>Zoom in</source>
       <translation type="unfinished">放大</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="614" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="616" />
       <source>Zoom out</source>
       <translation type="unfinished">缩小</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="619" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="621" />
       <source>Zoom reset</source>
       <translation type="unfinished">重置缩放</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="625" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="627" />
       <source>Copy</source>
       <translation type="unfinished">复制</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="631" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="633" />
       <source>Select All</source>
       <translation type="unfinished">全选</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="638" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="640" />
       <source>Close</source>
       <translation type="unfinished">关闭</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="643" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="645" />
       <source>Close Others</source>
       <translation type="unfinished">关闭其它</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="661" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="663" />
       <source>Open Link in New Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="668" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="670" />
       <source>Open Link in Background Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="676" />
+      <location filename="../HelpViewer/HelpViewerImplQWE.py" line="678" />
       <source>Copy URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
@@ -32294,184 +32294,184 @@
   <context>
     <name>HelpViewerWidget</name>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="126" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="127" />
       <source>Open a local file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="132" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="133" />
       <source>Select action from menu</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="148" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="149" />
       <source>Move one page backward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="153" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="154" />
       <source>Move one page forward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="165" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="166" />
       <source>Reload the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="176" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="177" />
       <source>Zoom in on the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="182" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="183" />
       <source>Zoom out on the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="189" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="190" />
       <source>Reset the zoom level of the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="201" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="202" />
       <source>Add a new empty page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="207" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="208" />
       <source>Close the current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="218" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="219" />
       <source>Show or hide the search pane</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="294" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="295" />
       <source>Show list of open pages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="297" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="298" />
       <source>Show the table of contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="300" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="301" />
       <source>Show the help document index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="303" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="304" />
       <source>Show the help search window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="306" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="307" />
       <source>Show list of bookmarks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="444" />
-      <source>eric API Documentation</source>
-      <translation type="unfinished">eric API 文档</translation>
-    </message>
-    <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="445" />
-      <source>Python 3 Documentation</source>
-      <translation type="unfinished">Python 3 文档</translation>
+      <source>eric API Documentation</source>
+      <translation type="unfinished">eric API 文档</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="446" />
-      <source>Qt5 Documentation</source>
-      <translation type="unfinished">Qt5 文档</translation>
+      <source>Python 3 Documentation</source>
+      <translation type="unfinished">Python 3 文档</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="447" />
-      <source>Qt6 Documentation</source>
-      <translation type="unfinished">Qt6 文档</translation>
+      <source>Qt5 Documentation</source>
+      <translation type="unfinished">Qt5 文档</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="448" />
-      <source>PyQt5 Documentation</source>
-      <translation type="unfinished">PyQt5 文档</translation>
+      <source>Qt6 Documentation</source>
+      <translation type="unfinished">Qt6 文档</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="449" />
-      <source>PyQt6 Documentation</source>
-      <translation type="unfinished">PyQt6 文档</translation>
+      <source>PyQt5 Documentation</source>
+      <translation type="unfinished">PyQt5 文档</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="450" />
-      <source>PySide2 Documentation</source>
-      <translation type="unfinished" />
+      <source>PyQt6 Documentation</source>
+      <translation type="unfinished">PyQt6 文档</translation>
     </message>
     <message>
       <location filename="../HelpViewer/HelpViewerWidget.py" line="451" />
+      <source>PySide2 Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="452" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="508" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="509" />
       <source>Open HTML File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="510" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="511" />
       <source>HTML Files (*.htm *.html);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="697" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="698" />
       <source>Help Engine</source>
       <translation type="unfinished">帮助引擎</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="721" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="722" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="732" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="733" />
       <source>eric Help Viewer</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="757" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="758" />
       <source>Manage QtHelp Documents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="760" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="761" />
       <source>Reindex Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="765" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="766" />
       <source>Configure Help Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="858" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="838" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="859" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="839" />
       <source>Clear History</source>
       <translation type="unfinished">清除历史记录</translation>
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="961" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="962" />
       <source>Updating search index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1019" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1020" />
       <source>Filtered by: </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1055" />
-      <location filename="../HelpViewer/HelpViewerWidget.py" line="1050" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1056" />
+      <location filename="../HelpViewer/HelpViewerWidget.py" line="1051" />
       <source>Unfiltered</source>
       <translation type="unfinished" />
     </message>
@@ -42009,22 +42009,22 @@
   <context>
     <name>Histedit</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="76" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="75" />
       <source>Starting histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="104" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="102" />
       <source>Continue histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="131" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="129" />
       <source>Abort histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="159" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="157" />
       <source>Edit Plan</source>
       <translation type="unfinished" />
     </message>
@@ -50135,17 +50135,17 @@
   <context>
     <name>LogViewerPage</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="36" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="33" />
       <source>&lt;b&gt;Message Filters for Standard Output&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stdout.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="43" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="40" />
       <source>&lt;b&gt;Message Filters for Standard Error &lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stderr.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="50" />
+      <location filename="../Preferences/ConfigurationPages/LogViewerPage.py" line="47" />
       <source>&lt;b&gt;Message Filters for both&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress messages received via stdout or stderr.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -51762,8 +51762,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="364" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="347" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="361" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="344" />
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.ui" line="0" />
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.ui" line="0" />
       <source>Press to show the password</source>
@@ -52047,66 +52047,66 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="56" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="53" />
       <source>Automatic</source>
       <translation type="unfinished">自动</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="55" />
+      <source>Light</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="58" />
-      <source>Light</source>
+      <source>Dark</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="61" />
-      <source>Dark</source>
+      <source>Blue Cerulean</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="64" />
-      <source>Blue Cerulean</source>
+      <source>Brown Sand</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="67" />
-      <source>Brown Sand</source>
+      <source>Blue NCS</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="70" />
-      <source>Blue NCS</source>
+      <source>High Contrast</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="73" />
-      <source>High Contrast</source>
+      <source>Blue Icy</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="76" />
-      <source>Blue Icy</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="79" />
       <source>Qt</source>
       <translation type="unfinished">Qt</translation>
     </message>
     <message>
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="90" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="88" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="85" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="82" />
+      <source>All Files (*)</source>
+      <translation type="unfinished">所有文件 (*)</translation>
+    </message>
+    <message>
       <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="93" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="91" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="88" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="85" />
-      <source>All Files (*)</source>
-      <translation type="unfinished">所有文件 (*)</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="96" />
       <source>open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="360" />
-      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="343" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="357" />
+      <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="340" />
       <source>Press to hide the password</source>
       <translation type="unfinished" />
     </message>
@@ -58366,62 +58366,62 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="44" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="42" />
       <source>Enter requirements file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="47" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="45" />
       <source>Press to select the requirements file through a file selection dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="50" />
+      <source>Text Files (*.txt);;All Files (*)</source>
+      <translation type="unfinished">文本文件 (*.txt);;所有文件 (*)</translation>
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="52" />
-      <source>Text Files (*.txt);;All Files (*)</source>
-      <translation type="unfinished">文本文件 (*.txt);;所有文件 (*)</translation>
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="54" />
       <source>Enter 'pyproject.toml' file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="57" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="55" />
       <source>Press to select the 'pyproject.toml' file through a file selection dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="60" />
+      <source>TOML Files (*.toml);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="62" />
-      <source>TOML Files (*.toml);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="64" />
       <source>Enter package file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="67" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="65" />
       <source>Press to select the package file through a file selection dialog.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="73" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="71" />
       <source>Python Wheel (*.whl);;Archive Files (*.tar.gz *.zip);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="80" />
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="78" />
       <source>Enter file name:</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../PipInterface/PipFileSelectionDialog.py" line="81" />
+      <source>Press to select a file through a file selection dialog.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../PipInterface/PipFileSelectionDialog.py" line="83" />
-      <source>Press to select a file through a file selection dialog.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../PipInterface/PipFileSelectionDialog.py" line="85" />
       <source>All Files (*)</source>
       <translation type="unfinished">所有文件 (*)</translation>
     </message>
@@ -60851,18 +60851,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1901" />
+      <location filename="../Preferences/__init__.py" line="1907" />
       <source>Export Preferences</source>
       <translation>导出首选项</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1930" />
-      <location filename="../Preferences/__init__.py" line="1903" />
+      <location filename="../Preferences/__init__.py" line="1936" />
+      <location filename="../Preferences/__init__.py" line="1909" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation>属性文件 (*.ini);;所有文件 (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1928" />
+      <location filename="../Preferences/__init__.py" line="1934" />
       <source>Import Preferences</source>
       <translation>导入首选项</translation>
     </message>
@@ -62537,9 +62537,9 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6752" />
-      <location filename="../Project/Project.py" line="6723" />
-      <location filename="../Project/Project.py" line="6677" />
+      <location filename="../Project/Project.py" line="6746" />
+      <location filename="../Project/Project.py" line="6717" />
+      <location filename="../Project/Project.py" line="6671" />
       <location filename="../Project/Project.py" line="4820" />
       <source>Execute Make</source>
       <translation>执行make</translation>
@@ -62560,7 +62560,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6729" />
+      <location filename="../Project/Project.py" line="6723" />
       <location filename="../Project/Project.py" line="4839" />
       <source>Test for Changes</source>
       <translation>测试变更</translation>
@@ -63095,37 +63095,37 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6678" />
+      <location filename="../Project/Project.py" line="6672" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6724" />
+      <location filename="../Project/Project.py" line="6718" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6732" />
+      <location filename="../Project/Project.py" line="6726" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6737" />
+      <location filename="../Project/Project.py" line="6731" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6753" />
+      <location filename="../Project/Project.py" line="6747" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7172" />
+      <location filename="../Project/Project.py" line="7166" />
       <source>Interpreter Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7173" />
+      <location filename="../Project/Project.py" line="7167" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation type="unfinished" />
     </message>
@@ -74145,7 +74145,7 @@
       <translation type="unfinished">显示源代码</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2178" />
+      <location filename="../QScintilla/Shell.py" line="2179" />
       <location filename="../QScintilla/Shell.py" line="1907" />
       <location filename="../QScintilla/Shell.py" line="1906" />
       <location filename="../QScintilla/Shell.py" line="401" />
@@ -74275,59 +74275,59 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2329" />
+      <location filename="../QScintilla/Shell.py" line="2330" />
       <source>Drop Error</source>
       <translation>降落误差</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2330" />
+      <location filename="../QScintilla/Shell.py" line="2331" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; 不是一个文件。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2576" />
-      <location filename="../QScintilla/Shell.py" line="2562" />
-      <location filename="../QScintilla/Shell.py" line="2541" />
-      <source>Save Shell Contents</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="2543" />
-      <source>Text Files (*.txt);;All Files (*)</source>
-      <translation type="unfinished">文本文件 (*.txt);;所有文件 (*)</translation>
-    </message>
-    <message>
-      <location filename="../QScintilla/Shell.py" line="2563" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-      <translation type="unfinished">&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Shell.py" line="2577" />
+      <location filename="../QScintilla/Shell.py" line="2563" />
+      <location filename="../QScintilla/Shell.py" line="2542" />
+      <source>Save Shell Contents</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2544" />
+      <source>Text Files (*.txt);;All Files (*)</source>
+      <translation type="unfinished">文本文件 (*.txt);;所有文件 (*)</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2564" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2578" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 无法保存。&lt;br /&gt;原因:{1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2591" />
+      <location filename="../QScintilla/Shell.py" line="2592" />
       <source>&lt;tr&gt;&lt;td&gt;%restart&lt;/td&gt;&lt;td&gt;Kill the shell and start a new one.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%clear&lt;/td&gt;&lt;td&gt;Clear the display of the shell window.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%start [environment]&lt;/td&gt;&lt;td&gt;Start a shell for a virtual environment with the given name. If no name is given, a default shell is started.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%envs&lt;br/&gt;%environments&lt;/td&gt;&lt;td&gt;Show a list of known virtual environment names.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%which&lt;/td&gt;&lt;td&gt;Show the name of the active virtual environment.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%hist [n]&lt;br/&gt;%history [n]&lt;/td&gt;&lt;td&gt;Show the most recent 'n' entries of the history. If 'n' is not given, show all entries.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%shist&lt;br/&gt;%shistory&lt;br/&gt;%select_history&lt;/td&gt;&lt;td&gt;Select a command from the history.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%chist&lt;br/&gt;%chistory&lt;br/&gt;%clear_history&lt;/td&gt;&lt;td&gt;Clear the current history after confirmation.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%help&lt;/td&gt;&lt;td&gt;Show this help text.&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2613" />
+      <location filename="../QScintilla/Shell.py" line="2614" />
       <source>&lt;tr&gt;&lt;td&gt;%quit&lt;br/&gt;%quit()&lt;br/&gt;%exit&lt;br/&gt;%exit()&lt;/td&gt;&lt;td&gt;Exit the application.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;These commands are available through the window menus as well.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2621" />
+      <location filename="../QScintilla/Shell.py" line="2622" />
       <source>&lt;/table&gt;&lt;p&gt;These commands are available through the context menu as well.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Shell.py" line="2628" />
-      <source>Shell Special Commands</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/Shell.py" line="2629" />
+      <source>Shell Special Commands</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Shell.py" line="2630" />
       <source>The shell supports these special commands:</source>
       <translation type="unfinished" />
     </message>
@@ -90217,2546 +90217,2566 @@
   <context>
     <name>UserInterface</name>
     <message>
-      <location filename="../UI/UserInterface.py" line="308" />
+      <location filename="../UI/UserInterface.py" line="314" />
       <source>Initializing Basic Services...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="343" />
+      <location filename="../UI/UserInterface.py" line="349" />
       <source>Initializing Plugin Manager...</source>
       <translation>初始化插件管理器…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="350" />
+      <location filename="../UI/UserInterface.py" line="356" />
       <source>Generating Main User Interface...</source>
       <translation>生成主用户界面…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="408" />
+      <location filename="../UI/UserInterface.py" line="414" />
       <source>Setting up signal/slot-connections...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="602" />
+      <location filename="../UI/UserInterface.py" line="607" />
       <source>Initializing Tools...</source>
       <translation>初始化工具…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="613" />
+      <location filename="../UI/UserInterface.py" line="618" />
       <source>Registering Objects...</source>
       <translation>注册对象…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="647" />
+      <location filename="../UI/UserInterface.py" line="652" />
       <source>Initializing Actions...</source>
       <translation>初始化动作…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="649" />
+      <location filename="../UI/UserInterface.py" line="654" />
       <source>Initializing Menus...</source>
       <translation>初始化菜单…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="651" />
+      <location filename="../UI/UserInterface.py" line="656" />
       <source>Initializing Toolbars...</source>
       <translation>初始化工具栏…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="653" />
+      <location filename="../UI/UserInterface.py" line="658" />
       <source>Initializing Statusbar...</source>
       <translation>初始化状态栏…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="680" />
+      <location filename="../UI/UserInterface.py" line="685" />
       <source>Initializing Single Application Server...</source>
       <translation>初始化单应用程序服务器…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="686" />
-      <source>Initializing Plugins...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="689" />
-      <source>Activating Plugins...</source>
-      <translation>激活插件…</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="691" />
-      <source>Generating Plugins Toolbars...</source>
-      <translation>生成插件工具栏…</translation>
+      <source>Initializing Plugins...</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="694" />
+      <source>Activating Plugins...</source>
+      <translation>激活插件…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="696" />
+      <source>Generating Plugins Toolbars...</source>
+      <translation>生成插件工具栏…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="699" />
       <source>Cleaning Plugins Download Area...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="704" />
+      <location filename="../UI/UserInterface.py" line="709" />
       <source>Restoring Toolbarmanager...</source>
       <translation>恢复工具拦管理器…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="712" />
+      <location filename="../UI/UserInterface.py" line="717" />
       <source>Setting View Profile...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="725" />
-      <source>Reading Tasks...</source>
-      <translation>读取任务…</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="730" />
-      <source>Reading Templates...</source>
-      <translation>读取模板…</translation>
+      <source>Reading Tasks...</source>
+      <translation>读取任务…</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="735" />
+      <source>Reading Templates...</source>
+      <translation>读取模板…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="740" />
       <source>Starting Debugger...</source>
       <translation>启动调试器…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2195" />
-      <location filename="../UI/UserInterface.py" line="1086" />
+      <location filename="../UI/UserInterface.py" line="2200" />
+      <location filename="../UI/UserInterface.py" line="1091" />
       <source>Left Toolbox</source>
       <translation>左工具箱</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2241" />
-      <location filename="../UI/UserInterface.py" line="1096" />
+      <location filename="../UI/UserInterface.py" line="2246" />
+      <location filename="../UI/UserInterface.py" line="1101" />
       <source>Horizontal Toolbox</source>
       <translation>横向工具箱</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2218" />
-      <location filename="../UI/UserInterface.py" line="1107" />
+      <location filename="../UI/UserInterface.py" line="2223" />
+      <location filename="../UI/UserInterface.py" line="1112" />
       <source>Right Toolbox</source>
       <translation>右工具箱</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2037" />
-      <location filename="../UI/UserInterface.py" line="1301" />
-      <location filename="../UI/UserInterface.py" line="1117" />
+      <location filename="../UI/UserInterface.py" line="2042" />
+      <location filename="../UI/UserInterface.py" line="1306" />
+      <location filename="../UI/UserInterface.py" line="1122" />
       <source>Multiproject-Viewer</source>
       <translation>多重项目浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2015" />
-      <location filename="../UI/UserInterface.py" line="1307" />
-      <location filename="../UI/UserInterface.py" line="1123" />
+      <location filename="../UI/UserInterface.py" line="2020" />
+      <location filename="../UI/UserInterface.py" line="1312" />
+      <location filename="../UI/UserInterface.py" line="1128" />
       <source>Project-Viewer</source>
       <translation>项目浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2577" />
-      <location filename="../UI/UserInterface.py" line="2576" />
-      <location filename="../UI/UserInterface.py" line="1314" />
-      <location filename="../UI/UserInterface.py" line="1130" />
+      <location filename="../UI/UserInterface.py" line="2582" />
+      <location filename="../UI/UserInterface.py" line="2581" />
+      <location filename="../UI/UserInterface.py" line="1319" />
+      <location filename="../UI/UserInterface.py" line="1135" />
       <source>Find/Replace In Files</source>
       <translation>在文件中查找/替换</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2600" />
-      <location filename="../UI/UserInterface.py" line="2599" />
-      <location filename="../UI/UserInterface.py" line="1321" />
-      <location filename="../UI/UserInterface.py" line="1137" />
+      <location filename="../UI/UserInterface.py" line="2605" />
+      <location filename="../UI/UserInterface.py" line="2604" />
+      <location filename="../UI/UserInterface.py" line="1326" />
+      <location filename="../UI/UserInterface.py" line="1142" />
       <source>Find File</source>
       <translation type="unfinished">查找文件</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1327" />
-      <location filename="../UI/UserInterface.py" line="1143" />
+      <location filename="../UI/UserInterface.py" line="1332" />
+      <location filename="../UI/UserInterface.py" line="1148" />
       <source>VCS Status</source>
       <translation type="unfinished">版本控制系统状态</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2170" />
-      <location filename="../UI/UserInterface.py" line="1334" />
-      <location filename="../UI/UserInterface.py" line="1150" />
+      <location filename="../UI/UserInterface.py" line="2175" />
+      <location filename="../UI/UserInterface.py" line="1339" />
+      <location filename="../UI/UserInterface.py" line="1155" />
       <source>Template-Viewer</source>
       <translation>模板浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2103" />
-      <location filename="../UI/UserInterface.py" line="1341" />
-      <location filename="../UI/UserInterface.py" line="1157" />
+      <location filename="../UI/UserInterface.py" line="2108" />
+      <location filename="../UI/UserInterface.py" line="1346" />
+      <location filename="../UI/UserInterface.py" line="1162" />
       <source>File-Browser</source>
       <translation>文件浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1348" />
-      <location filename="../UI/UserInterface.py" line="1164" />
+      <location filename="../UI/UserInterface.py" line="1353" />
+      <location filename="../UI/UserInterface.py" line="1169" />
       <source>Symbols</source>
       <translation>符号</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2059" />
-      <location filename="../UI/UserInterface.py" line="1370" />
-      <location filename="../UI/UserInterface.py" line="1364" />
-      <location filename="../UI/UserInterface.py" line="1174" />
+      <location filename="../UI/UserInterface.py" line="2064" />
+      <location filename="../UI/UserInterface.py" line="1375" />
+      <location filename="../UI/UserInterface.py" line="1369" />
+      <location filename="../UI/UserInterface.py" line="1179" />
       <source>Debug-Viewer</source>
       <translation>调试浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2431" />
-      <location filename="../UI/UserInterface.py" line="2430" />
-      <location filename="../UI/UserInterface.py" line="1377" />
-      <location filename="../UI/UserInterface.py" line="1181" />
+      <location filename="../UI/UserInterface.py" line="2436" />
+      <location filename="../UI/UserInterface.py" line="2435" />
+      <location filename="../UI/UserInterface.py" line="1382" />
+      <location filename="../UI/UserInterface.py" line="1186" />
       <source>Code Documentation Viewer</source>
       <translation>代码文档查看器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2646" />
-      <location filename="../UI/UserInterface.py" line="2645" />
-      <location filename="../UI/UserInterface.py" line="1384" />
-      <location filename="../UI/UserInterface.py" line="1188" />
+      <location filename="../UI/UserInterface.py" line="2651" />
+      <location filename="../UI/UserInterface.py" line="2650" />
+      <location filename="../UI/UserInterface.py" line="1389" />
+      <location filename="../UI/UserInterface.py" line="1193" />
       <source>Help Viewer</source>
       <translation type="unfinished">帮助浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3550" />
-      <location filename="../UI/UserInterface.py" line="2526" />
-      <location filename="../UI/UserInterface.py" line="2525" />
-      <location filename="../UI/UserInterface.py" line="1390" />
-      <location filename="../UI/UserInterface.py" line="1194" />
+      <location filename="../UI/UserInterface.py" line="3575" />
+      <location filename="../UI/UserInterface.py" line="2531" />
+      <location filename="../UI/UserInterface.py" line="2530" />
+      <location filename="../UI/UserInterface.py" line="1395" />
+      <location filename="../UI/UserInterface.py" line="1199" />
       <source>Plugin Repository</source>
       <translation>插件储存库</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2550" />
-      <location filename="../UI/UserInterface.py" line="2549" />
-      <location filename="../UI/UserInterface.py" line="1396" />
-      <location filename="../UI/UserInterface.py" line="1200" />
-      <source>Virtual Environments</source>
-      <translation>虚拟环境</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2458" />
-      <location filename="../UI/UserInterface.py" line="2457" />
+      <location filename="../UI/UserInterface.py" line="2555" />
+      <location filename="../UI/UserInterface.py" line="2554" />
       <location filename="../UI/UserInterface.py" line="1401" />
       <location filename="../UI/UserInterface.py" line="1205" />
+      <source>Virtual Environments</source>
+      <translation>虚拟环境</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2463" />
+      <location filename="../UI/UserInterface.py" line="2462" />
+      <location filename="../UI/UserInterface.py" line="1406" />
+      <location filename="../UI/UserInterface.py" line="1210" />
       <source>PyPI</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2480" />
-      <location filename="../UI/UserInterface.py" line="2479" />
-      <location filename="../UI/UserInterface.py" line="1408" />
-      <location filename="../UI/UserInterface.py" line="1210" />
+      <location filename="../UI/UserInterface.py" line="2485" />
+      <location filename="../UI/UserInterface.py" line="2484" />
+      <location filename="../UI/UserInterface.py" line="1413" />
+      <location filename="../UI/UserInterface.py" line="1215" />
       <source>Conda</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1415" />
-      <location filename="../UI/UserInterface.py" line="1217" />
+      <location filename="../UI/UserInterface.py" line="1420" />
+      <location filename="../UI/UserInterface.py" line="1222" />
       <source>Cooperation</source>
       <translation>协作</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2358" />
-      <location filename="../UI/UserInterface.py" line="1419" />
-      <location filename="../UI/UserInterface.py" line="1222" />
+      <location filename="../UI/UserInterface.py" line="2363" />
+      <location filename="../UI/UserInterface.py" line="1424" />
+      <location filename="../UI/UserInterface.py" line="1227" />
       <source>IRC</source>
       <translation>IRC</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2502" />
-      <location filename="../UI/UserInterface.py" line="2501" />
-      <location filename="../UI/UserInterface.py" line="1425" />
-      <location filename="../UI/UserInterface.py" line="1229" />
+      <location filename="../UI/UserInterface.py" line="2507" />
+      <location filename="../UI/UserInterface.py" line="2506" />
+      <location filename="../UI/UserInterface.py" line="1430" />
+      <location filename="../UI/UserInterface.py" line="1234" />
       <source>MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2081" />
-      <location filename="../UI/UserInterface.py" line="1433" />
-      <location filename="../UI/UserInterface.py" line="1237" />
+      <location filename="../UI/UserInterface.py" line="2086" />
+      <location filename="../UI/UserInterface.py" line="1438" />
+      <location filename="../UI/UserInterface.py" line="1242" />
       <source>Shell</source>
       <translation>命令行</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2147" />
-      <location filename="../UI/UserInterface.py" line="1439" />
-      <location filename="../UI/UserInterface.py" line="1241" />
+      <location filename="../UI/UserInterface.py" line="2152" />
+      <location filename="../UI/UserInterface.py" line="1444" />
+      <location filename="../UI/UserInterface.py" line="1246" />
       <source>Task-Viewer</source>
       <translation>任务浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2125" />
-      <location filename="../UI/UserInterface.py" line="1445" />
-      <location filename="../UI/UserInterface.py" line="1245" />
+      <location filename="../UI/UserInterface.py" line="2130" />
+      <location filename="../UI/UserInterface.py" line="1450" />
+      <location filename="../UI/UserInterface.py" line="1250" />
       <source>Log-Viewer</source>
       <translation>日志浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1452" />
-      <location filename="../UI/UserInterface.py" line="1252" />
+      <location filename="../UI/UserInterface.py" line="1457" />
+      <location filename="../UI/UserInterface.py" line="1257" />
       <source>Numbers</source>
       <translation>数字</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1827" />
+      <location filename="../UI/UserInterface.py" line="1832" />
       <source>{0} - Passive Mode</source>
       <translation>{0} - 被动模式</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1836" />
-      <location filename="../UI/UserInterface.py" line="1830" />
+      <location filename="../UI/UserInterface.py" line="1841" />
+      <location filename="../UI/UserInterface.py" line="1835" />
       <source>{0} - {1} - Passive Mode</source>
       <translation>{0} - {1} - 被动模式</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1842" />
+      <location filename="../UI/UserInterface.py" line="1847" />
       <source>{0} - {1} - {2} - Passive Mode</source>
       <translation>{0} - {1} - {2} - 被动模式</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1868" />
+      <location filename="../UI/UserInterface.py" line="1873" />
       <source>Quit</source>
       <translation>退出</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1870" />
+      <location filename="../UI/UserInterface.py" line="1875" />
       <source>&amp;Quit</source>
       <translation>退出(&amp;Q)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1871" />
+      <location filename="../UI/UserInterface.py" line="1876" />
       <source>Ctrl+Q</source>
       <comment>File|Quit</comment>
       <translation>Ctrl+Q</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1876" />
+      <location filename="../UI/UserInterface.py" line="1881" />
       <source>Quit the IDE</source>
       <translation>退出程序</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1878" />
+      <location filename="../UI/UserInterface.py" line="1883" />
       <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="1892" />
-      <location filename="../UI/UserInterface.py" line="1890" />
+      <location filename="../UI/UserInterface.py" line="1897" />
+      <location filename="../UI/UserInterface.py" line="1895" />
       <source>Restart</source>
       <translation type="unfinished">重启</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1893" />
-      <source>Ctrl+Shift+Q</source>
-      <comment>File|Quit</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1898" />
+      <source>Ctrl+Shift+Q</source>
+      <comment>File|Quit</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1903" />
       <source>Restart the IDE</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1900" />
+      <location filename="../UI/UserInterface.py" line="1905" />
       <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1918" />
-      <location filename="../UI/UserInterface.py" line="1911" />
+      <location filename="../UI/UserInterface.py" line="1923" />
+      <location filename="../UI/UserInterface.py" line="1916" />
       <source>Save session</source>
       <translation>保存会话</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1912" />
+      <location filename="../UI/UserInterface.py" line="1917" />
       <source>Save session...</source>
       <translation>保存会话…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1920" />
+      <location filename="../UI/UserInterface.py" line="1925" />
       <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7729" />
-      <location filename="../UI/UserInterface.py" line="1937" />
-      <location filename="../UI/UserInterface.py" line="1930" />
+      <location filename="../UI/UserInterface.py" line="7767" />
+      <location filename="../UI/UserInterface.py" line="1942" />
+      <location filename="../UI/UserInterface.py" line="1935" />
       <source>Load session</source>
       <translation type="unfinished">载入会话</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1931" />
+      <location filename="../UI/UserInterface.py" line="1936" />
       <source>Load session...</source>
       <translation>加载会话…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1939" />
+      <location filename="../UI/UserInterface.py" line="1944" />
       <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1949" />
+      <location filename="../UI/UserInterface.py" line="1954" />
       <source>New Window</source>
       <translation>新建窗口</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1951" />
+      <location filename="../UI/UserInterface.py" line="1956" />
       <source>New &amp;Window</source>
       <translation>新建窗口(&amp;W)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1952" />
-      <source>Ctrl+Shift+N</source>
-      <comment>File|New Window</comment>
-      <translation>Ctrl+Shift+N</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="1957" />
+      <source>Ctrl+Shift+N</source>
+      <comment>File|New Window</comment>
+      <translation>Ctrl+Shift+N</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="1962" />
       <source>Open a new eric instance</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1959" />
+      <location filename="../UI/UserInterface.py" line="1964" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1973" />
-      <location filename="../UI/UserInterface.py" line="1971" />
+      <location filename="../UI/UserInterface.py" line="1978" />
+      <location filename="../UI/UserInterface.py" line="1976" />
       <source>Edit Profile</source>
       <translation>编辑模式</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1980" />
+      <location filename="../UI/UserInterface.py" line="1985" />
       <source>Activate the edit view profile</source>
       <translation>激活编辑视图模式</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1982" />
+      <location filename="../UI/UserInterface.py" line="1987" />
       <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;编辑模式&lt;/b&gt;&lt;p&gt;激活“编辑视图模式”。如果激活了该模式,则显示的窗口将按“视图模式配置”对话框进行配置。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="1995" />
-      <location filename="../UI/UserInterface.py" line="1993" />
+      <location filename="../UI/UserInterface.py" line="2000" />
+      <location filename="../UI/UserInterface.py" line="1998" />
       <source>Debug Profile</source>
       <translation>调试模式</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2002" />
+      <location filename="../UI/UserInterface.py" line="2007" />
       <source>Activate the debug view profile</source>
       <translation>激活调试模式</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2004" />
+      <location filename="../UI/UserInterface.py" line="2009" />
       <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;调试模式&lt;/b&gt;&lt;p&gt;激活“调试视图模式”。如果激活了该模式,则显示的窗口将按“视图模式配置”对话框进行配置。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2016" />
+      <location filename="../UI/UserInterface.py" line="2021" />
       <source>&amp;Project-Viewer</source>
       <translation>项目浏览器(&amp;P)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2017" />
+      <location filename="../UI/UserInterface.py" line="2022" />
       <source>Alt+Shift+P</source>
       <translation>Alt+Shift+P</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2023" />
+      <location filename="../UI/UserInterface.py" line="2028" />
       <source>Switch the input focus to the Project-Viewer window.</source>
       <translation>将输入焦点切换至项目查看器窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2026" />
+      <location filename="../UI/UserInterface.py" line="2031" />
       <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2038" />
+      <location filename="../UI/UserInterface.py" line="2043" />
       <source>&amp;Multiproject-Viewer</source>
       <translation>多重项目浏览器(&amp;M)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2039" />
+      <location filename="../UI/UserInterface.py" line="2044" />
       <source>Alt+Shift+M</source>
       <translation>Alt+Shift+M</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2045" />
+      <location filename="../UI/UserInterface.py" line="2050" />
       <source>Switch the input focus to the Multiproject-Viewer window.</source>
       <translation>将输入焦点切换至多项目查看器窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2048" />
+      <location filename="../UI/UserInterface.py" line="2053" />
       <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2060" />
+      <location filename="../UI/UserInterface.py" line="2065" />
       <source>&amp;Debug-Viewer</source>
       <translation>调试浏览器(&amp;D)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2061" />
+      <location filename="../UI/UserInterface.py" line="2066" />
       <source>Alt+Shift+D</source>
       <translation>Alt+Shift+D</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2067" />
+      <location filename="../UI/UserInterface.py" line="2072" />
       <source>Switch the input focus to the Debug-Viewer window.</source>
       <translation>将输入焦点切换至调试查看器窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2070" />
+      <location filename="../UI/UserInterface.py" line="2075" />
       <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2082" />
+      <location filename="../UI/UserInterface.py" line="2087" />
       <source>&amp;Shell</source>
       <translation>命令行(&amp;S)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2083" />
+      <location filename="../UI/UserInterface.py" line="2088" />
       <source>Alt+Shift+S</source>
       <translation>Alt+Shift+S</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2089" />
+      <location filename="../UI/UserInterface.py" line="2094" />
       <source>Switch the input focus to the Shell window.</source>
       <translation>将输入焦点切换至 Shell 窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2092" />
+      <location filename="../UI/UserInterface.py" line="2097" />
       <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2104" />
+      <location filename="../UI/UserInterface.py" line="2109" />
       <source>&amp;File-Browser</source>
       <translation>文件浏览器(&amp;F)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2105" />
+      <location filename="../UI/UserInterface.py" line="2110" />
       <source>Alt+Shift+F</source>
       <translation>Alt+Shift+F</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2111" />
+      <location filename="../UI/UserInterface.py" line="2116" />
       <source>Switch the input focus to the File-Browser window.</source>
       <translation>将输入焦点切换至文件浏览器窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2114" />
+      <location filename="../UI/UserInterface.py" line="2119" />
       <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="2126" />
+      <location filename="../UI/UserInterface.py" line="2131" />
       <source>Lo&amp;g-Viewer</source>
       <translation>日志浏览器(&amp;G)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2127" />
+      <location filename="../UI/UserInterface.py" line="2132" />
       <source>Alt+Shift+G</source>
       <translation>Alt+Shift+G</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2133" />
+      <location filename="../UI/UserInterface.py" line="2138" />
       <source>Switch the input focus to the Log-Viewer window.</source>
       <translation>将输入焦点切换至日志查看器窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2136" />
+      <location filename="../UI/UserInterface.py" line="2141" />
       <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="2148" />
+      <location filename="../UI/UserInterface.py" line="2153" />
       <source>&amp;Task-Viewer</source>
       <translation>任务浏览器(&amp;T)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2149" />
+      <location filename="../UI/UserInterface.py" line="2154" />
       <source>Alt+Shift+T</source>
       <translation>Alt+Shift+T</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2155" />
+      <location filename="../UI/UserInterface.py" line="2160" />
       <source>Switch the input focus to the Task-Viewer window.</source>
       <translation>将输入焦点切换至任务浏览器窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2158" />
+      <location filename="../UI/UserInterface.py" line="2163" />
       <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2171" />
+      <location filename="../UI/UserInterface.py" line="2176" />
       <source>Templ&amp;ate-Viewer</source>
       <translation>模板浏览器(&amp;A)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2172" />
+      <location filename="../UI/UserInterface.py" line="2177" />
       <source>Alt+Shift+A</source>
       <translation>Alt+Shift+A</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2178" />
+      <location filename="../UI/UserInterface.py" line="2183" />
       <source>Switch the input focus to the Template-Viewer window.</source>
       <translation>将输入焦点切换至模板浏览器窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2181" />
+      <location filename="../UI/UserInterface.py" line="2186" />
       <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2196" />
+      <location filename="../UI/UserInterface.py" line="2201" />
       <source>&amp;Left Toolbox</source>
       <translation>左工具箱(&amp;L)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2203" />
+      <location filename="../UI/UserInterface.py" line="2208" />
       <source>Toggle the Left Toolbox window</source>
       <translation>切换左工具箱窗口</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2205" />
+      <location filename="../UI/UserInterface.py" line="2210" />
       <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="2219" />
+      <location filename="../UI/UserInterface.py" line="2224" />
       <source>&amp;Right Toolbox</source>
       <translation>右工具箱(&amp;R)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2226" />
+      <location filename="../UI/UserInterface.py" line="2231" />
       <source>Toggle the Right Toolbox window</source>
       <translation>切换右工具箱窗口</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2228" />
+      <location filename="../UI/UserInterface.py" line="2233" />
       <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="2242" />
+      <location filename="../UI/UserInterface.py" line="2247" />
       <source>&amp;Horizontal Toolbox</source>
       <translation>横向工具箱(&amp;H)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2249" />
+      <location filename="../UI/UserInterface.py" line="2254" />
       <source>Toggle the Horizontal Toolbox window</source>
       <translation>切换横向工具箱窗口</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2251" />
+      <location filename="../UI/UserInterface.py" line="2256" />
       <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="2264" />
+      <location filename="../UI/UserInterface.py" line="2269" />
       <source>Left Sidebar</source>
       <translation>左侧边栏</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2265" />
+      <location filename="../UI/UserInterface.py" line="2270" />
       <source>&amp;Left Sidebar</source>
       <translation>左侧边栏(&amp;L)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2272" />
+      <location filename="../UI/UserInterface.py" line="2277" />
       <source>Toggle the left sidebar window</source>
       <translation>切换左侧边栏窗口</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2274" />
+      <location filename="../UI/UserInterface.py" line="2279" />
       <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="2287" />
+      <location filename="../UI/UserInterface.py" line="2292" />
       <source>Right Sidebar</source>
       <translation>右侧边栏</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2288" />
+      <location filename="../UI/UserInterface.py" line="2293" />
       <source>&amp;Right Sidebar</source>
       <translation>右侧边栏(&amp;R)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2295" />
+      <location filename="../UI/UserInterface.py" line="2300" />
       <source>Toggle the right sidebar window</source>
       <translation>切换右侧边栏窗口</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2297" />
+      <location filename="../UI/UserInterface.py" line="2302" />
       <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="2310" />
+      <location filename="../UI/UserInterface.py" line="2315" />
       <source>Bottom Sidebar</source>
       <translation>底栏</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2311" />
+      <location filename="../UI/UserInterface.py" line="2316" />
       <source>&amp;Bottom Sidebar</source>
       <translation>底栏(&amp;B)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2318" />
+      <location filename="../UI/UserInterface.py" line="2323" />
       <source>Toggle the bottom sidebar window</source>
       <translation>切换底栏窗口</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2320" />
+      <location filename="../UI/UserInterface.py" line="2325" />
       <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="2333" />
+      <location filename="../UI/UserInterface.py" line="2338" />
       <source>Cooperation-Viewer</source>
       <translation>协作浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2334" />
+      <location filename="../UI/UserInterface.py" line="2339" />
       <source>Co&amp;operation-Viewer</source>
       <translation>协作浏览器(&amp;O)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2335" />
+      <location filename="../UI/UserInterface.py" line="2340" />
       <source>Alt+Shift+O</source>
       <translation>Alt+Shift+O</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2341" />
+      <location filename="../UI/UserInterface.py" line="2346" />
       <source>Switch the input focus to the Cooperation-Viewer window.</source>
       <translation>将输入焦点切换至协作浏览器窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2344" />
+      <location filename="../UI/UserInterface.py" line="2349" />
       <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="2359" />
+      <location filename="../UI/UserInterface.py" line="2364" />
       <source>&amp;IRC</source>
       <translation>&amp;IRC</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2360" />
+      <location filename="../UI/UserInterface.py" line="2365" />
       <source>Ctrl+Alt+Shift+I</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2366" />
+      <location filename="../UI/UserInterface.py" line="2371" />
       <source>Switch the input focus to the IRC window.</source>
       <translation>将输入焦点切换至 IRC 窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2369" />
+      <location filename="../UI/UserInterface.py" line="2374" />
       <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="2380" />
+      <location filename="../UI/UserInterface.py" line="2385" />
       <source>Symbols-Viewer</source>
       <translation>符号查看器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2381" />
+      <location filename="../UI/UserInterface.py" line="2386" />
       <source>S&amp;ymbols-Viewer</source>
       <translation>符号查看器(&amp;Y)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2382" />
+      <location filename="../UI/UserInterface.py" line="2387" />
       <source>Alt+Shift+Y</source>
       <translation>Alt+Shift+Y</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2388" />
+      <location filename="../UI/UserInterface.py" line="2393" />
       <source>Switch the input focus to the Symbols-Viewer window.</source>
       <translation>将输入焦点切换至符号查看器窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2391" />
+      <location filename="../UI/UserInterface.py" line="2396" />
       <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2405" />
+      <location filename="../UI/UserInterface.py" line="2410" />
       <source>Numbers-Viewer</source>
       <translation>数字查看器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2406" />
+      <location filename="../UI/UserInterface.py" line="2411" />
       <source>Num&amp;bers-Viewer</source>
       <translation>数字查看器(&amp;B)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2407" />
+      <location filename="../UI/UserInterface.py" line="2412" />
       <source>Alt+Shift+B</source>
       <translation>Alt+Shift+B</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2413" />
+      <location filename="../UI/UserInterface.py" line="2418" />
       <source>Switch the input focus to the Numbers-Viewer window.</source>
       <translation>将输入焦点切换至数字查看器窗口。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2416" />
+      <location filename="../UI/UserInterface.py" line="2421" />
       <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2432" />
+      <location filename="../UI/UserInterface.py" line="2437" />
       <source>Ctrl+Alt+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2438" />
-      <source>Switch the input focus to the Code Documentation Viewer window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2443" />
+      <source>Switch the input focus to the Code Documentation Viewer window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2448" />
       <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2459" />
+      <location filename="../UI/UserInterface.py" line="2464" />
       <source>Ctrl+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2465" />
+      <location filename="../UI/UserInterface.py" line="2470" />
       <source>Switch the input focus to the PyPI window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2468" />
+      <location filename="../UI/UserInterface.py" line="2473" />
       <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2481" />
+      <location filename="../UI/UserInterface.py" line="2486" />
       <source>Ctrl+Alt+Shift+C</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2487" />
+      <location filename="../UI/UserInterface.py" line="2492" />
       <source>Switch the input focus to the Conda window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2490" />
+      <location filename="../UI/UserInterface.py" line="2495" />
       <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2503" />
+      <location filename="../UI/UserInterface.py" line="2508" />
       <source>Ctrl+Alt+Shift+M</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2509" />
+      <location filename="../UI/UserInterface.py" line="2514" />
       <source>Switch the input focus to the MicroPython window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2512" />
+      <location filename="../UI/UserInterface.py" line="2517" />
       <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2527" />
+      <location filename="../UI/UserInterface.py" line="2532" />
       <source>Ctrl+Alt+Shift+R</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2533" />
+      <location filename="../UI/UserInterface.py" line="2538" />
       <source>Switch the input focus to the Plugin Repository window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2536" />
+      <location filename="../UI/UserInterface.py" line="2541" />
       <source>&lt;b&gt;Plugin Repository&lt;/b&gt;&lt;p&gt;This switches the input focus to the Plugin Repository window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2551" />
+      <location filename="../UI/UserInterface.py" line="2556" />
       <source>Ctrl+Alt+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2557" />
-      <source>Switch the input focus to the Virtual Environments Manager window.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2562" />
+      <source>Switch the input focus to the Virtual Environments Manager window.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2567" />
       <source>&lt;b&gt;Virtual Environments&lt;/b&gt;&lt;p&gt;This switches the input focus to the Virtual Environments Manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2578" />
+      <location filename="../UI/UserInterface.py" line="2583" />
       <source>Ctrl+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2584" />
+      <location filename="../UI/UserInterface.py" line="2589" />
       <source>Switch the input focus to the Find/Replace In Files window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2587" />
+      <location filename="../UI/UserInterface.py" line="2592" />
       <source>&lt;b&gt;Find/Replace In Files&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find/Replace In Files window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2601" />
+      <location filename="../UI/UserInterface.py" line="2606" />
       <source>Ctrl+Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2607" />
+      <location filename="../UI/UserInterface.py" line="2612" />
       <source>Switch the input focus to the Find File window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2610" />
+      <location filename="../UI/UserInterface.py" line="2615" />
       <source>&lt;b&gt;Find File&lt;/b&gt;&lt;p&gt;This switches the input focus to the Find File window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2624" />
-      <location filename="../UI/UserInterface.py" line="2623" />
+      <location filename="../UI/UserInterface.py" line="2629" />
+      <location filename="../UI/UserInterface.py" line="2628" />
       <source>VCS Status List</source>
       <translation type="unfinished">VCS 状态列表</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2625" />
+      <location filename="../UI/UserInterface.py" line="2630" />
       <source>Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2631" />
+      <location filename="../UI/UserInterface.py" line="2636" />
       <source>Switch the input focus to the VCS Status List window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2634" />
+      <location filename="../UI/UserInterface.py" line="2639" />
       <source>&lt;b&gt;VCS Status List&lt;/b&gt;&lt;p&gt;This switches the input focus to the VCS Status List window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2647" />
+      <location filename="../UI/UserInterface.py" line="2652" />
       <source>Alt+Shift+H</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2653" />
+      <location filename="../UI/UserInterface.py" line="2658" />
       <source>Switch the input focus to the embedded Help Viewer window.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2656" />
+      <location filename="../UI/UserInterface.py" line="2661" />
       <source>&lt;b&gt;Help Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the embedded Help Viewer window. It will show HTML help files and help from Qt help collections.&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2669" />
+      <location filename="../UI/UserInterface.py" line="2674" />
       <source>What's This?</source>
       <translation>这是什么?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2671" />
+      <location filename="../UI/UserInterface.py" line="2676" />
       <source>&amp;What's This?</source>
       <translation>这是什么(&amp;W)?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2672" />
-      <source>Shift+F1</source>
-      <translation>Shift+F1</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2677" />
+      <source>Shift+F1</source>
+      <translation>Shift+F1</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2682" />
       <source>Context sensitive help</source>
       <translation>背景帮助</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2679" />
+      <location filename="../UI/UserInterface.py" line="2684" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation>&lt;b&gt;显示背景帮助&lt;/b&gt;&lt;p&gt;在“这是什么?”模式中,鼠标光标显示为带问号的箭头,通过点击界面元素你可以获得“在做什么”和“怎样使用”的简短描述。使用标题栏中的上下文帮助按钮可以获得此功能。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2692" />
+      <location filename="../UI/UserInterface.py" line="2697" />
       <source>Helpviewer</source>
       <translation>帮助浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2694" />
+      <location filename="../UI/UserInterface.py" line="2699" />
       <source>&amp;Helpviewer...</source>
       <translation>帮助浏览器(&amp;H)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2695" />
-      <source>F1</source>
-      <translation>F1</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2700" />
+      <source>F1</source>
+      <translation>F1</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2705" />
       <source>Open the helpviewer window</source>
       <translation>打开帮助浏览器窗口</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2702" />
+      <location filename="../UI/UserInterface.py" line="2707" />
       <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is searched in the Qt help collection.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2722" />
+      <location filename="../UI/UserInterface.py" line="2727" />
       <source>Show Versions</source>
       <translation>显示版本</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2723" />
+      <location filename="../UI/UserInterface.py" line="2728" />
       <source>Show &amp;Versions</source>
       <translation>显示版本(&amp;V)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2729" />
+      <location filename="../UI/UserInterface.py" line="2734" />
       <source>Display version information</source>
       <translation>显示版本信息</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2731" />
+      <location filename="../UI/UserInterface.py" line="2736" />
       <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="2744" />
-      <location filename="../UI/UserInterface.py" line="2737" />
+      <location filename="../UI/UserInterface.py" line="2742" />
+      <source>Copy Versions</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2743" />
+      <source>&amp;Copy Versions</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2750" />
+      <source>Copy version information to the clipboard</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2753" />
+      <source>&lt;b&gt;Copy Versions&lt;/b&gt;&lt;p&gt;This generates version information and copies it to the clipboard.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2769" />
+      <location filename="../UI/UserInterface.py" line="2762" />
       <source>Show Error Log</source>
       <translation>显示错误日志</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2738" />
+      <location filename="../UI/UserInterface.py" line="2763" />
       <source>Show Error &amp;Log...</source>
       <translation>显示错误日志(&amp;L)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2746" />
+      <location filename="../UI/UserInterface.py" line="2771" />
       <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="2755" />
+      <location filename="../UI/UserInterface.py" line="2780" />
       <source>Show Install Info</source>
       <translation>显示安装信息</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2756" />
+      <location filename="../UI/UserInterface.py" line="2781" />
       <source>Show Install &amp;Info...</source>
       <translation type="unfinished">显示安装&amp;信息…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2762" />
+      <location filename="../UI/UserInterface.py" line="2787" />
       <source>Show Installation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2764" />
+      <location filename="../UI/UserInterface.py" line="2789" />
       <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4634" />
-      <location filename="../UI/UserInterface.py" line="2774" />
+      <location filename="../UI/UserInterface.py" line="4672" />
+      <location filename="../UI/UserInterface.py" line="2799" />
       <source>Report Bug</source>
       <translation>报告错误</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2774" />
+      <location filename="../UI/UserInterface.py" line="2799" />
       <source>Report &amp;Bug...</source>
       <translation>报告错误(&amp;B)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2776" />
+      <location filename="../UI/UserInterface.py" line="2801" />
       <source>Report a bug</source>
       <translation>报告一个错误</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2778" />
+      <location filename="../UI/UserInterface.py" line="2803" />
       <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="2784" />
+      <location filename="../UI/UserInterface.py" line="2809" />
       <source>Request Feature</source>
       <translation>请求功能</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2785" />
+      <location filename="../UI/UserInterface.py" line="2810" />
       <source>Request &amp;Feature...</source>
       <translation>请求功能(&amp;F)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2791" />
+      <location filename="../UI/UserInterface.py" line="2816" />
       <source>Send a feature request</source>
       <translation>发送一个功能请求</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2793" />
+      <location filename="../UI/UserInterface.py" line="2818" />
       <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="4094" />
-      <location filename="../UI/UserInterface.py" line="2804" />
+      <location filename="../UI/UserInterface.py" line="4120" />
+      <location filename="../UI/UserInterface.py" line="2829" />
       <source>Testing</source>
       <translation>测试</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2806" />
+      <location filename="../UI/UserInterface.py" line="2831" />
       <source>&amp;Testing...</source>
       <translation>测试…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2812" />
+      <location filename="../UI/UserInterface.py" line="2837" />
       <source>Start the testing dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2814" />
+      <location filename="../UI/UserInterface.py" line="2839" />
       <source>&lt;b&gt;Testing&lt;/b&gt;&lt;p&gt;Perform test runs. The dialog gives the ability to select and run a test suite or auto discover them.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2825" />
+      <location filename="../UI/UserInterface.py" line="2850" />
       <source>Restart Last Test</source>
       <translation>重新开始上次测试</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2827" />
+      <location filename="../UI/UserInterface.py" line="2852" />
       <source>&amp;Restart Last Test...</source>
       <translation>&amp;重新开始上次测试…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2833" />
+      <location filename="../UI/UserInterface.py" line="2858" />
       <source>Restarts the last test</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2835" />
+      <location filename="../UI/UserInterface.py" line="2860" />
       <source>&lt;b&gt;Restart Last Test&lt;/b&gt;&lt;p&gt;Restarts the test performed last.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2845" />
+      <location filename="../UI/UserInterface.py" line="2870" />
       <source>Rerun Failed Tests</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2847" />
+      <location filename="../UI/UserInterface.py" line="2872" />
       <source>Rerun Failed Tests...</source>
       <translation>重新运行失败的测试…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2854" />
+      <location filename="../UI/UserInterface.py" line="2879" />
       <source>Rerun failed tests of the last run</source>
       <translation>重新运行上一次运行中失败的测试</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2857" />
+      <location filename="../UI/UserInterface.py" line="2882" />
       <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last test run.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2867" />
-      <source>Test Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2869" />
-      <source>Test &amp;Script...</source>
-      <translation>测试脚本…</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2875" />
-      <source>Run tests of the current script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2877" />
-      <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2884" />
-      <source>Test Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2886" />
-      <source>Test &amp;Project...</source>
-      <translation>测试项目…</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="2892" />
-      <source>Run tests of the current project</source>
+      <source>Test Script</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2894" />
-      <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2903" />
-      <source>Qt-Designer</source>
-      <translation>Qt 设计师</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2905" />
-      <source>Qt-&amp;Designer...</source>
-      <translation>Qt 设计师(&amp;D)…</translation>
+      <source>Test &amp;Script...</source>
+      <translation>测试脚本…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2900" />
+      <source>Run tests of the current script</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2902" />
+      <source>&lt;b&gt;Test Script&lt;/b&gt;&lt;p&gt;Run tests with the current script.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2909" />
+      <source>Test Project</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2911" />
-      <source>Start Qt-Designer</source>
-      <translation>启动 Qt 设计师</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2913" />
-      <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="2922" />
-      <source>Qt-Linguist</source>
-      <translation>Qt 语言家</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2924" />
-      <source>Qt-&amp;Linguist...</source>
-      <translation>Qt 语言家(&amp;L)…</translation>
+      <source>Test &amp;Project...</source>
+      <translation>测试项目…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2917" />
+      <source>Run tests of the current project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2919" />
+      <source>&lt;b&gt;Test Project&lt;/b&gt;&lt;p&gt;Run test of the current project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2928" />
+      <source>Qt-Designer</source>
+      <translation>Qt 设计师</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="2930" />
+      <source>Qt-&amp;Designer...</source>
+      <translation>Qt 设计师(&amp;D)…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2936" />
+      <source>Start Qt-Designer</source>
+      <translation>启动 Qt 设计师</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2938" />
+      <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="2947" />
+      <source>Qt-Linguist</source>
+      <translation>Qt 语言家</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2949" />
+      <source>Qt-&amp;Linguist...</source>
+      <translation>Qt 语言家(&amp;L)…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2955" />
       <source>Start Qt-Linguist</source>
       <translation>启动 Qt 语言家</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2932" />
+      <location filename="../UI/UserInterface.py" line="2957" />
       <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="2940" />
+      <location filename="../UI/UserInterface.py" line="2965" />
       <source>UI Previewer</source>
       <translation>用户界面预览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2942" />
+      <location filename="../UI/UserInterface.py" line="2967" />
       <source>&amp;UI Previewer...</source>
       <translation>用户界面预览器(&amp;U)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2948" />
+      <location filename="../UI/UserInterface.py" line="2973" />
       <source>Start the UI Previewer</source>
       <translation>开启用户界面预览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2950" />
-      <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="2956" />
-      <source>Translations Previewer</source>
-      <translation>翻译预览器</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2958" />
-      <source>&amp;Translations Previewer...</source>
-      <translation>翻译预览器(&amp;T)…</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2964" />
-      <source>Start the Translations Previewer</source>
-      <translation>开启翻译预览器</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="2966" />
-      <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="2975" />
+      <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="2981" />
+      <source>Translations Previewer</source>
+      <translation>翻译预览器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2983" />
+      <source>&amp;Translations Previewer...</source>
+      <translation>翻译预览器(&amp;T)…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2989" />
+      <source>Start the Translations Previewer</source>
+      <translation>开启翻译预览器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="2991" />
+      <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="3000" />
       <source>Compare Files</source>
       <translation>比较文件</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2977" />
-      <source>&amp;Compare Files...</source>
-      <translation>比较文件(&amp;C)…</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3002" />
-      <location filename="../UI/UserInterface.py" line="2983" />
+      <source>&amp;Compare Files...</source>
+      <translation>比较文件(&amp;C)…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3027" />
+      <location filename="../UI/UserInterface.py" line="3008" />
       <source>Compare two files</source>
       <translation>比较两个文件</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2985" />
+      <location filename="../UI/UserInterface.py" line="3010" />
       <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="2994" />
+      <location filename="../UI/UserInterface.py" line="3019" />
       <source>Compare Files side by side</source>
       <translation>并排比较文件</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="2996" />
+      <location filename="../UI/UserInterface.py" line="3021" />
       <source>Compare &amp;Files side by side...</source>
       <translation>并排比较文件(&amp;F)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3004" />
+      <location filename="../UI/UserInterface.py" line="3029" />
       <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="3014" />
+      <location filename="../UI/UserInterface.py" line="3039" />
       <source>SQL Browser</source>
       <translation>SQL 浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3016" />
+      <location filename="../UI/UserInterface.py" line="3041" />
       <source>SQL &amp;Browser...</source>
       <translation>SQL 浏览器(&amp;B)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3022" />
+      <location filename="../UI/UserInterface.py" line="3047" />
       <source>Browse a SQL database</source>
       <translation>浏览 SQL 数据库</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3024" />
-      <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="3038" />
-      <location filename="../UI/UserInterface.py" line="3030" />
-      <source>Mini Editor</source>
-      <translation>小型编辑器</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3032" />
-      <source>Mini &amp;Editor...</source>
-      <translation>小型编辑器(&amp;E)…</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3040" />
-      <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="3049" />
-      <source>Hex Editor</source>
-      <translation>十六进制编辑器</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3051" />
-      <source>&amp;Hex Editor...</source>
-      <translation>十六进制编辑器(&amp;H)…</translation>
+      <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="3063" />
+      <location filename="../UI/UserInterface.py" line="3055" />
+      <source>Mini Editor</source>
+      <translation>小型编辑器</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3057" />
+      <source>Mini &amp;Editor...</source>
+      <translation>小型编辑器(&amp;E)…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3065" />
+      <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="3074" />
+      <source>Hex Editor</source>
+      <translation>十六进制编辑器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3076" />
+      <source>&amp;Hex Editor...</source>
+      <translation>十六进制编辑器(&amp;H)…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3082" />
       <source>Start the eric Hex Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3059" />
+      <location filename="../UI/UserInterface.py" line="3084" />
       <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3069" />
+      <location filename="../UI/UserInterface.py" line="3094" />
       <source>eric Web Browser</source>
       <translation type="unfinished">eric 网页浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3071" />
-      <source>eric &amp;Web Browser...</source>
-      <translation type="unfinished">eric &amp;网页浏览器…</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3077" />
-      <source>Start the eric Web Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3079" />
-      <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3088" />
-      <source>Icon Editor</source>
-      <translation>图标编辑器</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3090" />
-      <source>&amp;Icon Editor...</source>
-      <translation>图标编辑器(&amp;I)…</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3096" />
+      <source>eric &amp;Web Browser...</source>
+      <translation type="unfinished">eric &amp;网页浏览器…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3102" />
+      <source>Start the eric Web Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3104" />
+      <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3113" />
+      <source>Icon Editor</source>
+      <translation>图标编辑器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3115" />
+      <source>&amp;Icon Editor...</source>
+      <translation>图标编辑器(&amp;I)…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3121" />
       <source>Start the eric Icon Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3098" />
+      <location filename="../UI/UserInterface.py" line="3123" />
       <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6494" />
-      <location filename="../UI/UserInterface.py" line="3110" />
+      <location filename="../UI/UserInterface.py" line="6532" />
+      <location filename="../UI/UserInterface.py" line="3135" />
       <source>Snapshot</source>
       <translation>快照</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3112" />
+      <location filename="../UI/UserInterface.py" line="3137" />
       <source>&amp;Snapshot...</source>
       <translation>快照(&amp;S)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3118" />
+      <location filename="../UI/UserInterface.py" line="3143" />
       <source>Take snapshots of a screen region</source>
       <translation>截取屏幕区域的快照</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3120" />
+      <location filename="../UI/UserInterface.py" line="3145" />
       <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="3130" />
+      <location filename="../UI/UserInterface.py" line="3155" />
       <source>eric PDF Viewer</source>
       <translation type="unfinished">eric PDF查看器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3132" />
-      <source>eric PDF &amp;Viewer...</source>
-      <translation type="unfinished">eric PDF&amp;查看器…</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3138" />
-      <source>Start the eric PDF Viewer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3140" />
-      <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3149" />
-      <source>Preferences</source>
-      <translation>首选项</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3151" />
-      <source>&amp;Preferences...</source>
-      <translation>首选项(&amp;P)…</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3157" />
+      <source>eric PDF &amp;Viewer...</source>
+      <translation type="unfinished">eric PDF&amp;查看器…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3163" />
+      <source>Start the eric PDF Viewer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3165" />
+      <source>&lt;b&gt;eric PDF Viewer&lt;/b&gt;&lt;p&gt;Starts the eric PDF Viewer for viewing PDF files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3174" />
+      <source>Preferences</source>
+      <translation>首选项</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3176" />
+      <source>&amp;Preferences...</source>
+      <translation>首选项(&amp;P)…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3182" />
       <source>Set the prefered configuration</source>
       <translation>设定偏好配置</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3159" />
+      <location filename="../UI/UserInterface.py" line="3184" />
       <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="3170" />
+      <location filename="../UI/UserInterface.py" line="3195" />
       <source>Export Preferences</source>
       <translation>导出首选项</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3172" />
+      <location filename="../UI/UserInterface.py" line="3197" />
       <source>E&amp;xport Preferences...</source>
       <translation>导出首选项(&amp;X)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3178" />
+      <location filename="../UI/UserInterface.py" line="3203" />
       <source>Export the current configuration</source>
       <translation>导出当前配置</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3180" />
+      <location filename="../UI/UserInterface.py" line="3205" />
       <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="3189" />
+      <location filename="../UI/UserInterface.py" line="3214" />
       <source>Import Preferences</source>
       <translation>导入首选项</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3191" />
+      <location filename="../UI/UserInterface.py" line="3216" />
       <source>I&amp;mport Preferences...</source>
       <translation>导入首选项(&amp;M)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3198" />
+      <location filename="../UI/UserInterface.py" line="3223" />
       <source>Import a previously exported configuration</source>
       <translation>导入以前导出的配置</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3201" />
+      <location filename="../UI/UserInterface.py" line="3226" />
       <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="3210" />
+      <location filename="../UI/UserInterface.py" line="3235" />
       <source>Export Theme</source>
       <translation type="unfinished">导出主题</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3212" />
-      <source>Export Theme...</source>
-      <translation type="unfinished">导出主题…</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3218" />
-      <source>Export the current theme</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3220" />
-      <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3229" />
-      <source>Import Theme</source>
-      <translation type="unfinished">导入主题</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3231" />
-      <source>Import Theme...</source>
-      <translation type="unfinished">导入主题…</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3237" />
+      <source>Export Theme...</source>
+      <translation type="unfinished">导出主题…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3243" />
+      <source>Export the current theme</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3245" />
+      <source>&lt;b&gt;Export Theme&lt;/b&gt;&lt;p&gt;Export the current theme to a file.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3254" />
+      <source>Import Theme</source>
+      <translation type="unfinished">导入主题</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3256" />
+      <source>Import Theme...</source>
+      <translation type="unfinished">导入主题…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3262" />
       <source>Import a previously exported theme</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3239" />
+      <location filename="../UI/UserInterface.py" line="3264" />
       <source>&lt;b&gt;Import Theme&lt;/b&gt;&lt;p&gt;Import a previously exported theme.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3248" />
+      <location filename="../UI/UserInterface.py" line="3273" />
       <source>Reload APIs</source>
       <translation>重新载入 API</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3248" />
+      <location filename="../UI/UserInterface.py" line="3273" />
       <source>Reload &amp;APIs</source>
       <translation>重新载入 &amp;API</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3250" />
+      <location filename="../UI/UserInterface.py" line="3275" />
       <source>Reload the API information</source>
       <translation>重新载入 API 信息</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3252" />
+      <location filename="../UI/UserInterface.py" line="3277" />
       <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="3266" />
-      <location filename="../UI/UserInterface.py" line="3258" />
+      <location filename="../UI/UserInterface.py" line="3291" />
+      <location filename="../UI/UserInterface.py" line="3283" />
       <source>Show external tools</source>
       <translation>显示外部工具</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3260" />
+      <location filename="../UI/UserInterface.py" line="3285" />
       <source>Show external &amp;tools</source>
       <translation>显示外部工具(&amp;T)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3268" />
+      <location filename="../UI/UserInterface.py" line="3293" />
       <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3278" />
+      <location filename="../UI/UserInterface.py" line="3303" />
       <source>View Profiles</source>
       <translation>视图模式</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3280" />
+      <location filename="../UI/UserInterface.py" line="3305" />
       <source>&amp;View Profiles...</source>
       <translation>视图模式(&amp;V)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3286" />
+      <location filename="../UI/UserInterface.py" line="3311" />
       <source>Configure view profiles</source>
       <translation>配置视图模式</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3288" />
+      <location filename="../UI/UserInterface.py" line="3313" />
       <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="3299" />
+      <location filename="../UI/UserInterface.py" line="3324" />
       <source>Toolbars</source>
       <translation>工具栏</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3301" />
+      <location filename="../UI/UserInterface.py" line="3326" />
       <source>Tool&amp;bars...</source>
       <translation>工具栏(&amp;B)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3307" />
+      <location filename="../UI/UserInterface.py" line="3332" />
       <source>Configure toolbars</source>
       <translation>配置工具栏</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3309" />
+      <location filename="../UI/UserInterface.py" line="3334" />
       <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="3320" />
+      <location filename="../UI/UserInterface.py" line="3345" />
       <source>Keyboard Shortcuts</source>
       <translation>键盘快捷键</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3322" />
+      <location filename="../UI/UserInterface.py" line="3347" />
       <source>Keyboard &amp;Shortcuts...</source>
       <translation>键盘快捷键(&amp;S)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3328" />
+      <location filename="../UI/UserInterface.py" line="3353" />
       <source>Set the keyboard shortcuts</source>
       <translation>设置键盘快捷键</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3330" />
+      <location filename="../UI/UserInterface.py" line="3355" />
       <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="7453" />
-      <location filename="../UI/UserInterface.py" line="7434" />
-      <location filename="../UI/UserInterface.py" line="3340" />
+      <location filename="../UI/UserInterface.py" line="7491" />
+      <location filename="../UI/UserInterface.py" line="7472" />
+      <location filename="../UI/UserInterface.py" line="3365" />
       <source>Export Keyboard Shortcuts</source>
       <translation>导出键盘快捷键</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3342" />
-      <source>&amp;Export Keyboard Shortcuts...</source>
-      <translation>导出键盘快捷键(&amp;E)…</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3348" />
-      <source>Export the keyboard shortcuts</source>
-      <translation>导出键盘快捷键</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3350" />
-      <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="7472" />
-      <location filename="../UI/UserInterface.py" line="3359" />
-      <source>Import Keyboard Shortcuts</source>
-      <translation>导入键盘快捷键</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3361" />
-      <source>&amp;Import Keyboard Shortcuts...</source>
-      <translation>导入键盘快捷键(&amp;I)…</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3367" />
+      <source>&amp;Export Keyboard Shortcuts...</source>
+      <translation>导出键盘快捷键(&amp;E)…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3373" />
+      <source>Export the keyboard shortcuts</source>
+      <translation>导出键盘快捷键</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3375" />
+      <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="7510" />
+      <location filename="../UI/UserInterface.py" line="3384" />
+      <source>Import Keyboard Shortcuts</source>
+      <translation>导入键盘快捷键</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3386" />
+      <source>&amp;Import Keyboard Shortcuts...</source>
+      <translation>导入键盘快捷键(&amp;I)…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3392" />
       <source>Import the keyboard shortcuts</source>
       <translation>导入键盘快捷键</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3369" />
+      <location filename="../UI/UserInterface.py" line="3394" />
       <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="3379" />
+      <location filename="../UI/UserInterface.py" line="3404" />
       <source>Manage SSL Certificates</source>
       <translation>管理 SSL 证书</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3381" />
+      <location filename="../UI/UserInterface.py" line="3406" />
       <source>Manage SSL Certificates...</source>
       <translation>管理 SSL 证书…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3388" />
-      <source>Manage the saved SSL certificates</source>
-      <translation>管理保存的 SSL 证书</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3391" />
-      <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="3401" />
-      <source>Edit Message Filters</source>
-      <translation>编辑消息过滤器</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3403" />
-      <source>Edit Message Filters...</source>
-      <translation>编辑消息过滤器…</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3410" />
-      <source>Edit the message filters used to suppress unwanted messages</source>
-      <translation>编辑消息过滤器使得不期望的消息不显示</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3413" />
+      <source>Manage the saved SSL certificates</source>
+      <translation>管理保存的 SSL 证书</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3416" />
+      <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="3426" />
+      <source>Edit Message Filters</source>
+      <translation>编辑消息过滤器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3428" />
+      <source>Edit Message Filters...</source>
+      <translation>编辑消息过滤器…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3435" />
+      <source>Edit the message filters used to suppress unwanted messages</source>
+      <translation>编辑消息过滤器使得不期望的消息不显示</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3438" />
       <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;编辑消息过滤器&lt;/b&gt;&lt;p&gt;打开对话框来编辑消息过滤器,使得不期望的错误信息不再在错误窗口中显示。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3432" />
-      <location filename="../UI/UserInterface.py" line="3426" />
-      <location filename="../UI/UserInterface.py" line="3424" />
-      <source>Clear private data</source>
-      <translation type="unfinished">清空隐私数据</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3434" />
-      <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3445" />
-      <location filename="../UI/UserInterface.py" line="3444" />
-      <source>Activate current editor</source>
-      <translation>激活当前编辑器</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3446" />
-      <source>Alt+Shift+E</source>
-      <translation>Alt+Shift+E</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3457" />
-      <location filename="../UI/UserInterface.py" line="3456" />
-      <source>Show next</source>
-      <translation>显示下一个</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3458" />
-      <source>Ctrl+Alt+Tab</source>
-      <translation>Ctrl+Alt+Tab</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3469" />
-      <location filename="../UI/UserInterface.py" line="3468" />
-      <source>Show previous</source>
-      <translation>显示上一个</translation>
+      <location filename="../UI/UserInterface.py" line="3451" />
+      <location filename="../UI/UserInterface.py" line="3449" />
+      <source>Clear private data</source>
+      <translation type="unfinished">清空隐私数据</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3459" />
+      <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3470" />
-      <source>Shift+Ctrl+Alt+Tab</source>
-      <translation>Shift+Ctrl+Alt+Tab</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3481" />
-      <location filename="../UI/UserInterface.py" line="3480" />
-      <source>Switch between tabs</source>
-      <translation>在选项卡间切换</translation>
+      <location filename="../UI/UserInterface.py" line="3469" />
+      <source>Activate current editor</source>
+      <translation>激活当前编辑器</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3471" />
+      <source>Alt+Shift+E</source>
+      <translation>Alt+Shift+E</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3482" />
-      <source>Ctrl+1</source>
-      <translation>Ctrl+1</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3492" />
-      <source>Plugin Infos</source>
-      <translation>插件信息</translation>
+      <location filename="../UI/UserInterface.py" line="3481" />
+      <source>Show next</source>
+      <translation>显示下一个</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3483" />
+      <source>Ctrl+Alt+Tab</source>
+      <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
       <location filename="../UI/UserInterface.py" line="3494" />
+      <location filename="../UI/UserInterface.py" line="3493" />
+      <source>Show previous</source>
+      <translation>显示上一个</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3495" />
+      <source>Shift+Ctrl+Alt+Tab</source>
+      <translation>Shift+Ctrl+Alt+Tab</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3506" />
+      <location filename="../UI/UserInterface.py" line="3505" />
+      <source>Switch between tabs</source>
+      <translation>在选项卡间切换</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3507" />
+      <source>Ctrl+1</source>
+      <translation>Ctrl+1</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3517" />
+      <source>Plugin Infos</source>
+      <translation>插件信息</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3519" />
       <source>&amp;Plugin Infos...</source>
       <translation>插件信息(&amp;P)…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3500" />
+      <location filename="../UI/UserInterface.py" line="3525" />
       <source>Show Plugin Infos</source>
       <translation>显示插件信息</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3502" />
+      <location filename="../UI/UserInterface.py" line="3527" />
       <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="3520" />
-      <location filename="../UI/UserInterface.py" line="3512" />
+      <location filename="../UI/UserInterface.py" line="3545" />
+      <location filename="../UI/UserInterface.py" line="3537" />
       <source>Install Plugins</source>
       <translation>安装插件</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3514" />
-      <source>&amp;Install Plugins...</source>
-      <translation>安装插件(&amp;I)…</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3522" />
-      <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="3539" />
-      <location filename="../UI/UserInterface.py" line="3531" />
+      <source>&amp;Install Plugins...</source>
+      <translation>安装插件(&amp;I)…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3547" />
+      <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="3564" />
+      <location filename="../UI/UserInterface.py" line="3556" />
       <source>Uninstall Plugin</source>
       <translation>卸载插件</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3533" />
-      <source>&amp;Uninstall Plugin...</source>
-      <translation>卸载插件(&amp;U)…</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="3541" />
-      <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="3552" />
-      <source>Plugin &amp;Repository...</source>
-      <translation>插件储存库(&amp;R)…</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3558" />
+      <source>&amp;Uninstall Plugin...</source>
+      <translation>卸载插件(&amp;U)…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3566" />
+      <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="3577" />
+      <source>Plugin &amp;Repository...</source>
+      <translation>插件储存库(&amp;R)…</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3583" />
       <source>Show Plugins available for download</source>
       <translation>显示可以下载的插件</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3560" />
+      <location filename="../UI/UserInterface.py" line="3585" />
       <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
       <translation>&lt;b&gt;插件储存库…&lt;/b&gt;&lt;p&gt;打开一个对话框,显示互联网上可用的插件列表。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3587" />
-      <location filename="../UI/UserInterface.py" line="3586" />
+      <location filename="../UI/UserInterface.py" line="3612" />
+      <location filename="../UI/UserInterface.py" line="3611" />
       <source>Qt5 Documentation</source>
       <translation>Qt5 文档</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3593" />
+      <location filename="../UI/UserInterface.py" line="3618" />
       <source>Open Qt5 Documentation</source>
       <translation>打开 Qt5 文档</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3595" />
+      <location filename="../UI/UserInterface.py" line="3620" />
       <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3608" />
-      <location filename="../UI/UserInterface.py" line="3607" />
+      <location filename="../UI/UserInterface.py" line="3633" />
+      <location filename="../UI/UserInterface.py" line="3632" />
       <source>Qt6 Documentation</source>
       <translation type="unfinished">Qt6 文档</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3614" />
+      <location filename="../UI/UserInterface.py" line="3639" />
       <source>Open Qt6 Documentation</source>
       <translation type="unfinished">打开 Qt6 文档</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3616" />
+      <location filename="../UI/UserInterface.py" line="3641" />
       <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3629" />
-      <location filename="../UI/UserInterface.py" line="3628" />
+      <location filename="../UI/UserInterface.py" line="3654" />
+      <location filename="../UI/UserInterface.py" line="3653" />
       <source>PyQt5 Documentation</source>
       <translation>PyQt5 文档</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3635" />
+      <location filename="../UI/UserInterface.py" line="3660" />
       <source>Open PyQt5 Documentation</source>
       <translation>打开 PyQt5 文档</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3637" />
+      <location filename="../UI/UserInterface.py" line="3662" />
       <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3650" />
-      <location filename="../UI/UserInterface.py" line="3649" />
+      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3674" />
       <source>PyQt6 Documentation</source>
       <translation type="unfinished">PyQt6 文档</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3656" />
+      <location filename="../UI/UserInterface.py" line="3681" />
       <source>Open PyQt6 Documentation</source>
       <translation type="unfinished">打开 PyQt6 文档</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3658" />
+      <location filename="../UI/UserInterface.py" line="3683" />
       <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3676" />
-      <location filename="../UI/UserInterface.py" line="3675" />
+      <location filename="../UI/UserInterface.py" line="3701" />
+      <location filename="../UI/UserInterface.py" line="3700" />
       <source>Python 3 Documentation</source>
       <translation>Python 3 文档</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3682" />
+      <location filename="../UI/UserInterface.py" line="3707" />
       <source>Open Python 3 Documentation</source>
       <translation>打开 Python 3 文档</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3684" />
-      <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="3703" />
-      <location filename="../UI/UserInterface.py" line="3702" />
-      <source>eric API Documentation</source>
-      <translation type="unfinished">eric API 文档</translation>
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="3709" />
+      <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="3728" />
+      <location filename="../UI/UserInterface.py" line="3727" />
+      <source>eric API Documentation</source>
+      <translation type="unfinished">eric API 文档</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="3734" />
       <source>Open eric API Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3711" />
+      <location filename="../UI/UserInterface.py" line="3736" />
       <source>&lt;b&gt;eric API Documentation&lt;/b&gt;&lt;p&gt;Display the eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3729" />
-      <location filename="../UI/UserInterface.py" line="3728" />
+      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3753" />
       <source>PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3735" />
+      <location filename="../UI/UserInterface.py" line="3760" />
       <source>Open PySide2 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3737" />
+      <location filename="../UI/UserInterface.py" line="3762" />
       <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3755" />
-      <location filename="../UI/UserInterface.py" line="3754" />
+      <location filename="../UI/UserInterface.py" line="3780" />
+      <location filename="../UI/UserInterface.py" line="3779" />
       <source>PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3761" />
+      <location filename="../UI/UserInterface.py" line="3786" />
       <source>Open PySide6 Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3763" />
+      <location filename="../UI/UserInterface.py" line="3788" />
       <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric's internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3865" />
+      <location filename="../UI/UserInterface.py" line="3890" />
       <source>E&amp;xtras</source>
       <translation>扩展(&amp;X)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3875" />
+      <location filename="../UI/UserInterface.py" line="3900" />
       <source>Wi&amp;zards</source>
       <translation>向导(&amp;Z)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3893" />
+      <location filename="../UI/UserInterface.py" line="3918" />
       <source>P&amp;lugins</source>
       <translation>插件(&amp;L)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3902" />
+      <location filename="../UI/UserInterface.py" line="3927" />
       <source>Configure...</source>
       <translation>配置…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3911" />
+      <location filename="../UI/UserInterface.py" line="3936" />
       <source>&amp;Testing</source>
       <translation>&amp;测试</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3928" />
+      <location filename="../UI/UserInterface.py" line="3953" />
       <source>Select Tool Group</source>
       <translation>选择工具组</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3939" />
+      <location filename="../UI/UserInterface.py" line="3964" />
       <source>Se&amp;ttings</source>
       <translation>设置(&amp;T)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3972" />
+      <location filename="../UI/UserInterface.py" line="3997" />
       <source>&amp;Window</source>
       <translation>窗口(&amp;W)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3981" />
+      <location filename="../UI/UserInterface.py" line="4006" />
       <source>&amp;Windows</source>
       <translation>窗口(&amp;W)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3985" />
+      <location filename="../UI/UserInterface.py" line="4010" />
       <source>Central Park</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="3989" />
+      <location filename="../UI/UserInterface.py" line="4014" />
       <source>Left Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4008" />
+      <location filename="../UI/UserInterface.py" line="4033" />
       <source>Right Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4027" />
+      <location filename="../UI/UserInterface.py" line="4052" />
       <source>Bottom Side</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4035" />
+      <location filename="../UI/UserInterface.py" line="4060" />
       <source>Plug-ins</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4041" />
+      <location filename="../UI/UserInterface.py" line="4066" />
       <source>&amp;Toolbars</source>
       <translation>工具栏(&amp;T)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4054" />
+      <location filename="../UI/UserInterface.py" line="4079" />
       <source>&amp;Help</source>
       <translation>帮助(&amp;H)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4109" />
-      <location filename="../UI/UserInterface.py" line="4093" />
+      <location filename="../UI/UserInterface.py" line="4135" />
+      <location filename="../UI/UserInterface.py" line="4119" />
       <source>Tools</source>
       <translation>工具</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4111" />
-      <location filename="../UI/UserInterface.py" line="4097" />
+      <location filename="../UI/UserInterface.py" line="4137" />
+      <location filename="../UI/UserInterface.py" line="4123" />
       <source>Settings</source>
       <translation>设置</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6222" />
-      <location filename="../UI/UserInterface.py" line="4112" />
-      <location filename="../UI/UserInterface.py" line="4098" />
+      <location filename="../UI/UserInterface.py" line="6260" />
+      <location filename="../UI/UserInterface.py" line="4138" />
+      <location filename="../UI/UserInterface.py" line="4124" />
       <source>Help</source>
       <translation>帮助</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4113" />
-      <location filename="../UI/UserInterface.py" line="4099" />
+      <location filename="../UI/UserInterface.py" line="4139" />
+      <location filename="../UI/UserInterface.py" line="4125" />
       <source>Profiles</source>
       <translation>模式</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4114" />
-      <location filename="../UI/UserInterface.py" line="4100" />
+      <location filename="../UI/UserInterface.py" line="4140" />
+      <location filename="../UI/UserInterface.py" line="4126" />
       <source>Plugins</source>
       <translation>插件</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4110" />
+      <location filename="../UI/UserInterface.py" line="4136" />
       <source>Unittest</source>
       <translation>单元测试</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4284" />
+      <location filename="../UI/UserInterface.py" line="4310" />
       <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="4293" />
+      <location filename="../UI/UserInterface.py" line="4319" />
       <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="4302" />
+      <location filename="../UI/UserInterface.py" line="4328" />
       <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="4311" />
+      <location filename="../UI/UserInterface.py" line="4337" />
       <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="4320" />
+      <location filename="../UI/UserInterface.py" line="4346" />
       <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="4329" />
+      <location filename="../UI/UserInterface.py" line="4355" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;状态栏的这一部分显示当前编辑器的光标位置。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4343" />
+      <location filename="../UI/UserInterface.py" line="4369" />
       <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4414" />
-      <location filename="../UI/UserInterface.py" line="4373" />
+      <location filename="../UI/UserInterface.py" line="4440" />
+      <location filename="../UI/UserInterface.py" line="4399" />
       <source>External Tools/{0}</source>
       <translation>外部工具/{0}</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4522" />
+      <location filename="../UI/UserInterface.py" line="4548" />
       <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="4571" />
+      <location filename="../UI/UserInterface.py" line="4597" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;WebEngine (Security)&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4588" />
+      <location filename="../UI/UserInterface.py" line="4614" />
       <source>Desktop</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4592" />
+      <location filename="../UI/UserInterface.py" line="4618" />
       <source>Session Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4595" />
+      <location filename="../UI/UserInterface.py" line="4621" />
       <source>&lt;/table&gt;</source>
       <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4635" />
+      <location filename="../UI/UserInterface.py" line="4673" />
       <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="4970" />
+      <location filename="../UI/UserInterface.py" line="5008" />
       <source>Restart application</source>
       <translation>重启程序</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4971" />
+      <location filename="../UI/UserInterface.py" line="5009" />
       <source>The application needs to be restarted. Do it now?</source>
       <translation>程序需要重启。现在重启?</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4995" />
+      <location filename="../UI/UserInterface.py" line="5033" />
       <source>Upgrade PyQt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="4996" />
+      <location filename="../UI/UserInterface.py" line="5034" />
       <source>eric needs to be closed in order to upgrade PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5046" />
-      <location filename="../UI/UserInterface.py" line="5020" />
+      <location filename="../UI/UserInterface.py" line="5084" />
+      <location filename="../UI/UserInterface.py" line="5058" />
       <source>Upgrade Eric</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5021" />
+      <location filename="../UI/UserInterface.py" line="5059" />
       <source>eric needs to be closed in order to be upgraded. It will be restarted once the upgrade process has finished. This may take some time.
 
 Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5047" />
+      <location filename="../UI/UserInterface.py" line="5085" />
       <source>eric needs to be closed in order to upgrade eric and PyQt. It will be restarted once the upgrade process has finished. This may take some time.
 
  Shall the upgrade be done now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5105" />
+      <location filename="../UI/UserInterface.py" line="5143" />
       <source>&amp;Builtin Tools</source>
       <translation>内建工具(&amp;B)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5124" />
+      <location filename="../UI/UserInterface.py" line="5162" />
       <source>&amp;Plugin Tools</source>
       <translation>插件工具(&amp;P)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5127" />
+      <location filename="../UI/UserInterface.py" line="5165" />
       <source>&amp;User Tools</source>
       <translation>用户工具(&amp;U)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5153" />
+      <location filename="../UI/UserInterface.py" line="5191" />
       <source>Configure Tool Groups ...</source>
       <translation>配置工具组…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5157" />
+      <location filename="../UI/UserInterface.py" line="5195" />
       <source>Configure current Tool Group ...</source>
       <translation>配置当前工具组…</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5196" />
-      <location filename="../UI/UserInterface.py" line="5176" />
+      <location filename="../UI/UserInterface.py" line="5234" />
+      <location filename="../UI/UserInterface.py" line="5214" />
       <source>No User Tools Configured</source>
       <translation>没有配置的用户工具</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5272" />
+      <location filename="../UI/UserInterface.py" line="5310" />
       <source>&amp;Show all</source>
       <translation>全部显示(&amp;S)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="5274" />
+      <location filename="../UI/UserInterface.py" line="5312" />
       <source>&amp;Hide all</source>
       <translation>全部隐藏(&amp;H)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6359" />
-      <location filename="../UI/UserInterface.py" line="6348" />
-      <location filename="../UI/UserInterface.py" line="6300" />
-      <location filename="../UI/UserInterface.py" line="6290" />
-      <location filename="../UI/UserInterface.py" line="6121" />
-      <location filename="../UI/UserInterface.py" line="6111" />
-      <location filename="../UI/UserInterface.py" line="6053" />
-      <location filename="../UI/UserInterface.py" line="6043" />
+      <location filename="../UI/UserInterface.py" line="6397" />
+      <location filename="../UI/UserInterface.py" line="6386" />
+      <location filename="../UI/UserInterface.py" line="6338" />
+      <location filename="../UI/UserInterface.py" line="6328" />
+      <location filename="../UI/UserInterface.py" line="6159" />
+      <location filename="../UI/UserInterface.py" line="6149" />
+      <location filename="../UI/UserInterface.py" line="6091" />
+      <location filename="../UI/UserInterface.py" line="6081" />
       <source>Problem</source>
       <translation>问题</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6360" />
-      <location filename="../UI/UserInterface.py" line="6349" />
-      <location filename="../UI/UserInterface.py" line="6301" />
-      <location filename="../UI/UserInterface.py" line="6291" />
-      <location filename="../UI/UserInterface.py" line="6122" />
-      <location filename="../UI/UserInterface.py" line="6112" />
-      <location filename="../UI/UserInterface.py" line="6054" />
-      <location filename="../UI/UserInterface.py" line="6044" />
+      <location filename="../UI/UserInterface.py" line="6398" />
+      <location filename="../UI/UserInterface.py" line="6387" />
+      <location filename="../UI/UserInterface.py" line="6339" />
+      <location filename="../UI/UserInterface.py" line="6329" />
+      <location filename="../UI/UserInterface.py" line="6160" />
+      <location filename="../UI/UserInterface.py" line="6150" />
+      <location filename="../UI/UserInterface.py" line="6092" />
+      <location filename="../UI/UserInterface.py" line="6082" />
       <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="6603" />
-      <location filename="../UI/UserInterface.py" line="6514" />
-      <location filename="../UI/UserInterface.py" line="6395" />
-      <location filename="../UI/UserInterface.py" line="6372" />
-      <location filename="../UI/UserInterface.py" line="6313" />
-      <location filename="../UI/UserInterface.py" line="6260" />
-      <location filename="../UI/UserInterface.py" line="6238" />
-      <location filename="../UI/UserInterface.py" line="6197" />
-      <location filename="../UI/UserInterface.py" line="6188" />
-      <location filename="../UI/UserInterface.py" line="6153" />
-      <location filename="../UI/UserInterface.py" line="6144" />
-      <location filename="../UI/UserInterface.py" line="6085" />
-      <location filename="../UI/UserInterface.py" line="6076" />
+      <location filename="../UI/UserInterface.py" line="6641" />
+      <location filename="../UI/UserInterface.py" line="6552" />
+      <location filename="../UI/UserInterface.py" line="6433" />
+      <location filename="../UI/UserInterface.py" line="6410" />
+      <location filename="../UI/UserInterface.py" line="6351" />
+      <location filename="../UI/UserInterface.py" line="6298" />
+      <location filename="../UI/UserInterface.py" line="6276" />
+      <location filename="../UI/UserInterface.py" line="6235" />
+      <location filename="../UI/UserInterface.py" line="6226" />
+      <location filename="../UI/UserInterface.py" line="6191" />
+      <location filename="../UI/UserInterface.py" line="6182" />
+      <location filename="../UI/UserInterface.py" line="6123" />
+      <location filename="../UI/UserInterface.py" line="6114" />
       <source>Process Generation Error</source>
       <translation>进程生成错误</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6077" />
+      <location filename="../UI/UserInterface.py" line="6115" />
       <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="6086" />
+      <location filename="../UI/UserInterface.py" line="6124" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6145" />
+      <location filename="../UI/UserInterface.py" line="6183" />
       <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="6154" />
+      <location filename="../UI/UserInterface.py" line="6192" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6189" />
+      <location filename="../UI/UserInterface.py" line="6227" />
       <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="6198" />
+      <location filename="../UI/UserInterface.py" line="6236" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6223" />
-      <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="6239" />
-      <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="6261" />
+      <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="6277" />
+      <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="6299" />
       <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="6314" />
+      <location filename="../UI/UserInterface.py" line="6352" />
       <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="6373" />
+      <location filename="../UI/UserInterface.py" line="6411" />
       <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="6396" />
+      <location filename="../UI/UserInterface.py" line="6434" />
       <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="6495" />
+      <location filename="../UI/UserInterface.py" line="6533" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6515" />
+      <location filename="../UI/UserInterface.py" line="6553" />
       <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="6548" />
-      <location filename="../UI/UserInterface.py" line="6538" />
-      <source>External Tools</source>
-      <translation>外部工具</translation>
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6539" />
-      <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../UI/UserInterface.py" line="6549" />
-      <source>No toolgroup entry '{0}' found.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../UI/UserInterface.py" line="6586" />
+      <location filename="../UI/UserInterface.py" line="6576" />
+      <source>External Tools</source>
+      <translation>外部工具</translation>
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6577" />
+      <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6587" />
+      <source>No toolgroup entry '{0}' found.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../UI/UserInterface.py" line="6624" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>正在启动进程“{0} {1}”。
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6604" />
+      <location filename="../UI/UserInterface.py" line="6642" />
       <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6683" />
+      <location filename="../UI/UserInterface.py" line="6721" />
       <source>Process '{0}' has exited.
 </source>
       <translation>进程“{0}”已退出。
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6970" />
-      <location filename="../UI/UserInterface.py" line="6908" />
-      <location filename="../UI/UserInterface.py" line="6864" />
-      <location filename="../UI/UserInterface.py" line="6790" />
-      <location filename="../UI/UserInterface.py" line="6726" />
+      <location filename="../UI/UserInterface.py" line="7008" />
+      <location filename="../UI/UserInterface.py" line="6946" />
+      <location filename="../UI/UserInterface.py" line="6902" />
+      <location filename="../UI/UserInterface.py" line="6828" />
+      <location filename="../UI/UserInterface.py" line="6764" />
       <source>Documentation Missing</source>
       <translation>文档缺失</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6971" />
-      <location filename="../UI/UserInterface.py" line="6909" />
-      <location filename="../UI/UserInterface.py" line="6865" />
-      <location filename="../UI/UserInterface.py" line="6791" />
-      <location filename="../UI/UserInterface.py" line="6727" />
+      <location filename="../UI/UserInterface.py" line="7009" />
+      <location filename="../UI/UserInterface.py" line="6947" />
+      <location filename="../UI/UserInterface.py" line="6903" />
+      <location filename="../UI/UserInterface.py" line="6829" />
+      <location filename="../UI/UserInterface.py" line="6765" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6952" />
-      <location filename="../UI/UserInterface.py" line="6834" />
+      <location filename="../UI/UserInterface.py" line="6990" />
+      <location filename="../UI/UserInterface.py" line="6872" />
       <source>Documentation</source>
       <translation>文档</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6835" />
+      <location filename="../UI/UserInterface.py" line="6873" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6953" />
+      <location filename="../UI/UserInterface.py" line="6991" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7132" />
-      <location filename="../UI/UserInterface.py" line="7068" />
+      <location filename="../UI/UserInterface.py" line="7170" />
+      <location filename="../UI/UserInterface.py" line="7106" />
       <source>Start Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7069" />
+      <location filename="../UI/UserInterface.py" line="7107" />
       <source>The eric web browser could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7133" />
+      <location filename="../UI/UserInterface.py" line="7171" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7179" />
+      <location filename="../UI/UserInterface.py" line="7217" />
       <source>Open Browser</source>
       <translation>打开浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7179" />
+      <location filename="../UI/UserInterface.py" line="7217" />
       <source>Could not start a web browser</source>
       <translation>无法启动网络浏览器</translation>
     </message>
     <message>
+      <location filename="../UI/UserInterface.py" line="7512" />
       <location filename="../UI/UserInterface.py" line="7474" />
-      <location filename="../UI/UserInterface.py" line="7436" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7454" />
+      <location filename="../UI/UserInterface.py" line="7492" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7682" />
+      <location filename="../UI/UserInterface.py" line="7720" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7683" />
+      <location filename="../UI/UserInterface.py" line="7721" />
       <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="7706" />
+      <location filename="../UI/UserInterface.py" line="7744" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7731" />
-      <location filename="../UI/UserInterface.py" line="7708" />
+      <location filename="../UI/UserInterface.py" line="7769" />
+      <location filename="../UI/UserInterface.py" line="7746" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7776" />
+      <location filename="../UI/UserInterface.py" line="7814" />
       <source>Crash Session found!</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7777" />
+      <location filename="../UI/UserInterface.py" line="7815" />
       <source>A session file of a crashed session was found. Shall this session be restored?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8154" />
+      <location filename="../UI/UserInterface.py" line="8192" />
       <source>Drop Error</source>
       <translation>降落误差</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8155" />
+      <location filename="../UI/UserInterface.py" line="8193" />
       <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="8341" />
+      <location filename="../UI/UserInterface.py" line="8379" />
       <source>Upgrade available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8342" />
+      <location filename="../UI/UserInterface.py" line="8380" />
       <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8387" />
+      <location filename="../UI/UserInterface.py" line="8425" />
       <source>First time usage</source>
       <translation>第一次使用</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8388" />
+      <location filename="../UI/UserInterface.py" line="8426" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8410" />
+      <location filename="../UI/UserInterface.py" line="8448" />
       <source>Select Workspace Directory</source>
       <translation>选择工作区目录</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8575" />
+      <location filename="../UI/UserInterface.py" line="8616" />
       <source>Unsaved Data Detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8576" />
+      <location filename="../UI/UserInterface.py" line="8617" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -93200,40 +93220,40 @@
       <translation>&lt;b&gt;局部变量浏览器窗口&lt;/b&gt;&lt;p&gt;该窗口显示高度程序的局部变量。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1055" />
+      <location filename="../Debugger/VariablesViewer.py" line="1056" />
       <source>Show Details...</source>
       <translation>显示细节…</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1057" />
-      <source>Expand</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1058" />
-      <source>Collapse</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Debugger/VariablesViewer.py" line="1059" />
+      <source>Expand Subitems</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/VariablesViewer.py" line="1062" />
+      <source>Collapse Subitems</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/VariablesViewer.py" line="1064" />
       <source>Collapse All</source>
       <translation type="unfinished">折叠所有</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1067" />
-      <location filename="../Debugger/VariablesViewer.py" line="1061" />
+      <location filename="../Debugger/VariablesViewer.py" line="1072" />
+      <location filename="../Debugger/VariablesViewer.py" line="1066" />
       <source>Refresh</source>
       <translation type="unfinished">刷新</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1069" />
-      <location filename="../Debugger/VariablesViewer.py" line="1063" />
+      <location filename="../Debugger/VariablesViewer.py" line="1074" />
+      <location filename="../Debugger/VariablesViewer.py" line="1068" />
       <source>Configure...</source>
       <translation>配置…</translation>
     </message>
     <message>
-      <location filename="../Debugger/VariablesViewer.py" line="1071" />
-      <location filename="../Debugger/VariablesViewer.py" line="1064" />
+      <location filename="../Debugger/VariablesViewer.py" line="1076" />
+      <location filename="../Debugger/VariablesViewer.py" line="1069" />
       <source>Variables Type Filter...</source>
       <translation type="unfinished">变量类型过滤器…</translation>
     </message>
@@ -97834,91 +97854,91 @@
       <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 有未保存的更改。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5972" />
+      <location filename="../ViewManager/ViewManager.py" line="5969" />
       <source>Line: {0:5}</source>
       <translation>行:{0:5}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5978" />
+      <location filename="../ViewManager/ViewManager.py" line="5975" />
       <source>Pos: {0:5}</source>
       <translation>列:{0:5}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="5998" />
+      <location filename="../ViewManager/ViewManager.py" line="5995" />
       <source>Language: {0}</source>
       <translation>语言:{0}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6007" />
+      <location filename="../ViewManager/ViewManager.py" line="6004" />
       <source>EOL Mode: {0}</source>
       <translation>行尾模式:{0}</translation>
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6503" />
-      <location filename="../ViewManager/ViewManager.py" line="6460" />
+      <location filename="../ViewManager/ViewManager.py" line="6500" />
+      <location filename="../ViewManager/ViewManager.py" line="6457" />
       <source>&amp;Clear</source>
       <translation>清除(&amp;C)</translation>
     </message>
     <message>
+      <location filename="../ViewManager/ViewManager.py" line="6494" />
+      <source>&amp;Add</source>
+      <translation>添加(&amp;A)</translation>
+    </message>
+    <message>
       <location filename="../ViewManager/ViewManager.py" line="6497" />
-      <source>&amp;Add</source>
-      <translation>添加(&amp;A)</translation>
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="6500" />
       <source>&amp;Edit...</source>
       <translation>编辑(&amp;E)…</translation>
     </message>
     <message>
+      <location filename="../ViewManager/ViewManager.py" line="7567" />
+      <location filename="../ViewManager/ViewManager.py" line="7553" />
+      <location filename="../ViewManager/ViewManager.py" line="7521" />
+      <source>Edit Spelling Dictionary</source>
+      <translation type="unfinished">编辑拼写字典</translation>
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7524" />
+      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7540" />
+      <source>Editing {0}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../ViewManager/ViewManager.py" line="7556" />
+      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../ViewManager/ViewManager.py" line="7570" />
-      <location filename="../ViewManager/ViewManager.py" line="7556" />
-      <location filename="../ViewManager/ViewManager.py" line="7524" />
-      <source>Edit Spelling Dictionary</source>
-      <translation type="unfinished">编辑拼写字典</translation>
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7527" />
-      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7543" />
-      <source>Editing {0}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7559" />
-      <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../ViewManager/ViewManager.py" line="7573" />
       <source>The spelling dictionary was saved successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6682" />
+      <location filename="../ViewManager/ViewManager.py" line="6679" />
       <source>Clear Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="6683" />
+      <location filename="../ViewManager/ViewManager.py" line="6680" />
       <source>Do you really want to delete all text of the current editor?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="8103" />
-      <location filename="../ViewManager/ViewManager.py" line="8086" />
+      <location filename="../ViewManager/ViewManager.py" line="8100" />
+      <location filename="../ViewManager/ViewManager.py" line="8083" />
       <source>File System Watcher Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="8087" />
+      <location filename="../ViewManager/ViewManager.py" line="8084" />
       <source>&lt;p&gt;The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should &lt;ul&gt;&lt;li&gt;sudo nano /etc/sysctl.conf&lt;/li&gt;&lt;li&gt;add to the bottom "fs.inotify.max_user_instances = 1024"&lt;/li&gt;&lt;li&gt;save and close the editor&lt;/li&gt;&lt;li&gt;sudo sysctl -p&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Error Message: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../ViewManager/ViewManager.py" line="8104" />
+      <location filename="../ViewManager/ViewManager.py" line="8101" />
       <source>The file system watcher reported an error with code &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -99774,16 +99794,6 @@
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
-      <source>Select to delete all web databases</source>
-      <translation type="unfinished">选择以删除所有网络数据库</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
-      <source>Web &amp;Databases</source>
-      <translation type="unfinished">网络数据库(&amp;D)</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserClearPrivateDataDialog.ui" line="0" />
       <source>Select to delete all remembered zoom settings</source>
       <translation type="unfinished">选择删除所有记忆的缩放设置</translation>
     </message>
@@ -99797,6 +99807,14 @@
       <source>SSL Certificate Error Exceptions</source>
       <translation type="unfinished" />
     </message>
+    <message>
+      <source>Select to delete all web databases</source>
+      <translation type="vanished">选择以删除所有网络数据库</translation>
+    </message>
+    <message>
+      <source>Web &amp;Databases</source>
+      <translation type="vanished">网络数据库(&amp;D)</translation>
+    </message>
   </context>
   <context>
     <name>WebBrowserJavaScriptConsole</name>
@@ -100045,6 +100063,16 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
+      <source>Select to render all web contents using a dark theme.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
+      <source>Force Dark Mode</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/WebBrowserPage.ui" line="0" />
       <source>Startup</source>
       <translation type="unfinished">启动</translation>
     </message>
@@ -100985,355 +101013,355 @@
   <context>
     <name>WebBrowserView</name>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="366" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="353" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="341" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="329" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="367" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="354" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="342" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="330" />
       <source>eric Web Browser</source>
       <translation type="unfinished">eric 网页浏览器</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="330" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="331" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="367" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="342" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="368" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="343" />
       <source>&lt;p&gt;Could not start a viewer for file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="354" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="355" />
       <source>&lt;p&gt;Could not start an application for URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="608" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="609" />
       <source>Match {0} of {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="634" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="635" />
       <source>Inspect Element...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="666" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="667" />
       <source>No suggestions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="723" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="724" />
       <source>Open Link in New Tab	Ctrl+LMB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="728" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="729" />
       <source>Open Link in New Window</source>
       <translation type="unfinished">在新窗口中打开链接</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="734" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="735" />
       <source>Open Link in New Private Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="741" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="742" />
       <source>Save Lin&amp;k</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="745" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="746" />
       <source>Bookmark this Link</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="751" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="752" />
       <source>Copy URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="755" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="756" />
       <source>Send URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="764" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="765" />
       <source>Scan Link with VirusTotal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="782" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="783" />
       <source>Open Image in New Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="789" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="790" />
       <source>Save Image</source>
       <translation type="unfinished">保存图像</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="792" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="793" />
       <source>Copy Image to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="794" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="795" />
       <source>Copy Image URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="799" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="800" />
       <source>Send Image URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="818" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="810" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="819" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="811" />
       <source>Search image in {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="814" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="815" />
       <source>Search image with...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="825" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="826" />
       <source>Block Image</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="835" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="836" />
       <source>Scan Image with VirusTotal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="855" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="856" />
       <source>Play</source>
       <translation type="unfinished">播放</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="861" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="862" />
       <source>Pause</source>
       <translation type="unfinished">暂停</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="867" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="868" />
       <source>Unmute</source>
       <translation type="unfinished">取消静音</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="873" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="874" />
       <source>Mute</source>
       <translation type="unfinished">静音</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="878" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="879" />
       <source>Copy Media URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="883" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="884" />
       <source>Send Media URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="889" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="890" />
       <source>Save Media</source>
       <translation type="unfinished">保存媒体</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="910" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="911" />
       <source>Send Text</source>
       <translation type="unfinished">发送文本</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="917" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="918" />
       <source>Search with '{0}'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="921" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="922" />
       <source>Search with...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1078" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="947" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1079" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="948" />
       <source>Google Translate</source>
       <translation type="unfinished">谷歌翻译</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="957" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="958" />
       <source>Dictionary</source>
       <translation type="unfinished">字典</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="965" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="966" />
       <source>Go to web address</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="994" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="995" />
       <source>Add New Page</source>
       <translation type="unfinished">添加新页面</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="999" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1000" />
       <source>Configure Speed Dial</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1005" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1006" />
       <source>Reload All Dials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1009" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1010" />
       <source>Reset to Default Dials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1014" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1015" />
       <source>Bookmark this Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1018" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1019" />
       <source>Copy Page URL to Clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1023" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1024" />
       <source>Send Page URL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1029" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1030" />
       <source>User Agent</source>
       <translation type="unfinished">用户代理(UA)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1057" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1058" />
       <source>Validate Page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1120" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1121" />
       <source>Add to web search toolbar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1804" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1805" />
       <source>Empty Page</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="1869" />
       <location filename="../WebBrowser/WebBrowserView.py" line="1868" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="1867" />
       <source>Render Process terminated abnormally</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1873" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1874" />
       <source>The render process crashed while loading this page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1878" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1879" />
       <source>The render process was killed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1880" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1881" />
       <source>The render process terminated while loading this page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="1884" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="1885" />
       <source>Try reloading the page or closing some tabs to make more memory available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2012" />
-      <source>Web Archive (*.mhtml *.mht)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2013" />
-      <source>HTML File (*.html *.htm)</source>
-      <translation type="unfinished">HTML 文件 (*.html *.htm)</translation>
+      <source>Web Archive (*.mhtml *.mht)</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2014" />
+      <source>HTML File (*.html *.htm)</source>
+      <translation type="unfinished">HTML 文件 (*.html *.htm)</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2015" />
       <source>HTML File with all resources (*.html *.htm)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2036" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2037" />
       <source>Save Web Page</source>
       <translation type="unfinished">保存网页</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2428" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2429" />
       <source>eric7 {0} ({1})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2439" />
-      <source>Print Page</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2440" />
+      <source>Print Page</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2441" />
       <source>There is already a print job in progress. Printing is temporarily disabled until the current job is finished.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2555" />
-      <location filename="../WebBrowser/WebBrowserView.py" line="2485" />
-      <source>Print to PDF</source>
-      <translation type="unfinished">打印到 PDF</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2486" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2556" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2486" />
+      <source>Print to PDF</source>
+      <translation type="unfinished">打印到 PDF</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2487" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2557" />
       <source>&lt;p&gt;The PDF file &lt;b&gt;{0}&lt;/b&gt; could not be generated.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2590" />
-      <source>Quota Request</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserView.py" line="2591" />
+      <source>Quota Request</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserView.py" line="2592" />
       <source>&lt;p&gt; Allow the website at &lt;b&gt;{0}&lt;/b&gt; to use &lt;b&gt;{1}&lt;/b&gt; of persistent storage?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2634" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2635" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Read&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2642" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2643" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Write&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2647" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2648" />
       <source>&lt;p&gt;Grant the website at &lt;b&gt;{0}&lt;/b&gt; &lt;b&gt;Read and Write&lt;/b&gt; access to '{1}'?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserView.py" line="2654" />
+      <location filename="../WebBrowser/WebBrowserView.py" line="2655" />
       <source>File System Access Request</source>
       <translation type="unfinished" />
     </message>
@@ -101447,10 +101475,10 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4099" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3007" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2991" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2976" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4105" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3013" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2997" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2982" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="207" />
       <source>eric Web Browser</source>
       <translation type="unfinished">eric 网页浏览器</translation>
@@ -101461,2074 +101489,2074 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1758" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1758" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1764" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1764" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="306" />
       <source>Index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1769" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1768" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1774" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="318" />
       <source>Search</source>
       <translation type="unfinished">搜索</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2115" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2114" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2121" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2120" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="325" />
       <source>JavaScript Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="737" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="743" />
       <source>New Tab</source>
       <translation type="unfinished">新建选项卡</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="739" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="745" />
       <source>&amp;New Tab</source>
       <translation type="unfinished">新建选项卡(&amp;N)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="740" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="746" />
       <source>Ctrl+T</source>
       <comment>File|New Tab</comment>
       <translation type="unfinished">Ctrl+T</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="745" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="751" />
       <source>Open a new web browser tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="747" />
-      <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="753" />
+      <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="759" />
       <source>New Window</source>
       <translation type="unfinished">新建窗口</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="755" />
-      <source>New &amp;Window</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="756" />
-      <source>Ctrl+N</source>
-      <comment>File|New Window</comment>
-      <translation type="unfinished">Ctrl+N</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="761" />
+      <source>New &amp;Window</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="762" />
+      <source>Ctrl+N</source>
+      <comment>File|New Window</comment>
+      <translation type="unfinished">Ctrl+N</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="767" />
       <source>Open a new web browser window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="763" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="769" />
       <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new web browser window in the current privacy mode.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2889" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="773" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2895" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="779" />
       <source>New Private Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="781" />
       <source>New &amp;Private Window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="776" />
-      <source>Ctrl+Shift+P</source>
-      <comment>File|New Private Window</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="782" />
+      <source>Ctrl+Shift+P</source>
+      <comment>File|New Private Window</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="788" />
       <source>Open a new private web browser window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="785" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="791" />
       <source>&lt;b&gt;New Private Window&lt;/b&gt;&lt;p&gt;This opens a new private web browser window by starting a new web browser instance in private mode.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2927" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2904" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="795" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2933" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2910" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="801" />
       <source>Open File</source>
       <translation type="unfinished">打开文件</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="797" />
-      <source>&amp;Open File</source>
-      <translation type="unfinished">打开文件(&amp;O)</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="798" />
-      <source>Ctrl+O</source>
-      <comment>File|Open</comment>
-      <translation type="unfinished">Ctrl+O</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="803" />
+      <source>&amp;Open File</source>
+      <translation type="unfinished">打开文件(&amp;O)</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="804" />
+      <source>Ctrl+O</source>
+      <comment>File|Open</comment>
+      <translation type="unfinished">Ctrl+O</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="809" />
       <source>Open a file for display</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="805" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="811" />
       <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new file for display. It pops up a file selection dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="815" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="821" />
       <source>Open File in New Tab</source>
       <translation type="unfinished">在新选项卡中打开文件</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="817" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="823" />
       <source>Open File in New &amp;Tab</source>
       <translation type="unfinished">在新选项卡中打开文件(&amp;T)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="818" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="824" />
       <source>Shift+Ctrl+O</source>
       <comment>File|Open in new tab</comment>
       <translation type="unfinished">Shift+Ctrl+O</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="823" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="829" />
       <source>Open a file for display in a new tab</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="825" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="831" />
       <source>&lt;b&gt;Open File in New Tab&lt;/b&gt;&lt;p&gt;This opens a new file for display in a new tab. It pops up a file selection dialog.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="836" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="842" />
       <source>Save As</source>
       <translation type="unfinished">另存为</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="838" />
-      <source>&amp;Save As...</source>
-      <translation type="unfinished">另存为(&amp;S)…</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="839" />
-      <source>Shift+Ctrl+S</source>
-      <comment>File|Save As</comment>
-      <translation type="unfinished">Shift+Ctrl+S</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="844" />
+      <source>&amp;Save As...</source>
+      <translation type="unfinished">另存为(&amp;S)…</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="845" />
+      <source>Shift+Ctrl+S</source>
+      <comment>File|Save As</comment>
+      <translation type="unfinished">Shift+Ctrl+S</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="850" />
       <source>Save the current page to disk</source>
       <translation type="unfinished">将当前页面保存至磁盘</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="846" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="852" />
       <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current page to disk.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;另存为…&lt;/b&gt;&lt;p&gt;将当前页面保存至磁盘。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="854" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="860" />
       <source>Save Page Screen</source>
       <translation type="unfinished">保存屏幕页面截图</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="856" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="862" />
       <source>Save Page Screen...</source>
       <translation type="unfinished">保存屏幕页面截图…</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="863" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="869" />
       <source>Save the visible part of the current page as a screen shot</source>
       <translation type="unfinished">将当前页面的可见部分保存为屏幕截图</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="866" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="872" />
       <source>&lt;b&gt;Save Page Screen...&lt;/b&gt;&lt;p&gt;Saves the visible part of the current page as a screen shot.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="877" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="883" />
       <source>Import Bookmarks</source>
       <translation type="unfinished">导入书签</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="878" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="884" />
       <source>&amp;Import Bookmarks...</source>
       <translation type="unfinished">导入书签(&amp;I)…</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="885" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="891" />
       <source>Import bookmarks from other browsers</source>
       <translation type="unfinished">从其它浏览器导入书签</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="888" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="894" />
       <source>&lt;b&gt;Import Bookmarks&lt;/b&gt;&lt;p&gt;Import bookmarks from other browsers.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="897" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="903" />
       <source>Export Bookmarks</source>
       <translation type="unfinished">导出书签</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="898" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="904" />
       <source>&amp;Export Bookmarks...</source>
       <translation type="unfinished">导出书签(&amp;E)…</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="905" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="911" />
       <source>Export the bookmarks into a file</source>
       <translation type="unfinished">导出书签至文件</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="908" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="914" />
       <source>&lt;b&gt;Export Bookmarks&lt;/b&gt;&lt;p&gt;Export the bookmarks into a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2537" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="917" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2543" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="923" />
       <source>Print</source>
       <translation type="unfinished">打印</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="919" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="925" />
       <source>&amp;Print</source>
       <translation type="unfinished">打印(&amp;P)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="920" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="926" />
       <source>Ctrl+P</source>
       <comment>File|Print</comment>
       <translation type="unfinished">Ctrl+P</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="925" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="931" />
       <source>Print the displayed help</source>
       <translation type="unfinished">打印显示的帮助</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="927" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="933" />
       <source>&lt;b&gt;Print&lt;/b&gt;&lt;p&gt;Print the displayed help text.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;打印&lt;/b&gt;&lt;p&gt;打印显示的帮助文本。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="935" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="933" />
-      <source>Print as PDF</source>
-      <translation type="unfinished">打印为 PDF</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="941" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="939" />
+      <source>Print as PDF</source>
+      <translation type="unfinished">打印为 PDF</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="947" />
       <source>Print the displayed help as PDF</source>
       <translation type="unfinished">将显示的帮助打印为 PDF</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="943" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="949" />
       <source>&lt;b&gt;Print as PDF&lt;/b&gt;&lt;p&gt;Print the displayed help text as a PDF file.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;打印为 PDF&lt;/b&gt;&lt;p&gt;将显示的帮助文本打印为 PDF 文件。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="954" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="952" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="960" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="958" />
       <source>Print Preview</source>
       <translation type="unfinished">打印预览</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="961" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="967" />
       <source>Print preview of the displayed help</source>
       <translation type="unfinished">移动到初始帮助屏幕</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="964" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="970" />
       <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the displayed help text.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;打印预览&lt;/b&gt;&lt;p&gt;显示的帮助文件的打印预览。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="975" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="973" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="981" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="979" />
       <source>Send Page Link</source>
       <translation type="unfinished">发送页面链接</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="982" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="988" />
       <source>Send the link of the current page via email</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="985" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="991" />
       <source>&lt;b&gt;Send Page Link&lt;/b&gt;&lt;p&gt;Send the link of the current page via email.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="994" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1000" />
       <source>Close</source>
       <translation type="unfinished">关闭</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="996" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1002" />
       <source>&amp;Close</source>
       <translation type="unfinished">关闭(&amp;C)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="997" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1003" />
       <source>Ctrl+W</source>
       <comment>File|Close</comment>
       <translation type="unfinished">Ctrl+W</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1002" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1008" />
       <source>Close the current help window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1004" />
-      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1010" />
+      <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1016" />
       <source>Close All</source>
       <translation type="unfinished">全部关闭</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1011" />
-      <source>Close &amp;All</source>
-      <translation type="unfinished">全部关闭(&amp;A)</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1017" />
+      <source>Close &amp;All</source>
+      <translation type="unfinished">全部关闭(&amp;A)</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1023" />
       <source>Close all help windows</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1019" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1025" />
       <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all web browser windows except the first one.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1028" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1034" />
       <source>Quit</source>
       <translation type="unfinished">退出</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3319" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1030" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3325" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1036" />
       <source>&amp;Quit</source>
       <translation type="unfinished">退出(&amp;Q)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1031" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1037" />
       <source>Ctrl+Q</source>
       <comment>File|Quit</comment>
       <translation type="unfinished">Ctrl+Q</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1036" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1042" />
       <source>Quit the eric Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1038" />
-      <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1044" />
+      <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1050" />
       <source>Backward</source>
       <translation type="unfinished">后退</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1046" />
-      <source>&amp;Backward</source>
-      <translation type="unfinished">后退(&amp;B)</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1047" />
-      <source>Alt+Left</source>
-      <comment>Go|Backward</comment>
-      <translation type="unfinished">Alt+Left</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1052" />
+      <source>&amp;Backward</source>
+      <translation type="unfinished">后退(&amp;B)</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1053" />
+      <source>Alt+Left</source>
+      <comment>Go|Backward</comment>
+      <translation type="unfinished">Alt+Left</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1058" />
       <source>Move one screen backward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1054" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1060" />
       <source>&lt;b&gt;Backward&lt;/b&gt;&lt;p&gt;Moves one screen backward. If none is available, this action is disabled.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1064" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1070" />
       <source>Forward</source>
       <translation type="unfinished">前移</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1066" />
-      <source>&amp;Forward</source>
-      <translation type="unfinished">前移(&amp;F)</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1067" />
-      <source>Alt+Right</source>
-      <comment>Go|Forward</comment>
-      <translation type="unfinished">Alt+Right</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1072" />
+      <source>&amp;Forward</source>
+      <translation type="unfinished">前移(&amp;F)</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1073" />
+      <source>Alt+Right</source>
+      <comment>Go|Forward</comment>
+      <translation type="unfinished">Alt+Right</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1078" />
       <source>Move one screen forward</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1074" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1080" />
       <source>&lt;b&gt;Forward&lt;/b&gt;&lt;p&gt;Moves one screen forward. If none is available, this action is disabled.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1084" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1090" />
       <source>Home</source>
       <translation type="unfinished">Home</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1086" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1092" />
       <source>&amp;Home</source>
       <translation type="unfinished">首页(&amp;H)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1087" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1093" />
       <source>Ctrl+Home</source>
       <comment>Go|Home</comment>
       <translation type="unfinished">Ctrl+Home</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1092" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1098" />
       <source>Move to the initial screen</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1094" />
-      <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1100" />
+      <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1106" />
       <source>Reload</source>
       <translation type="unfinished">重新载入</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1102" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1108" />
       <source>&amp;Reload</source>
       <translation type="unfinished">重新载入(&amp;R)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1103" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1109" />
       <source>Ctrl+R</source>
       <comment>Go|Reload</comment>
       <translation type="unfinished">Ctrl+R</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1104" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1110" />
       <source>F5</source>
       <comment>Go|Reload</comment>
       <translation type="unfinished">F5</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1108" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1114" />
       <source>Reload the current screen</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1110" />
-      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1116" />
+      <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1122" />
       <source>Stop</source>
       <translation type="unfinished">中止</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1118" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1124" />
       <source>&amp;Stop</source>
       <translation type="unfinished">中止(&amp;S)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1119" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1125" />
       <source>Ctrl+.</source>
       <comment>Go|Stop</comment>
       <translation type="unfinished">Ctrl+.</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1120" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1126" />
       <source>Esc</source>
       <comment>Go|Stop</comment>
       <translation type="unfinished">Esc</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1124" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1130" />
       <source>Stop loading</source>
       <translation type="unfinished">停止加载</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1126" />
-      <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
-      <translation type="unfinished">&lt;b&gt;中止&lt;/b&gt;&lt;p&gt;中止载入当前选项卡。&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1132" />
+      <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;b&gt;中止&lt;/b&gt;&lt;p&gt;中止载入当前选项卡。&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1138" />
       <source>Copy</source>
       <translation type="unfinished">复制</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1134" />
-      <source>&amp;Copy</source>
-      <translation type="unfinished">复制(&amp;C)</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1135" />
-      <source>Ctrl+C</source>
-      <comment>Edit|Copy</comment>
-      <translation type="unfinished">Ctrl+C</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1140" />
+      <source>&amp;Copy</source>
+      <translation type="unfinished">复制(&amp;C)</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1141" />
+      <source>Ctrl+C</source>
+      <comment>Edit|Copy</comment>
+      <translation type="unfinished">Ctrl+C</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1146" />
       <source>Copy the selected text</source>
       <translation type="unfinished">复制已选文本</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1142" />
-      <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="../WebBrowser/WebBrowserWindow.py" line="1148" />
+      <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="../WebBrowser/WebBrowserWindow.py" line="1154" />
       <source>Cut</source>
       <translation type="unfinished">剪切</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1150" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1156" />
       <source>Cu&amp;t</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1151" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1157" />
       <source>Ctrl+X</source>
       <comment>Edit|Cut</comment>
       <translation type="unfinished">Ctrl+X</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1156" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1162" />
       <source>Cut the selected text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1158" />
-      <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" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1164" />
+      <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" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1170" />
       <source>Paste</source>
       <translation type="unfinished">粘贴</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1166" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1172" />
       <source>&amp;Paste</source>
       <translation type="unfinished">粘贴(&amp;P)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1167" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1173" />
       <source>Ctrl+V</source>
       <comment>Edit|Paste</comment>
       <translation type="unfinished">Ctrl+V</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1172" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1178" />
       <source>Paste text from the clipboard</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1174" />
-      <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1180" />
+      <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1186" />
       <source>Undo</source>
       <translation type="unfinished">撤消</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1182" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1188" />
       <source>&amp;Undo</source>
       <translation type="unfinished">撤消(&amp;U)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1183" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1189" />
       <source>Ctrl+Z</source>
       <comment>Edit|Undo</comment>
       <translation type="unfinished">Ctrl+Z</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1188" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1194" />
       <source>Undo the last edit action</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1190" />
-      <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1196" />
+      <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1202" />
       <source>Redo</source>
       <translation type="unfinished">重做</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1198" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1204" />
       <source>&amp;Redo</source>
       <translation type="unfinished">重做(&amp;R)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1199" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1205" />
       <source>Ctrl+Shift+Z</source>
       <comment>Edit|Redo</comment>
       <translation type="unfinished">Ctrl+Shift+Z</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1204" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1210" />
       <source>Redo the last edit action</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1206" />
-      <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1212" />
+      <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1218" />
       <source>Select All</source>
       <translation type="unfinished">全选</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1214" />
-      <source>&amp;Select All</source>
-      <translation type="unfinished">全选(&amp;S)</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1215" />
-      <source>Ctrl+A</source>
-      <comment>Edit|Select All</comment>
-      <translation type="unfinished">Ctrl+A</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1220" />
+      <source>&amp;Select All</source>
+      <translation type="unfinished">全选(&amp;S)</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1221" />
+      <source>Ctrl+A</source>
+      <comment>Edit|Select All</comment>
+      <translation type="unfinished">Ctrl+A</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1226" />
       <source>Select all text</source>
       <translation type="unfinished">选择所有文本</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1222" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1228" />
       <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current browser.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1232" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1231" />
-      <source>Unselect</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1233" />
-      <source>Alt+Ctrl+A</source>
-      <comment>Edit|Unselect</comment>
-      <translation type="unfinished">Alt+Ctrl+A</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1238" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1237" />
+      <source>Unselect</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1239" />
+      <source>Alt+Ctrl+A</source>
+      <comment>Edit|Unselect</comment>
+      <translation type="unfinished">Alt+Ctrl+A</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1244" />
       <source>Clear current selection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1240" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1246" />
       <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1249" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1255" />
       <source>Find...</source>
       <translation type="unfinished">查找…</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1251" />
-      <source>&amp;Find...</source>
-      <translation type="unfinished">查找(&amp;F)…</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1252" />
-      <source>Ctrl+F</source>
-      <comment>Edit|Find</comment>
-      <translation type="unfinished">Ctrl+F</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1257" />
+      <source>&amp;Find...</source>
+      <translation type="unfinished">查找(&amp;F)…</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1258" />
+      <source>Ctrl+F</source>
+      <comment>Edit|Find</comment>
+      <translation type="unfinished">Ctrl+F</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1263" />
       <source>Find text in page</source>
       <translation type="unfinished">在页面中查找文本</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1259" />
-      <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
-      <translation type="unfinished">&lt;b&gt;查找&lt;/b&gt;&lt;p&gt;在页面中查找文本。&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1265" />
+      <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;b&gt;查找&lt;/b&gt;&lt;p&gt;在页面中查找文本。&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1271" />
       <source>Find next</source>
       <translation type="unfinished">查找下一个</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1267" />
-      <source>Find &amp;next</source>
-      <translation type="unfinished">查找下一个(&amp;N)</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1268" />
-      <source>F3</source>
-      <comment>Edit|Find next</comment>
-      <translation type="unfinished">F3</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1273" />
+      <source>Find &amp;next</source>
+      <translation type="unfinished">查找下一个(&amp;N)</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1274" />
+      <source>F3</source>
+      <comment>Edit|Find next</comment>
+      <translation type="unfinished">F3</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1279" />
       <source>Find next occurrence of text in page</source>
       <translation type="unfinished">在页面中查找文本的下一个出现位置</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1275" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1281" />
       <source>&lt;b&gt;Find next&lt;/b&gt;&lt;p&gt;Find the next occurrence of text in the current page.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;查找下一个&lt;/b&gt;&lt;p&gt;在页面中查找文本的下一个出现位置。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1284" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1290" />
       <source>Find previous</source>
       <translation type="unfinished">查找上一个</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1286" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1292" />
       <source>Find &amp;previous</source>
       <translation type="unfinished">查找上一个(&amp;P)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1287" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1293" />
       <source>Shift+F3</source>
       <comment>Edit|Find previous</comment>
       <translation type="unfinished">Shift+F3</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1293" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1299" />
       <source>Find previous occurrence of text in page</source>
       <translation type="unfinished">在页面中查找文本的上一个出现位置</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1296" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1302" />
       <source>&lt;b&gt;Find previous&lt;/b&gt;&lt;p&gt;Find the previous occurrence of text in the current page.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;查找上一个&lt;/b&gt;&lt;p&gt;在页面中查找文本的上一个出现位置。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1306" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1312" />
       <source>Manage Bookmarks</source>
       <translation type="unfinished">管理书签</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1307" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1313" />
       <source>&amp;Manage Bookmarks...</source>
       <translation type="unfinished">管理书签(&amp;M)…</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1308" />
-      <source>Ctrl+Shift+B</source>
-      <comment>Help|Manage bookmarks</comment>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1314" />
+      <source>Ctrl+Shift+B</source>
+      <comment>Help|Manage bookmarks</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1320" />
       <source>Open a dialog to manage the bookmarks.</source>
       <translation type="unfinished">打开一个对话框来管理书签。</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1317" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1323" />
       <source>&lt;b&gt;Manage Bookmarks...&lt;/b&gt;&lt;p&gt;Open a dialog to manage the bookmarks.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1326" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1332" />
       <source>Add Bookmark</source>
       <translation type="unfinished">添加书签</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1328" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1334" />
       <source>Add &amp;Bookmark...</source>
       <translation type="unfinished">添加书签(&amp;B)…</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1329" />
-      <source>Ctrl+D</source>
-      <comment>Help|Add bookmark</comment>
-      <translation type="unfinished">Ctrl+D</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1335" />
+      <source>Ctrl+D</source>
+      <comment>Help|Add bookmark</comment>
+      <translation type="unfinished">Ctrl+D</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1341" />
       <source>Open a dialog to add a bookmark.</source>
       <translation type="unfinished">打开一个对话框来添加书签。</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1337" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1343" />
       <source>&lt;b&gt;Add Bookmark&lt;/b&gt;&lt;p&gt;Open a dialog to add the current URL as a bookmark.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;管理书签&lt;/b&gt;&lt;p&gt;打开对话框以将当前的 URL 添加成为书签。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1346" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1352" />
       <source>Add Folder</source>
       <translation type="unfinished">添加文件夹</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1347" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1353" />
       <source>Add &amp;Folder...</source>
       <translation type="unfinished">添加文件夹(&amp;F)…</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1354" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1360" />
       <source>Open a dialog to add a new bookmarks folder.</source>
       <translation type="unfinished">打开一个对话框来添加新的书签文件夹。</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1357" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1363" />
       <source>&lt;b&gt;Add Folder...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;添加文件夹…&lt;/b&gt;&lt;p&gt;打开一个对话框来添加新的书签文件夹。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1366" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1372" />
       <source>Bookmark All Tabs</source>
       <translation type="unfinished">将所有选项卡加入书签</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1367" />
-      <source>Bookmark All Tabs...</source>
-      <translation type="unfinished">将所有选项卡加入书签…</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1373" />
+      <source>Bookmark All Tabs...</source>
+      <translation type="unfinished">将所有选项卡加入书签…</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1379" />
       <source>Bookmark all open tabs.</source>
       <translation type="unfinished">将所有打开的选项卡加入书签。</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1375" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1381" />
       <source>&lt;b&gt;Bookmark All Tabs...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder for all open tabs.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;将所有选项卡加入书签…&lt;/b&gt;&lt;p&gt;打开一个对话框来将所有打开的选项卡加入一个新的书签文件夹。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1385" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1391" />
       <source>What's This?</source>
       <translation type="unfinished">这是什么?</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1387" />
-      <source>&amp;What's This?</source>
-      <translation type="unfinished">这是什么(&amp;W)?</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1388" />
-      <source>Shift+F1</source>
-      <comment>Help|What's This?'</comment>
-      <translation type="unfinished">Shift+F1</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1393" />
+      <source>&amp;What's This?</source>
+      <translation type="unfinished">这是什么(&amp;W)?</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1394" />
+      <source>Shift+F1</source>
+      <comment>Help|What's This?'</comment>
+      <translation type="unfinished">Shift+F1</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1399" />
       <source>Context sensitive help</source>
       <translation type="unfinished">背景帮助</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1395" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1401" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;显示背景帮助&lt;/b&gt;&lt;p&gt;在“这是什么?”模式中,鼠标光标显示为带问号的箭头,通过点击界面元素你可以获得“在做什么”和“怎样使用”的简短描述。使用标题栏中的上下文帮助按钮可以获得此功能。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1408" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1414" />
       <source>About</source>
       <translation type="unfinished">关于</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1408" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1414" />
       <source>&amp;About</source>
       <translation type="unfinished">关于(&amp;A)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1410" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1416" />
       <source>Display information about this software</source>
       <translation type="unfinished">显示软件信息</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1412" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1418" />
       <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="../WebBrowser/WebBrowserWindow.py" line="1421" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1427" />
       <source>About Qt</source>
       <translation type="unfinished">关于 Qt</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1422" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1428" />
       <source>About &amp;Qt</source>
       <translation type="unfinished">关于 &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1429" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1435" />
       <source>Display information about the Qt toolkit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1432" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1438" />
       <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" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1441" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1447" />
       <source>Zoom in</source>
       <translation type="unfinished">放大</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1443" />
-      <source>Zoom &amp;in</source>
-      <translation type="unfinished">放大(&amp;I)</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1444" />
-      <source>Ctrl++</source>
-      <comment>View|Zoom in</comment>
-      <translation type="unfinished">Ctrl++</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1445" />
-      <source>Zoom In</source>
-      <comment>View|Zoom in</comment>
-      <translation type="unfinished">放大</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1449" />
-      <source>Zoom in on the web page</source>
-      <translation type="unfinished" />
+      <source>Zoom &amp;in</source>
+      <translation type="unfinished">放大(&amp;I)</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1450" />
+      <source>Ctrl++</source>
+      <comment>View|Zoom in</comment>
+      <translation type="unfinished">Ctrl++</translation>
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1451" />
+      <source>Zoom In</source>
+      <comment>View|Zoom in</comment>
+      <translation type="unfinished">放大</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1455" />
+      <source>Zoom in on the web page</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1457" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the web page. This makes the web page bigger.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1461" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1467" />
       <source>Zoom out</source>
       <translation type="unfinished">缩小</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1463" />
-      <source>Zoom &amp;out</source>
-      <translation type="unfinished">缩小(&amp;O)</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1464" />
-      <source>Ctrl+-</source>
-      <comment>View|Zoom out</comment>
-      <translation type="unfinished">Ctrl+-</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1465" />
-      <source>Zoom Out</source>
-      <comment>View|Zoom out</comment>
-      <translation type="unfinished">缩小</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1469" />
-      <source>Zoom out on the web page</source>
-      <translation type="unfinished" />
+      <source>Zoom &amp;out</source>
+      <translation type="unfinished">缩小(&amp;O)</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1470" />
+      <source>Ctrl+-</source>
+      <comment>View|Zoom out</comment>
+      <translation type="unfinished">Ctrl+-</translation>
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1471" />
+      <source>Zoom Out</source>
+      <comment>View|Zoom out</comment>
+      <translation type="unfinished">缩小</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1475" />
+      <source>Zoom out on the web page</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1477" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the web page. This makes the web page smaller.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1481" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1487" />
       <source>Zoom reset</source>
       <translation type="unfinished">重置缩放</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1483" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1489" />
       <source>Zoom &amp;reset</source>
       <translation type="unfinished">重置缩放(&amp;R)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1484" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1490" />
       <source>Ctrl+0</source>
       <comment>View|Zoom reset</comment>
       <translation type="unfinished">Ctrl+0</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1489" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1495" />
       <source>Reset the zoom of the web page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1491" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1497" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the web page. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1502" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1501" />
-      <source>Show page source</source>
-      <translation type="unfinished">显示页面源代码</translation>
-    </message>
-    <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1503" />
-      <source>Ctrl+U</source>
-      <translation type="unfinished">Ctrl+U</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1508" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1507" />
+      <source>Show page source</source>
+      <translation type="unfinished">显示页面源代码</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1509" />
+      <source>Ctrl+U</source>
+      <translation type="unfinished">Ctrl+U</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1514" />
       <source>Show the page source in an editor</source>
       <translation type="unfinished">在编辑器中显示页面源代码</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1510" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1516" />
       <source>&lt;b&gt;Show page source&lt;/b&gt;&lt;p&gt;Show the page source in an editor.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;显示页面源代码&lt;/b&gt;&lt;p&gt;在编辑器中显示页面源代码。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1520" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1526" />
       <source>Full Screen</source>
       <translation type="unfinished">全屏幕</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1522" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1528" />
       <source>&amp;Full Screen</source>
       <translation type="unfinished">全屏幕(&amp;F)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1529" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1535" />
       <source>Meta+Ctrl+F</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1531" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1537" />
       <source>F11</source>
       <translation type="unfinished">F11</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1538" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1537" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1544" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1543" />
       <source>Show next tab</source>
       <translation type="unfinished">显示下一个选项卡</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1539" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1545" />
       <source>Ctrl+Alt+Tab</source>
       <translation type="unfinished">Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1550" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1549" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1556" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1555" />
       <source>Show previous tab</source>
       <translation type="unfinished">显示上一个选项卡</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1551" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1557" />
       <source>Shift+Ctrl+Alt+Tab</source>
       <translation type="unfinished">Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1562" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1561" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1568" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1567" />
       <source>Switch between tabs</source>
       <translation type="unfinished">在选项卡间切换</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1563" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1569" />
       <source>Ctrl+1</source>
       <translation type="unfinished">Ctrl+1</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1573" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1579" />
       <source>Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1575" />
-      <source>&amp;Preferences...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1581" />
+      <source>&amp;Preferences...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1587" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished">设定偏好配置</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1583" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1589" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1593" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1599" />
       <source>Languages</source>
       <translation type="unfinished">语言</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1595" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1601" />
       <source>&amp;Languages...</source>
       <translation type="unfinished">语言(&amp;L)…</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1602" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1608" />
       <source>Configure the accepted languages for web pages</source>
       <translation type="unfinished">配置显示网页时能接受的语言</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1605" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1611" />
       <source>&lt;b&gt;Languages&lt;/b&gt;&lt;p&gt;Configure the accepted languages for web pages.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;语言&lt;/b&gt;&lt;p&gt;配置显示网页时接受的语言。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1614" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1620" />
       <source>Cookies</source>
       <translation type="unfinished">Cookies</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1616" />
-      <source>C&amp;ookies...</source>
-      <translation type="unfinished">C&amp;ookies...</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1622" />
+      <source>C&amp;ookies...</source>
+      <translation type="unfinished">C&amp;ookies...</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1628" />
       <source>Configure cookies handling</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1624" />
-      <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1630" />
+      <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1636" />
       <source>Personal Information</source>
       <translation type="unfinished">个人信息</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1632" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1638" />
       <source>Personal Information...</source>
       <translation type="unfinished">个人信息…</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1639" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1645" />
       <source>Configure personal information for completing form fields</source>
       <translation type="unfinished">配置用于自动补全表格字段的个人信息</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1642" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1648" />
       <source>&lt;b&gt;Personal Information...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the personal information used for completing form fields.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;个人信息…&lt;/b&gt;&lt;p&gt;打开一个对话框来配置用于自动补全表格字段的个人信息。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1652" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1658" />
       <source>GreaseMonkey Scripts</source>
       <translation type="unfinished">清空隐私数据</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1654" />
-      <source>GreaseMonkey Scripts...</source>
-      <translation type="unfinished">GreaseMonkey 脚本…</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1660" />
+      <source>GreaseMonkey Scripts...</source>
+      <translation type="unfinished">GreaseMonkey 脚本…</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1666" />
       <source>Configure the GreaseMonkey Scripts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1662" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1668" />
       <source>&lt;b&gt;GreaseMonkey Scripts...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available GreaseMonkey Scripts.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1672" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1678" />
       <source>Edit Message Filters</source>
       <translation type="unfinished">编辑消息过滤器</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1674" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1680" />
       <source>Edit Message Filters...</source>
       <translation type="unfinished">编辑消息过滤器…</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1681" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1687" />
       <source>Edit the message filters used to suppress unwanted messages</source>
       <translation type="unfinished">编辑消息过滤器使得不期望的消息不显示</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1684" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1690" />
       <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">&lt;b&gt;编辑消息过滤器&lt;/b&gt;&lt;p&gt;打开对话框来编辑消息过滤器,使得不期望的错误信息不再在错误窗口中显示。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1695" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1701" />
       <source>Edit HTML5 Feature Permissions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1697" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1703" />
       <source>Edit HTML5 Feature Permissions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1704" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1710" />
       <source>Edit the remembered HTML5 feature permissions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1707" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1713" />
       <source>&lt;b&gt;Edit HTML5 Feature Permissions&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the remembered HTML5 feature permissions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1720" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1718" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1726" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1724" />
       <source>Sync with Table of Contents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1733" />
       <source>Synchronizes the table of contents with current page</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1730" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1736" />
       <source>&lt;b&gt;Sync with Table of Contents&lt;/b&gt;&lt;p&gt;Synchronizes the table of contents with current page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1741" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1740" />
-      <source>Table of Contents</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1747" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1746" />
+      <source>Table of Contents</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1753" />
       <source>Shows the table of contents window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1749" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1755" />
       <source>&lt;b&gt;Table of Contents&lt;/b&gt;&lt;p&gt;Shows the table of contents window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1760" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1766" />
       <source>Shows the index window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1762" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1768" />
       <source>&lt;b&gt;Index&lt;/b&gt;&lt;p&gt;Shows the index window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1775" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1781" />
       <source>Shows the search window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1777" />
-      <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1783" />
+      <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1789" />
       <source>Manage QtHelp Documents</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1784" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1790" />
       <source>Manage QtHelp &amp;Documents</source>
       <translation type="unfinished">管理 QtHelp 文档(&amp;D)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1791" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1797" />
       <source>Shows a dialog to manage the QtHelp documentation set</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1794" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1800" />
       <source>&lt;b&gt;Manage QtHelp Documents&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the QtHelp documentation set.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1804" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1810" />
       <source>Reindex Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1805" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1811" />
       <source>&amp;Reindex Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1812" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1818" />
       <source>Reindexes the documentation set</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1815" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1821" />
       <source>&lt;b&gt;Reindex Documentation&lt;/b&gt;&lt;p&gt;Reindexes the documentation set.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1840" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1834" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1828" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1826" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1832" />
       <source>Clear private data</source>
       <translation type="unfinished">清空隐私数据</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1836" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1842" />
       <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like browsing history, search history or the favicons database.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;清空隐私数据&lt;/b&gt;&lt;p&gt;清空隐私数据,例如浏览历史、搜索历史或 favicon 数据库。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1846" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1852" />
       <source>Clear icons database</source>
       <translation type="unfinished">清除图标数据库</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1847" />
-      <source>Clear &amp;icons database</source>
-      <translation type="unfinished">清空图标数据库(&amp;I)</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1853" />
+      <source>Clear &amp;icons database</source>
+      <translation type="unfinished">清空图标数据库(&amp;I)</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1859" />
       <source>Clear the database of favicons</source>
       <translation type="unfinished">清除喜好图标数据库</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1855" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1861" />
       <source>&lt;b&gt;Clear icons database&lt;/b&gt;&lt;p&gt;Clears the database of favicons of previously visited URLs.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;清除图标数据库&lt;/b&gt;&lt;p&gt;清除以前访问过的 URL 的喜好图标的数据库。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1867" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1865" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1873" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1871" />
       <source>Manage Saved Favicons</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1874" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1880" />
       <source>Show a dialog to manage the saved favicons</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1877" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1883" />
       <source>&lt;b&gt;Manage Saved Favicons&lt;/b&gt;&lt;p&gt;This shows a dialog to manage the saved favicons of previously visited URLs.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1887" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1893" />
       <source>Configure Search Engines</source>
       <translation type="unfinished">配置搜索引擎</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1888" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1894" />
       <source>Configure Search &amp;Engines...</source>
       <translation type="unfinished">配置搜索引擎(&amp;E)…</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1895" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1901" />
       <source>Configure the available search engines</source>
       <translation type="unfinished">配置可用的搜索引擎</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1898" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1904" />
       <source>&lt;b&gt;Configure Search Engines...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available search engines.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1908" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1914" />
       <source>Manage Saved Passwords</source>
       <translation type="unfinished">管理已保存的密码</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1910" />
-      <source>Manage Saved Passwords...</source>
-      <translation type="unfinished">管理已保存的密码…</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="1916" />
+      <source>Manage Saved Passwords...</source>
+      <translation type="unfinished">管理已保存的密码…</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1922" />
       <source>Manage the saved passwords</source>
       <translation type="unfinished">管理已保存的密码</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1918" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1924" />
       <source>&lt;b&gt;Manage Saved Passwords...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved passwords.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;管理已保存的密码…&lt;/b&gt;&lt;p&gt;打开一个对话框以管理已保存的密码。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1927" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1933" />
       <source>Ad Block</source>
       <translation type="unfinished">Ad Block</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1929" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1935" />
       <source>&amp;Ad Block...</source>
       <translation type="unfinished">&amp;Ad Block…</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1936" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1942" />
       <source>Configure AdBlock subscriptions and rules</source>
       <translation type="unfinished">配置 AdBlock 订阅组和规则</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1939" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1945" />
       <source>&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure AdBlock subscriptions and rules.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Ad Block…&lt;/b&gt;&lt;p&gt;打开一个对话框以配置 AdBlock 订阅组和规则。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1949" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1955" />
       <source>Manage SSL Certificate Errors</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1951" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1957" />
       <source>Manage SSL Certificate Errors...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1958" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1964" />
       <source>Manage the accepted SSL certificate Errors</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1961" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1967" />
       <source>&lt;b&gt;Manage SSL Certificate Errors...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the accepted SSL certificate errors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1971" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1977" />
       <source>Manage Safe Browsing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1973" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1979" />
       <source>Manage Safe Browsing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1980" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1986" />
       <source>Configure Safe Browsing and manage local cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1983" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1989" />
       <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1994" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="1993" />
-      <source>Downloads</source>
-      <translation type="unfinished">下载</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2000" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="1999" />
+      <source>Downloads</source>
+      <translation type="unfinished">下载</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2006" />
       <source>Shows the downloads window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2002" />
-      <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2008" />
+      <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2014" />
       <source>RSS Feeds Dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2010" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2016" />
       <source>&amp;RSS Feeds Dialog...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2011" />
-      <source>Ctrl+Shift+F</source>
-      <comment>Help|RSS Feeds Dialog</comment>
-      <translation type="unfinished">Ctrl+Shift+F</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2017" />
+      <source>Ctrl+Shift+F</source>
+      <comment>Help|RSS Feeds Dialog</comment>
+      <translation type="unfinished">Ctrl+Shift+F</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2023" />
       <source>Open a dialog showing the configured RSS feeds.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2020" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2026" />
       <source>&lt;b&gt;RSS Feeds Dialog...&lt;/b&gt;&lt;p&gt;Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2031" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2037" />
       <source>Siteinfo Dialog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2033" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2039" />
       <source>&amp;Siteinfo Dialog...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2034" />
-      <source>Ctrl+Shift+I</source>
-      <comment>Help|Siteinfo Dialog</comment>
-      <translation type="unfinished">Ctrl+Shift+I</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2040" />
+      <source>Ctrl+Shift+I</source>
+      <comment>Help|Siteinfo Dialog</comment>
+      <translation type="unfinished">Ctrl+Shift+I</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2046" />
       <source>Open a dialog showing some information about the current site.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2043" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2049" />
       <source>&lt;b&gt;Siteinfo Dialog...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the current site.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2053" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2059" />
       <source>Manage User Agent Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2054" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2060" />
       <source>Manage &amp;User Agent Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2061" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2067" />
       <source>Shows a dialog to manage the User Agent settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2064" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2070" />
       <source>&lt;b&gt;Manage User Agent Settings&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the User Agent settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2073" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2079" />
       <source>Synchronize data</source>
       <translation type="unfinished">同步数据</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2075" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2081" />
       <source>&amp;Synchronize Data...</source>
       <translation type="unfinished">同步数据(&amp;S)…</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2082" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2088" />
       <source>Shows a dialog to synchronize data via the network</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2085" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2091" />
       <source>&lt;b&gt;Synchronize Data...&lt;/b&gt;&lt;p&gt;This shows a dialog to synchronize data via the network.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2095" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2101" />
       <source>Manage Saved Zoom Values</source>
       <translation type="unfinished">管理保存的缩放值</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2097" />
-      <source>Manage Saved Zoom Values...</source>
-      <translation type="unfinished">管理保存的缩放值…</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2103" />
+      <source>Manage Saved Zoom Values...</source>
+      <translation type="unfinished">管理保存的缩放值…</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2109" />
       <source>Manage the saved zoom values</source>
       <translation type="unfinished">管理保存的缩放值</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2105" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2111" />
       <source>&lt;b&gt;Manage Saved Zoom Values...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved zoom values.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;管理保存的缩放值…&lt;/b&gt;&lt;p&gt;打开一个对话框来管理已保存的缩放值。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2122" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2128" />
       <source>Toggle the JavaScript console window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2125" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2131" />
       <source>&lt;b&gt;JavaScript Console&lt;/b&gt;&lt;p&gt;This toggles the JavaScript console window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2135" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2134" />
-      <source>Tab Manager</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2141" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2140" />
+      <source>Tab Manager</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2147" />
       <source>Shows the tab manager window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2143" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2149" />
       <source>&lt;b&gt;Tab Manager&lt;/b&gt;&lt;p&gt;Shows the tab manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2151" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2157" />
       <source>Session Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2152" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2158" />
       <source>Session Manager...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2159" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2165" />
       <source>Shows the session manager window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2162" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2168" />
       <source>&lt;b&gt;Session Manager&lt;/b&gt;&lt;p&gt;Shows the session manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2173" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2171" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2179" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2177" />
       <source>Scan current site</source>
       <translation type="unfinished">扫描当前站点</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5180" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5170" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2187" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2185" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5185" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5175" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2193" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2191" />
       <source>IP Address Report</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5194" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2199" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2197" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5199" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2205" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2203" />
       <source>Domain Report</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2217" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2223" />
       <source>Keyboard Shortcuts</source>
       <translation type="unfinished">键盘快捷键</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2219" />
-      <source>Keyboard &amp;Shortcuts...</source>
-      <translation type="unfinished">键盘快捷键(&amp;S)…</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2225" />
+      <source>Keyboard &amp;Shortcuts...</source>
+      <translation type="unfinished">键盘快捷键(&amp;S)…</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2231" />
       <source>Set the keyboard shortcuts</source>
       <translation type="unfinished">设置键盘快捷键</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2227" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2233" />
       <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">&lt;b&gt;键盘快捷键&lt;/b&gt;&lt;p&gt;将程序的键盘快捷键设置成你喜欢的按键。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5600" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5581" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2237" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5605" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5586" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2243" />
       <source>Export Keyboard Shortcuts</source>
       <translation type="unfinished">导出键盘快捷键</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2239" />
-      <source>&amp;Export Keyboard Shortcuts...</source>
-      <translation type="unfinished">导出键盘快捷键(&amp;E)…</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2245" />
+      <source>&amp;Export Keyboard Shortcuts...</source>
+      <translation type="unfinished">导出键盘快捷键(&amp;E)…</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2251" />
       <source>Export the keyboard shortcuts</source>
       <translation type="unfinished">导出键盘快捷键</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2247" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2253" />
       <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">&lt;b&gt;导出键盘快捷键&lt;/b&gt;&lt;p&gt;导出程序的键盘快捷键。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5620" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2256" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5625" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2262" />
       <source>Import Keyboard Shortcuts</source>
       <translation type="unfinished">导入键盘快捷键</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2258" />
-      <source>&amp;Import Keyboard Shortcuts...</source>
-      <translation type="unfinished">导入键盘快捷键(&amp;I)…</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2264" />
+      <source>&amp;Import Keyboard Shortcuts...</source>
+      <translation type="unfinished">导入键盘快捷键(&amp;I)…</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2270" />
       <source>Import the keyboard shortcuts</source>
       <translation type="unfinished">导入键盘快捷键</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2266" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2272" />
       <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">&lt;b&gt;导入键盘快捷键&lt;/b&gt;&lt;p&gt;导入程序的键盘快捷键。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2275" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2281" />
       <source>Protocol Handler Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2276" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2282" />
       <source>Protocol Handler Manager...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2283" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2289" />
       <source>Shows the protocol handler manager window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2286" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2292" />
       <source>&lt;b&gt;Protocol Handler Manager&lt;/b&gt;&lt;p&gt;Shows the protocol handler manager window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2330" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2336" />
       <source>&amp;File</source>
       <translation type="unfinished">文件(&amp;F)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2524" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2338" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2530" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2344" />
       <source>Sessions</source>
       <translation type="unfinished">会话</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2362" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2368" />
       <source>&amp;Edit</source>
       <translation type="unfinished">编辑(&amp;E)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2596" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2378" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2602" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2384" />
       <source>&amp;View</source>
       <translation type="unfinished">视图(&amp;V)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2389" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2395" />
       <source>Text Encoding</source>
       <translation type="unfinished">文本编码</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2398" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2404" />
       <source>H&amp;istory</source>
       <translation type="unfinished">历史(&amp;I)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2414" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2420" />
       <source>&amp;Bookmarks</source>
       <translation type="unfinished">书签(&amp;B)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2430" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2436" />
       <source>&amp;Settings</source>
       <translation type="unfinished">设置(&amp;S)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2460" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2466" />
       <source>Global User Agent</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2627" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2472" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2633" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2478" />
       <source>&amp;Tools</source>
       <translation type="unfinished">工具(&amp;T)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2634" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2479" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2640" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2485" />
       <source>&amp;VirusTotal</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2598" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2485" />
-      <source>&amp;Windows</source>
-      <translation type="unfinished">窗口(&amp;W)</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2604" />
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2491" />
+      <source>&amp;Windows</source>
+      <translation type="unfinished">窗口(&amp;W)</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2610" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2497" />
       <source>QtHelp</source>
       <translation type="unfinished">QtHelp</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2496" />
-      <source>&amp;Toolbars</source>
-      <translation type="unfinished">工具栏(&amp;T)</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2502" />
+      <source>&amp;Toolbars</source>
+      <translation type="unfinished">工具栏(&amp;T)</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2508" />
       <source>&amp;Help</source>
       <translation type="unfinished">帮助(&amp;H)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2531" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2537" />
       <source>Save</source>
       <translation type="unfinished">保存</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2551" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2557" />
       <source>Show All History...</source>
       <translation type="unfinished">显示所有历史记录…</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2721" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2558" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2564" />
       <source>Settings</source>
       <translation type="unfinished">设置</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2652" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2658" />
       <source>File</source>
       <translation type="unfinished">文件</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2676" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2682" />
       <source>Edit</source>
       <translation type="unfinished">编辑</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2688" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2694" />
       <source>View</source>
       <translation type="unfinished">视图</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2697" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2703" />
       <source>Find</source>
       <translation type="unfinished">查找</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2705" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2711" />
       <source>Filter</source>
       <translation type="unfinished">过滤器</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2712" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2718" />
       <source>Filtered by: </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2732" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2738" />
       <source>Tools</source>
       <translation type="unfinished">工具</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2740" />
-      <source>Help</source>
-      <translation type="unfinished">帮助</translation>
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="2746" />
+      <source>Help</source>
+      <translation type="unfinished">帮助</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2752" />
       <source>VirusTotal</source>
       <translation type="unfinished">VirusTotal</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2890" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2896" />
       <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;无法启动进程。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2894" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2900" />
       <source>OK</source>
       <translation type="unfinished">确定</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2929" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2906" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2935" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2912" />
       <source>HTML Files (*.html *.htm *.mhtml *.mht);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2977" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2983" />
       <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chromium {2} with Security Patches {3}.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="2992" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="2998" />
       <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chromium {2}.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3127" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3133" />
       <source>Saved Tabs</source>
       <translation type="unfinished">已保存的选项卡</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3310" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3316" />
       <source>Are you sure you want to close the web browser?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3311" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3317" />
       <source>Are you sure you want to close the web browser?
 You have {0} windows with {1} tabs open.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3910" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3916" />
       <source>Could not find any associated content.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="3956" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="3962" />
       <source>Unfiltered</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4012" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4018" />
       <source>Updating search index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4088" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4094" />
       <source>Looking for Documentation...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4121" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4127" />
       <source>Help Engine</source>
       <translation type="unfinished">帮助引擎</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4717" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4722" />
       <source>System</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4721" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4726" />
       <source>ISO</source>
       <translation type="unfinished">ISO</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4724" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4729" />
       <source>Unicode</source>
       <translation type="unfinished">Unicode</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4727" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4732" />
       <source>Windows</source>
       <translation type="unfinished">Windows</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4730" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4735" />
       <source>IBM</source>
       <translation type="unfinished">IBM</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4733" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4738" />
       <source>Apple</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4736" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4741" />
       <source>Other</source>
       <translation type="unfinished">其它</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4763" />
-      <source>Menu Bar</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="4768" />
-      <source>Bookmarks</source>
-      <translation type="unfinished">书签</translation>
+      <source>Menu Bar</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../WebBrowser/WebBrowserWindow.py" line="4773" />
+      <source>Bookmarks</source>
+      <translation type="unfinished">书签</translation>
+    </message>
+    <message>
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4778" />
       <source>Status Bar</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4788" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4793" />
       <source>&amp;Show all</source>
       <translation type="unfinished">全部显示(&amp;S)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="4790" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="4795" />
       <source>&amp;Hide all</source>
       <translation type="unfinished">全部隐藏(&amp;H)</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5136" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5141" />
       <source>VirusTotal Scan</source>
       <translation type="unfinished">VirusTotal 扫描</translation>
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5137" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5142" />
       <source>&lt;p&gt;The VirusTotal scan could not be scheduled.&lt;p&gt;
 &lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5171" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5176" />
       <source>Enter a valid IPv4 address in dotted quad notation:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5181" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5186" />
       <source>The given IP address is not in dotted quad notation.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5195" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5200" />
       <source>Enter a valid domain name:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5622" />
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5583" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5627" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5588" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../WebBrowser/WebBrowserWindow.py" line="5601" />
+      <location filename="../WebBrowser/WebBrowserWindow.py" line="5606" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>

eric ide

mercurial